curl --request GET \
--url https://api.paygentic.io/v0/wallets/{id} \
--header 'Authorization: Bearer <token>'
{
"id": "<string>",
"object": "wallet",
"ownedBy": "<string>",
"namespace": "<string>",
"balance": 123,
"currency": "<string>",
"timezone": "<string>",
"tag": "<string>",
"createdAt": 123,
"updatedAt": 123,
"name": "<string>",
"description": "<string>"
}
curl --request GET \
--url https://api.paygentic.io/v0/wallets/{id} \
--header 'Authorization: Bearer <token>'
{
"id": "<string>",
"object": "wallet",
"ownedBy": "<string>",
"namespace": "<string>",
"balance": 123,
"currency": "<string>",
"timezone": "<string>",
"tag": "<string>",
"createdAt": 123,
"updatedAt": 123,
"name": "<string>",
"description": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Unique identifier for an account
Wallet details
The response is of type object
.