curl --request GET \
--url https://api.paygentic.io/v0/sources \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"object": "source",
"planId": "<string>",
"merchantId": "<string>",
"type": "stripe_revenue",
"name": "<string>",
"description": "<string>",
"config": {},
"metadata": {},
"enabled": true,
"processingMode": "automatic",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"limit": 123,
"offset": 123,
"total": 123
}
}
curl --request GET \
--url https://api.paygentic.io/v0/sources \
--header 'Authorization: Bearer <token>'
{
"data": [
{
"id": "<string>",
"object": "source",
"planId": "<string>",
"merchantId": "<string>",
"type": "stripe_revenue",
"name": "<string>",
"description": "<string>",
"config": {},
"metadata": {},
"enabled": true,
"processingMode": "automatic",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
],
"pagination": {
"limit": 123,
"offset": 123,
"total": 123
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Filter sources by plan ID
Filter sources by merchant ID
1 <= x <= 100
x >= 0
List of sources
The response is of type object
.