Terminals

GET /api/merchant/terminals

Headers

Name
Value
Description

Content-Type

application/json

CLIENT

client_key

The unique identifier for the client.

SECRET

generated_secret

The expected secret generated using your client key and secret key.

Response

[
    {
        "id": 1,
        "business_id": 1,
        "name": "Terminal Name",
        "number": null,
        "bvn": "12345678901",
        "method": "WEB",
        
    },
    {
        "id": 2,
        "business_id": 1,
        "name": "Terminal2",
        "number": null,
        "bvn": "1234567890",
        "method": "WEB",
        
    }
]

Last updated