curl --request GET \
--url https://api.paygentic.io/v0/wallets/{id}/autoTopupConfig \
--header 'Authorization: Bearer <token>'
{
"amount": "<string>",
"object": "autoTopupConfig",
"threshold": "<string>",
"paymentMethod": "<string>",
"limit": {
"amount": 123,
"period": "day"
},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"topupIds": [
"<string>"
],
"deactivation": {
"reason": "<string>",
"at": "2023-11-07T05:31:56Z"
}
}
curl --request GET \
--url https://api.paygentic.io/v0/wallets/{id}/autoTopupConfig \
--header 'Authorization: Bearer <token>'
{
"amount": "<string>",
"object": "autoTopupConfig",
"threshold": "<string>",
"paymentMethod": "<string>",
"limit": {
"amount": 123,
"period": "day"
},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"topupIds": [
"<string>"
],
"deactivation": {
"reason": "<string>",
"at": "2023-11-07T05:31:56Z"
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
ID of the wallet to get auto topup configuration for
Auto topup configuration
The response is of type object
.