Skip to main content
POST
/
api
/
v1
/
wallets
/
card
Enrôler une carte bancaire
curl --request POST \
  --url https://egimgarsud.gimpayapp.com/api/v1/wallets/card \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "typeCarteBancaire": "PREPAYEE",
  "refUsager": "USER-00123",
  "refContributeurEmetteur": "<string>",
  "refContributeurDemandeur": "<string>",
  "codeClient": "1234",
  "pan": "1234",
  "cvv": "123",
  "dateExpiration": "05/2028"
}
'
{
  "message": "<string>",
  "status": 123,
  "body": {},
  "timestamp": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Authorization
string

Body

application/json

Informations de la carte bancaire à enrôler.

typeCarteBancaire
enum<string>
required

Le type de la carte bancaire

Available options:
PREPAYEE,
DEBIT,
PREPAYEE,
DEBIT
refUsager
string
required

La reference de l'usager

Example:

"USER-00123"

refContributeurEmetteur
string
required

La réference du contributeur émetteur de l'instrument de paiement

refContributeurDemandeur
string
required

La réference du contributeur demandeur qui demande l'enrôlement de l'instrument de paiement

codeClient
string

Le code de la carte bancaire

Example:

"1234"

pan
string

Les 4 derniers chiffres du PAN (Primary Account Number) de la carte bancaire

Example:

"1234"

cvv
string

Le CVV de la carte bancaire

Example:

"123"

dateExpiration
string

La date d'expiration de la carte bancaire

Example:

"05/2028"

Response

Carte bancaire enrôlée avec succès.

message
string
status
integer<int32>
body
object
timestamp
string<date-time>