curl --request GET \
--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": {}
}
]
}
curl --request GET \
--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": {}
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Unique identifier for an organization
List of off-session payment methods retrieved successfully
The response is of type object
.