Skip to main content
GET
/
v1
/
payment-concepts
/
{id}
Get payment concept
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
}

Authorizations

Authorization
string
header
required

Organization API key using Authorization: Bearer sk_....

Path Parameters

id
string
required

Identifier of the payment concept.

Response

object | null

Payment concept details

Payment concept details. Returns null if not found.

id
string
required

Unique identifier of the payment concept.

Example:

"pc_1234567890abcdefghij"

createdAt
required

When the concept was created.

Example:

"2025-01-01T00:00:00.000Z"

updatedAt
required

When the concept was last updated.

Example:

"2025-01-01T00:00:00.000Z"

displayName
string
required

Name of the product or service shown to customers.

Example:

"Colegiatura"

amount
number
required

Unit price in minor currency units (e.g. cents).

Example:

150000

currency
string
required

ISO 4217 currency code.

Example:

"MXN"

organizationId
string
required

Identifier of the owning organization.

Example:

"org_1234567890abcdefghij"

active
boolean
required

Whether this concept is currently available for use.

Example:

true

amountEditable
boolean
required

Whether customers can customize the price.

Example:

false

quantityEditable
boolean
required

Whether customers can customize the quantity.

Example:

false

oneOff
boolean
required

Whether this concept is a one-time custom charge.

Example:

false

groupId
string | null
required

Identifier of the group this concept belongs to, if any.

Example:

null

description
string | null

Optional longer description of the product or service.

Example:

"Colegiatura mensual de preparatoria"

sku
string | null

Optional SKU for internal identification.

Example:

"COL-PREP-001"

recurrentDetailId
string | null

Identifier of the recurrence configuration, if applicable.

Example:

null

recurrentDetail
object

Recurrence configuration when the concept is a recurring charge.

Example:

null