PATCH
/
consumers
/
{id}
/
offSessionPaymentMethods
Updates off-session payment methods for a consumer
curl --request PATCH \
  --url https://api.paygentic.io/v0/consumers/{id}/offSessionPaymentMethods \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "id": "<string>",
      "object": "offSessionPaymentMethod",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "provider": "stripe",
      "metadata": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Unique identifier for an organization

Response

200
application/json

List of off-session payment methods retrieved successfully

The response is of type object.