4 changed files with 282 additions and 3 deletions
@ -0,0 +1,257 @@ |
|||
{ |
|||
"info": { |
|||
"_postman_id": "83d9071d-626d-41ed-9800-78570ed11a7c", |
|||
"name": "Odoo REST Api", |
|||
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", |
|||
"_exporter_id": "28148668" |
|||
}, |
|||
"item": [ |
|||
{ |
|||
"name": "Authentication", |
|||
"request": { |
|||
"method": "GET", |
|||
"header": [ |
|||
{ |
|||
"key": "db", |
|||
"value": "sep_db", |
|||
"type": "text" |
|||
}, |
|||
{ |
|||
"key": "login", |
|||
"value": "123", |
|||
"type": "text" |
|||
}, |
|||
{ |
|||
"key": "password", |
|||
"value": "123", |
|||
"type": "text" |
|||
}, |
|||
{ |
|||
"key": "", |
|||
"value": "", |
|||
"type": "text", |
|||
"disabled": true |
|||
} |
|||
], |
|||
"url": { |
|||
"raw": "http://cybrosys:8016/odoo_connect", |
|||
"protocol": "http", |
|||
"host": [ |
|||
"cybrosys" |
|||
], |
|||
"port": "8016", |
|||
"path": [ |
|||
"odoo_connect" |
|||
] |
|||
} |
|||
}, |
|||
"response": [] |
|||
}, |
|||
{ |
|||
"name": "GET records", |
|||
"protocolProfileBehavior": { |
|||
"disableBodyPruning": true |
|||
}, |
|||
"request": { |
|||
"method": "GET", |
|||
"header": [ |
|||
{ |
|||
"key": "login", |
|||
"value": "123", |
|||
"type": "text" |
|||
}, |
|||
{ |
|||
"key": "password", |
|||
"value": "123", |
|||
"type": "text" |
|||
}, |
|||
{ |
|||
"key": "api-key", |
|||
"value": "4314c30b-994e-435d-a493-50cb0d33e99d", |
|||
"type": "text" |
|||
} |
|||
], |
|||
"body": { |
|||
"mode": "raw", |
|||
"raw": "{\n \"fields\": [\"name\",\"product_id\"]\n \n}", |
|||
"options": { |
|||
"raw": { |
|||
"language": "json" |
|||
} |
|||
} |
|||
}, |
|||
"url": { |
|||
"raw": "http://cybrosys:8016/send_request?model=mrp.production&Id=10", |
|||
"protocol": "http", |
|||
"host": [ |
|||
"cybrosys" |
|||
], |
|||
"port": "8016", |
|||
"path": [ |
|||
"send_request" |
|||
], |
|||
"query": [ |
|||
{ |
|||
"key": "model", |
|||
"value": "mrp.production" |
|||
}, |
|||
{ |
|||
"key": "Id", |
|||
"value": "10" |
|||
} |
|||
] |
|||
} |
|||
}, |
|||
"response": [] |
|||
}, |
|||
{ |
|||
"name": "Create Records", |
|||
"request": { |
|||
"method": "POST", |
|||
"header": [ |
|||
{ |
|||
"key": "login", |
|||
"value": "123", |
|||
"type": "text" |
|||
}, |
|||
{ |
|||
"key": "password", |
|||
"value": "123", |
|||
"type": "text" |
|||
}, |
|||
{ |
|||
"key": "api_key", |
|||
"value": "4314c30b-994e-435d-a493-50cb0d33e99d", |
|||
"type": "text" |
|||
} |
|||
], |
|||
"body": { |
|||
"mode": "raw", |
|||
"raw": "{\n \"fields\" :[\"name\",\"phone\"] ,\n \"values\": {\"name\": \"abc\",\n \"phone\":\"55962441552\"\n }\n\n}", |
|||
"options": { |
|||
"raw": { |
|||
"language": "json" |
|||
} |
|||
} |
|||
}, |
|||
"url": { |
|||
"raw": "http://cybrosys:8016/send_request?model=res.partner", |
|||
"protocol": "http", |
|||
"host": [ |
|||
"cybrosys" |
|||
], |
|||
"port": "8016", |
|||
"path": [ |
|||
"send_request" |
|||
], |
|||
"query": [ |
|||
{ |
|||
"key": "model", |
|||
"value": "res.partner" |
|||
} |
|||
] |
|||
} |
|||
}, |
|||
"response": [] |
|||
}, |
|||
{ |
|||
"name": "Update Records", |
|||
"request": { |
|||
"method": "PUT", |
|||
"header": [ |
|||
{ |
|||
"key": "login", |
|||
"value": "123", |
|||
"type": "text" |
|||
}, |
|||
{ |
|||
"key": "password", |
|||
"value": "123", |
|||
"type": "text" |
|||
}, |
|||
{ |
|||
"key": "api-key", |
|||
"value": "d52cd3de-ad4c-49ab-a5cb-727940b8117a", |
|||
"type": "text" |
|||
} |
|||
], |
|||
"body": { |
|||
"mode": "raw", |
|||
"raw": "{\n \"fields\" :[\"name\",\"phone\"] ,\n \"values\": {\"name\": \"abc\",\n \"phone\":\"55962441552\"\n }\n\n}", |
|||
"options": { |
|||
"raw": { |
|||
"language": "json" |
|||
} |
|||
} |
|||
}, |
|||
"url": { |
|||
"raw": "http://cybrosys:8016/send_request?model=res.partner&Id=48", |
|||
"protocol": "http", |
|||
"host": [ |
|||
"cybrosys" |
|||
], |
|||
"port": "8016", |
|||
"path": [ |
|||
"send_request" |
|||
], |
|||
"query": [ |
|||
{ |
|||
"key": "model", |
|||
"value": "res.partner" |
|||
}, |
|||
{ |
|||
"key": "Id", |
|||
"value": "48" |
|||
} |
|||
] |
|||
} |
|||
}, |
|||
"response": [] |
|||
}, |
|||
{ |
|||
"name": "Delete Records", |
|||
"request": { |
|||
"method": "DELETE", |
|||
"header": [ |
|||
{ |
|||
"key": "login", |
|||
"value": "123", |
|||
"type": "text" |
|||
}, |
|||
{ |
|||
"key": "password", |
|||
"value": "123", |
|||
"type": "text" |
|||
}, |
|||
{ |
|||
"key": "api-key", |
|||
"value": "d52cd3de-ad4c-49ab-a5cb-727940b8117a", |
|||
"type": "text" |
|||
} |
|||
], |
|||
"url": { |
|||
"raw": "http://cybrosys:8016/send_request?model=res.partner&Id=48", |
|||
"protocol": "http", |
|||
"host": [ |
|||
"cybrosys" |
|||
], |
|||
"port": "8016", |
|||
"path": [ |
|||
"send_request" |
|||
], |
|||
"query": [ |
|||
{ |
|||
"key": "model", |
|||
"value": "res.partner" |
|||
}, |
|||
{ |
|||
"key": "Id", |
|||
"value": "48" |
|||
} |
|||
] |
|||
} |
|||
}, |
|||
"response": [] |
|||
} |
|||
] |
|||
} |
Loading…
Reference in new issue