Auxiliary Mapping
Get List of Unavailable Agents with Paginated
Method | Get |
Media Type | application/json |
URL | http://[server]/dolphin/apiv1/graph/auxiliarys/agents/unavailable?count=1 |
Header | Authorization : Bearer [generatedToken] |
Body | |
Status | 200 |
Response | { “status”: “success”, “data”: [ { “id”: “[id]”, “owner”: “[owner_id]”, “createdDate”: 1561967377443, “createdBy”: “f1b380ced4477dd87e8d7ad842af7ae2”, “modifiedDate”: 1598692139882, “modifiedBy”: “f1b380ced4477dd87e8d7ad842af7ae2”, “agentId”: “[AgentId]”, “agentName”: “[agentName]”, “agentRole”: “[agentRole]”, “aux”: true, “dailyAuxDuration”: 0, “duration”: 0, “lastChange”: 1598692139882, “master”: true, “reason”: “Not Available” } ], “hasMore”: false, “nextIndex”: 0, “prevIndex”: 0, “totalResults”: 0 } |
Update Agent Auxiliary Available
Method | Put |
Media Type | application/json |
URL | http://[server]/dolphin/apiv1/graph/auxiliarys/agents?count=1 |
Header | Authorization : Bearer [generatedToken] |
Body | { nbsp; “status”: “available” } |
Status | 200 |
Response | { “status”: “success”, “data”: { “id”: “[Id]”, “owner”: “[owner_Id]”, “createdDate”: 1582092999569, “createdBy”: “95bbbf64882dd7816c09996d56bbc1e2”, “modifiedDate”: 1584339666607, “modifiedBy”: “95bbbf64882dd7816c09996d56bbc1e2”, “agentId”: “[agentId]”, “agentName”: “[agentName]”, “agentRole”: “[agentRole]”, “aux”: true, “dailyAuxDuration”: 0, “duration”: 0, “lastChange”: 1584339666607, “master”: true, “reason”: “Not Available” }, “hasMore”: false, “nextIndex”: 0, “prevIndex”: 0, “totalResults”: 0 } |
Get List of Available Agents with Paginated
Method | Get |
Media Type | application/json |
URL | http://[server]/dolphin/apiv1/graph/auxiliarys/agents/available?start=0&count=1 |
Header | Authorization : Bearer [generatedToken] |
Body | |
Status | 200 |
Response | { “status”: “success”, “data”: [ { “id”: “[Id]”, “owner”: “[owner_id]” , “createdDate”: 1595390386056, “createdBy”: “82ab0fd5cfd1e80d1ff97c0cfc9aa9e2”, “modifiedDate”: 1598612018645, “modifiedBy”: “0bf9d94b4f3910a5f2a2e4e3f4bb9faf”, “agentId”: “[agentId]”, “agentName”: “[agentName]”, “agentRole”: “[agentRole]”, “aux”: false, “dailyAuxDuration”: 0, “duration”: 0, “lastChange”: 1598612018645, “master”: true, “reason”: “Available” } ], “hasMore”: false, “nextIndex”: 0, “prevIndex”: 0, “totalResults”: 0 } |
Last updated