Postman: Postman_example
Fields specs: Case_fields.specs.xlsx
Swagger: https://api.seamless.insure/task/documentation/#/tasks
...
URL | |
Method | POST |
Headers | Content-Type: application/json Authorization: Bearer {{accessToken}} |
Body | { "priority": 4, "title": "Test Case", "dueDate": "2023-12-25T16:59:59.999Z", "description": "<p>Test description</p>", "referenceType": {{workflow-id}}, "queueId": {{queue-id}}, "type": {{case-type-value}}, "taskRelatedRecords": [] }
Replace {{workflow-id}} by $.data.results[].workflowId of the response data. Replace {{queue-id}} by $.data.results[].queueId of the response data. Replace {{case-type-value}} by $.data.results[].value of the response data. |
Response data | Please see the sample response in Postman file and fields specs in the sheet file |
...
URL | https://external-api.seamless.insure/task/api/v2/tasks/getTasks |
Method | POST |
Headers | Content-Type: application/json Authorization: Bearer {{accessToken}} |
Request Body | { "page": 1, "itemsPerPage": 10, "criteria": { "order": {"reference": "DESC"}, "assignee": {{username}} } }
Order direction value: ASC or DESC Replace {{username}} with an username or null (default value is null) |
Response data | Please see the sample response in Postman file and fields specs in the sheet file |
...
URL | https://external-api.seamless.insure/task/api/v2/caseTypes/search |
Method | POST |
Headers | Content-Type: application/json Authorization: Bearer {{accessToken}} |
Request Body | { "page": 1, "itemsPerPage": 10, "criteria": { "order": {"name": "DESC"} } }
Order direction value: ASC or DESC |
Response data | Please see the sample response in Postman file and fields specs in the sheet file |
...