GET
/
apple-pay-certificates
curl --request GET \
  --url https://api.{gr4vy_id}.gr4vy.app/apple-pay-certificates \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "type": "apple-pay-certificate",
      "id": "fe26475d-ec3e-4884-9553-f7356683f7f9",
      "display_name": "iPad App v2",
      "status": "active",
      "apple_merchant_id": "merchant.com.gr4vy.demo",
      "public_key_hash": "WSOIlV70592m1ah1sm0mcmhJPQsAIWGSg7FSe+uzHtc=",
      "certificate_signing_request": null,
      "expires_at": "2024-12-12T10:53:43+00:00",
      "created_at": "2022-12-12T10:53:43+00:00",
      "updated_at": "2022-12-12T10:53:43+00:00"
    },
    {
      "type": "apple-pay-certificate",
      "id": "c81bdcfd-00c2-4897-b220-06ff0e95685a",
      "display_name": "iPhone App v2",
      "status": "incomplete",
      "apple_merchant_id": null,
      "public_key_hash": null,
      "certificate_signing_request": "-----BEGIN CERTIFICATE REQUEST-----\\nMIHTMHsCAQAwGTEXMBUG\nA1UEAwwOc3BpZGVyLnNhbmRib3gwWTATBgcqhkjOPQIB\\nBggqhkjOPQM\nBBwNCAAQZgRE56Evtf6f9fD4Hn1zOMwyrgXU4CQXuyPXoIjiMwKXE\\nV/\nHx9NX7vZbOSXhyzPaU/b6HdLMfx2+UP/GZ48jYoAAwCgYIKoZIzj0EAwI\nDSAAw\\nRQIgPhcfepIaX9s8E8WI/T+GEUqwuYIoVUQV+F8KlaYGukACIQ\nCLeLocEFWFYPHN\\n+QsLoyXvbbqmEjSPB4vQKmXQZ8I2DA==\\n-----EN\nD CERTIFICATE REQUEST-----\\n",
      "expires_at": null,
      "created_at": "2022-12-12T10:53:43+00:00",
      "updated_at": "2022-12-12T10:53:43+00:00"
    }
  ]
}

This endpoint requires the apple-pay-certificates.read scope.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

limit
integer
default:20

Defines the maximum number of items to return for this request.

Required range: 1 <= x <= 100
Example:

1

cursor
string

A cursor that identifies the page of results to return. This is used to paginate the results of this API.

For the first page of results, this parameter can be left out. For additional pages, use the value returned by the API in the next_cursor field. Similarly the previous_cursor can be used to reverse backwards in the list.

Example:

"ZXhhbXBsZTE"

Response

200
application/json
Returns a list of Apple Pay certificate records.

A list of Apple Pay certificate records.