Knit API Documentation
Get Single Payout Wallet
{{baseUrl}}/api/payouts/wallets/:id
Headers
- X-API-KEY: Your API key, which authorizes the request.
- Accept: Set to application/json to receive the response in JSON format.
Path Variables
- id: The unique identifier of the wallet you wish to retrieve information for. This should be replaced with the actual wallet ID in your request.
Sample Request
curl --location -g '{{baseUrl}}/api/payouts/wallets/c7ddb254-5da1-4136-b19e-733a00a31c70' \
--header 'X-API-KEY: {{apiKey}}' \
--header 'Accept: application/json'
Sample Response
Sample Response
{
"success": true,
"status": 200,
"data": {
"id": "c7ddb254-5da1-4136-b19e-733a00a31c70",
"userId": "a2667393-2c6c-43c9-a288-6167e2b2b591",
"amount": "99.950000000000000000",
"token": "USDT",
"status": "ACTIVE",
"createdAt": "2024-02-22T14:16:23.000000Z",
"updatedAt": "2024-02-22T14:35:13.000000Z"
},
"message": "Payout Wallet fetched successfully"
}