View Terminal
Endpoint
GET /api/v1/terminals/{uuid}
Parameter
| Parameter | Type | Required | Description | 
|---|---|---|---|
uuid | string | ✅ Yes | UUID of the terminal to retrieve | 
Example
- Request
 - Response
 
GET /terminals/3df21709-b2f5-4ec6-93f9-c5855e0da879
{
 "date": "2021-12-07T18:01:19+00:00",
 "success": true,
 "data": {
    "uuid": "3df21709-b2f5-4ec6-93f9-c5855e0da879",
    "terminalId": "806030356",
    "name": "name",
    "model": "model",
    "processor": "processor",
    "supplier": "supplier",
    "features": {
      "allowRemoteTransactions": true,
      "allowGenerateQrCode": false,
      "allowRealTimeTransactionSinchronization": true
    },
    "createdAt": "2025-08-21T09:46:39+01:00",
    "updatedAt": "2025-08-22T16:16:56+01:00"
  }
}
Response Structure
| Field | Type | Description | 
|---|---|---|
uuid | string | Unique identifier of the terminal | 
terminalId | string | Terminal ID | 
name | string | Terminal name | 
model | string | Terminal model | 
processor | string | Transaction processor name | 
supplier | datetime | Terminal supplier name | 
allowRemoteTransactions | boolean | Indicates if the terminal accepts remote transactions (only compatible with cloud terminals) | 
allowGenerateQrCode | boolean | Indicates if the terminal can generate QR codes | 
allowRealTimeTransactionSinchronization | boolean | Indicates if the terminal synchronises transactions in real time with the PayPay backoffice | 
createdAt | datetime | Record creation date | 
updatedAt | datetime | Last update date | 
information
Terminals that have the functionality allowRemoteTransactions enabled are of the Cloud type.
Next Steps
With access to the terminal details, you can:
- Send Payment Request - Send a payment request to the cloud terminal.
 - Send Refund Request - Send a refund request to the cloud terminal.
 - Configure Webhooks - Receive real-time notifications.