Skip to main content

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": String,
         "name": String,
         "status": Integer,
         "organization_uuid": 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"
    }
  ]
}