Skip to main content
GET
/
partner_api
/
payment_links
/
{id}
Obtenir un lien de paiement par ID
curl --request GET \
  --url https://api.jeko.africa/partner_api/payment_links/{id} \
  --header 'X-API-KEY: <api-key>'
{
  "id": "d22c81f3-ee04-4ec5-8bd2-cd8af5dabcfc",
  "storeId": "59ae202a-f583-4a15-970f-9e99bd1e0baa",
  "title": "Payment for services",
  "amount": {
    "amount": 10000,
    "currency": "XOF"
  },
  "allowMultiplePayments": false,
  "canReceivePayments": true,
  "link": "https://pay.jeko.africa/c/abc123def456"
}

Authorizations

X-API-KEY
string
header
required

Clé API pour les requêtes de l'API Partenaire

Path Parameters

id
string<uuid>
required

Payment link identifier

Example:

"d22c81f3-ee04-4ec5-8bd2-cd8af5dabcfc"

Response

Lien de paiement récupéré avec succès

Response schema for payment link operations

id
string
required

Payment link identifier

Example:

"d22c81f3-ee04-4ec5-8bd2-cd8af5dabcfc"

storeId
string
required

Identifiant du magasin

Example:

"59ae202a-f583-4a15-970f-9e99bd1e0baa"

title
string
required

Payment link title

Example:

"Payment for services"

amount
object
required

Fixed amount in cents

Example:
{ "amount": 10000, "currency": "XOF" }
allowMultiplePayments
boolean
required

Whether the payment link allows multiple payments.

  • false: One-time use link (becomes unavailable once payment is completed)
  • true: Reusable link (can accept multiple payments)
Example:

false

canReceivePayments
boolean
required

Indicates whether the payment link can currently accept new payments. Returns true when:

  • The link allows multiple payments (allowMultiplePayments: true), OR
  • There are no completed payment requests associated with this link

Important: Always check this field before directing customers to the payment link. Attempting to pay through a link with canReceivePayments: false will result in an error.

Example:

true

Shareable payment link URL

Example:

"https://pay.jeko.africa/c/abc123def456"