Get Disbursement Facilities
An endpoint to get disbursement facilities available for disbursement.
To get disbursement facilities, send the following request header parameter via GET. To make the generated token expirable, “expirable” parameter must be set to true.
GET/facility
Facility
Header Parameters
| Parameter | Required? | Type | Description |
|---|---|---|---|
| Content-Type | Optional | string | Default content type of the API. |
| Authorization | Required | string | Unique identifier of the integrator. |
Request Samples
curl
-X GET "https://test-api-dbm.tlpe.io/facility" \
-H "Content-Type: application/json" \
-H "Authorization: {integratorToken}" \
Responses
200 Successful Response
| Parameter | Type | Description |
|---|---|---|
| timestamp | string | Request timestamp. |
| status | string | HTTP status code. |
| message | string | HTTP status code message/description. |
| path | string | Endpoint path used for the request. |
| data | object | Contains request related response. |
Data Parameters
| Parameter | Type | Description |
|---|---|---|
| facility | string | Disbursement facility name. |
| value | string | Auto generated jwt for assigned for the facility . |
| imageUrl | string | Image URL for the facility. |
| wallets | array | List of wallets for the facility. |
| walletReferenceId | string | Unique ID for the wallet. |
| walletName | string | Name of the facility wallet. |
| walletDescription | string | Description of the wallet. |
| currency | string | Currency of the wallet. |
| balance | string | Total balance of the wallet. |
Response Samples
{
"timestamp": "2021-06-13 06:52:37 +0000",
"status": 200,
"message": "OK",
"path": "/facility",
"data": [
{
"facility": "sampleJWT",
"value": "sampleFacility",
"imageUrl": "{ImageUrl}",
"wallets": [
{
"walletReferenceId": "sampleWalletRefId",
"walletName": "Sample Wallet Name",
"walletDescription": "Sample Wallet Description",
"currency": "PHP",
"balance": "100.00"
}
]
}
]
}
© 2025 DIZ v1.8 — All rights reserved.