Skip to main content
POST
/
api
/
v1
/
wallets
/
bank-account
Enrôler un compte bancaire
curl --request POST \
  --url https://egimgarsud.gimpayapp.com/api/v1/wallets/bank-account \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "refUsager": "USER-00123",
  "numeroRib": "123456789",
  "typeCompteBancaire": "CHEQUE",
  "refContributeurEmetteur": "<string>",
  "refContributeurDemandeur": "<string>"
}
'
{
  "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 du compte bancaire à enrôler.

refUsager
string
required

La reference de l'usager

Example:

"USER-00123"

numeroRib
string
required

Le numéro RIB

Example:

"123456789"

typeCompteBancaire
enum<string>
required

Le type de compte bancaire

Available options:
CHEQUE,
EPARGNE,
DAT
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

Response

Compte bancaire enrôlé avec succès.

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