Get Terminal Lists
Get all active terminal lists for specific organation
Endpoint |
: |
https://demo-api.frontpayment.no/api/v1/connect/terminal/lists/{{ORGANIZATION_UUID}}
|
Method |
: |
GET |
Authorization |
: |
Bearer |
Response Structure |
: |
//Success
{ "status_code": 200, "status_message": "OK", "message": "terminalsRetrievedSuccessfully", "is_data": true, "data": [ { "uuid": "TRML1914739698",String, "name": "Oslo Terminal",String, "status": 1,Integer, "organization_uuid": "ORG2074299506"String } ] }
// Errors { "status_code": 204, "status_message": "Not Found", "message": "terminalNotFound", "is_data": false, "data": null }
{ "status_code": 510, "status_message": "Execution Exception Occurred", "message": "Something Went Wrong", "is_error": true, "errors": "Array" }
|
Example Response |
: |
{ "status_code": 200, "status_message": "OK", "message": "terminalsRetrievedSuccessfully", "is_data": true, "data": [ { "uuid": "TRML1914739698", "name": "Oslo Terminal", "status": 1, "organization_uuid": "ORG2074299506" } ] }
|