Digital wallets
List digital wallets
Returns a list of all registered digital wallets.
GET
/digital-wallets
curl --request GET \
--url https://api.sandbox.{gr4vy_id}.gr4vy.app/digital-wallets \
--header 'Authorization: <authorization>'
{
"items": [
{
"active_certificate_count": "1",
"created_at": "2012-12-12T10:53:43+00:00",
"domain_names": [
"example.com"
],
"expired_certificate_count": "1",
"id": "8d3fe99b-1422-42e6-bbb3-932d95ae5f79",
"merchant_account_id": "default",
"merchant_name": "Gr4vy",
"merchant_url": "https://example.com",
"pending_certificate_count": "1",
"provider": "apple",
"type": "digital-wallet",
"updated_at": "2012-12-12T10:53:43+00:00"
}
]
}
This endpoint requires the digital-wallets.read
scope.
Authorizations
Authorizationheaderrequired
string
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Response
200 - application/json
items
object[]
A list of registered digital wallets.
curl --request GET \
--url https://api.sandbox.{gr4vy_id}.gr4vy.app/digital-wallets \
--header 'Authorization: <authorization>'
{
"items": [
{
"active_certificate_count": "1",
"created_at": "2012-12-12T10:53:43+00:00",
"domain_names": [
"example.com"
],
"expired_certificate_count": "1",
"id": "8d3fe99b-1422-42e6-bbb3-932d95ae5f79",
"merchant_account_id": "default",
"merchant_name": "Gr4vy",
"merchant_url": "https://example.com",
"pending_certificate_count": "1",
"provider": "apple",
"type": "digital-wallet",
"updated_at": "2012-12-12T10:53:43+00:00"
}
]
}