API Documentation
- Getting Started
- Customer
- Wallet
- WalletGroup
- Payout
- Product
- ProductLimit
- Checkout
- Webhook
Checkout
Get checkout wallets
Endpoint for getting all checkout wallets under an organization using the Organization Id
GET
/
api
/
v1
/
CheckoutWallet
/
merchant
/
{merchantId}
Get checkout wallets
Copy
curl --request GET \
--url https://checkout-staging.embedly.ng/api/v1/CheckoutWallet/merchant/{merchantId} \
--header 'x-api-key: <api-key>'
Copy
{
"statusCode": 200,
"message": "success",
"data": [
{
"id": "b929bd22-6da0-4b5a-8c37-871ddce94a62",
"walletNumber": "2225655477",
"merchantId": "02600494-1a3c-11f0-a818-6045bd97b81d",
"walletName": "Embedly Check Demo",
"status": "Active",
"createdAt": "2025-07-11T17:40:33.982924Z",
"expiresAt": "2025-07-11T18:10:33.982946Z",
"usedAt": null,
"expiredAt": null,
"reactivatedAt": null,
"transactionAmount": null
}
],
"pagination": {
"currentPage": 1,
"pageSize": 10,
"totalCount": 1,
"totalPages": 1,
"hasNextPage": false,
"hasPreviousPage": false
}
}
The unique organizationId. Exmaple: 3fa85f64-5717-4562-b3fc-2c963f66afa6
Copy
{
"statusCode": 200,
"message": "success",
"data": [
{
"id": "b929bd22-6da0-4b5a-8c37-871ddce94a62",
"walletNumber": "2225655477",
"merchantId": "02600494-1a3c-11f0-a818-6045bd97b81d",
"walletName": "Embedly Check Demo",
"status": "Active",
"createdAt": "2025-07-11T17:40:33.982924Z",
"expiresAt": "2025-07-11T18:10:33.982946Z",
"usedAt": null,
"expiredAt": null,
"reactivatedAt": null,
"transactionAmount": null
}
],
"pagination": {
"currentPage": 1,
"pageSize": 10,
"totalCount": 1,
"totalPages": 1,
"hasNextPage": false,
"hasPreviousPage": false
}
}
Get checkout wallets
Copy
curl --request GET \
--url https://checkout-staging.embedly.ng/api/v1/CheckoutWallet/merchant/{merchantId} \
--header 'x-api-key: <api-key>'
Copy
{
"statusCode": 200,
"message": "success",
"data": [
{
"id": "b929bd22-6da0-4b5a-8c37-871ddce94a62",
"walletNumber": "2225655477",
"merchantId": "02600494-1a3c-11f0-a818-6045bd97b81d",
"walletName": "Embedly Check Demo",
"status": "Active",
"createdAt": "2025-07-11T17:40:33.982924Z",
"expiresAt": "2025-07-11T18:10:33.982946Z",
"usedAt": null,
"expiredAt": null,
"reactivatedAt": null,
"transactionAmount": null
}
],
"pagination": {
"currentPage": 1,
"pageSize": 10,
"totalCount": 1,
"totalPages": 1,
"hasNextPage": false,
"hasPreviousPage": false
}
}
Assistant
Responses are generated using AI and may contain mistakes.