curl --request GET \
--url https://api.quentli.com/v1/payment-concepts/{id} \
--header 'Authorization: Bearer <token>'{
"id": "pc_1234567890abcdefghij",
"createdAt": "2025-01-01T00:00:00.000Z",
"updatedAt": "2025-01-01T00:00:00.000Z",
"displayName": "Colegiatura",
"amount": 150000,
"currency": "MXN",
"organizationId": "org_1234567890abcdefghij",
"active": true,
"amountEditable": false,
"quantityEditable": false,
"oneOff": false,
"groupId": null,
"description": "Colegiatura mensual de preparatoria",
"sku": "COL-PREP-001",
"recurrentDetailId": null,
"recurrentDetail": null
}Returns a single payment concept by id.
curl --request GET \
--url https://api.quentli.com/v1/payment-concepts/{id} \
--header 'Authorization: Bearer <token>'{
"id": "pc_1234567890abcdefghij",
"createdAt": "2025-01-01T00:00:00.000Z",
"updatedAt": "2025-01-01T00:00:00.000Z",
"displayName": "Colegiatura",
"amount": 150000,
"currency": "MXN",
"organizationId": "org_1234567890abcdefghij",
"active": true,
"amountEditable": false,
"quantityEditable": false,
"oneOff": false,
"groupId": null,
"description": "Colegiatura mensual de preparatoria",
"sku": "COL-PREP-001",
"recurrentDetailId": null,
"recurrentDetail": null
}Organization API key using Authorization: Bearer sk_....
Identifier of the payment concept.
Payment concept details
Payment concept details. Returns null if not found.
Unique identifier of the payment concept.
"pc_1234567890abcdefghij"
When the concept was created.
"2025-01-01T00:00:00.000Z"
When the concept was last updated.
"2025-01-01T00:00:00.000Z"
Name of the product or service shown to customers.
"Colegiatura"
Unit price in minor currency units (e.g. cents).
150000
ISO 4217 currency code.
"MXN"
Identifier of the owning organization.
"org_1234567890abcdefghij"
Whether this concept is currently available for use.
true
Whether customers can customize the price.
false
Whether customers can customize the quantity.
false
Whether this concept is a one-time custom charge.
false
Identifier of the group this concept belongs to, if any.
null
Optional longer description of the product or service.
"Colegiatura mensual de preparatoria"
Optional SKU for internal identification.
"COL-PREP-001"
Identifier of the recurrence configuration, if applicable.
null
Recurrence configuration when the concept is a recurring charge.
Show child attributes
null
Was this page helpful?