Linkage

Account Inquiry

Account Inquiry merupakan layanan yang dapat digunakan untuk melihat akun merchant sudah pernah terdaftar atau belum.
Tipe Value
Kode Layanan
08
Nama
API Account Binding Inquiry
HTTP Method
POST

Flow

Anda melakukan permintaan dengan mengirimkan parameter yang dibutuhkan, dan Espay Payment Gateway akan memberikan respons dalam bentuk JSON.

API URL

Environment URL
Sandbox
Port of HTTPS (443)
https://sandbox-api.espay.id/apidirectdebit/v1.0/registration-account-inquiry
Production
Port of HTTPS (443)
https://api.espay.id/apidirectdebit/v1.0/registration-account-inquiry
Nama Tipe Mandatory Keterangan
Content-Type
String
Y
Isi konten permintaan Anda.

Contoh:
application/json
X-TIMESTAMP
String (25)
Y
Tanggal dan waktu lokal customer saat ini.

Format:
yyyy-MM-ddThh:mi:ssTZD (ISO 8601)

Contoh:
2024-03-14T07:49:28+07:00
X-SIGNATURE
String (255)
Y
Kode yang digunakan untuk melakukan validasi transaksi. Pelajari Signature Asymmetric
X-EXTERNAL-ID
String (32)
Y
String Numerik. Kode referensi yang bersifat unik pada hari yang sama.
X-PARTNER-ID
String (50)
Y
Merchant code yang diberikan oleh tim Espay.
CHANNEL-ID
String (5)
Y
Kode channel.

Value:
ESPAY
Authorization-Customer
String (150)
C
Kode token B2B2C. Khusus Espay -> Bank.
Y: Yes, O: Optional, C: Conditional

Parameter Permintaan

Parameter Tipe Mandatory Keterangan
partnerReferenceNo
String (64)
Y
Kode referensi merchant.
additionalInfo
Object
  productCode
String (16)
Y
Kode produk. Klik disini
  phoneNo
String (13)
Y
Nomor hp customer.

Format:
62xxxxxxxxxxxx
Y: Yes, O: Optional, C: Conditional

Parameter Respons

Parameter Tipe Mandatory Keterangan
responseCode
String (7)
Y
Kode respon.

Format:
Kode HTTP + Kode Layanan + Kode Error

Contoh:
200+08+00 = 2000800.
responseMessage
String (150)
Y
Deskripsi respon.
AdditionalInfo
Object
  accountStatus
String (32)
Y
Status akun.
  memberLevel
String (1)
Y
Status level akun.
  message
String (128)
Y
Deskripsi.
Y: Yes, O: Optional, C: Conditional































Contoh Header

Content-Type:application/json
X-TIMESTAMP:2024-03-14T07:49:28+07:00
X-SIGNATURE:jaCUbDOSIjFcDaZ1rO0aCczJrWSfV0wAXVi/zOLlOLOIVH00gucOSOnHpKTARwpnn6qB08Vi8VJviNhIQh1q6zVJAwdhxnHRlwNFa28IVFTtSmD4nXPWT3LsuYuFPNDGJ59/MgKMVjwIofYvq2dwOHoDi9rnyT3nPl7N2bRdIQceQlD6sITcqdEbRUlm+zTFB2MxNy4vFaEZz1LU8fsENp+giMNqxR26DsNcRj1K8JBXO6nY8q2m3jmTmiduXK5VZXxt/5v6bp+OlYCwJhn3hmdZD1zwC3Hu6qZcCIhO6IVe0ThSCfsaCdye9o/Ew6VdMWbTtQUoR983mq6MubLmzg==
X-EXTERNAL-ID:d3be5aec-155b-4b46-bfee-3fd55363d0f4
X-PARTNER-ID:SGWYESSISHOP
CHANNEL-ID:ESPAY
             


































Contoh Permintaan

{
    "partnerReferenceNo":"test00059",
    "additionalInfo":{
        "productCode":"SALDOMUDIRECTDEBIT",
        "phoneNo":"628777123456"
    }
}

             







Contoh Respons

{
    "responseCode": "2000800",
    "responseMessage": "Successful",
    "additionalInfo": {
        "accountStatus": "ACTIVE",
        "memberLevel": "2",
        "message": ""
    }
}

              


CURL

curl --location 'https://sandbox-api.espay.id/apidirectdebit/v1.0/debit/registration-account-unbinding
' \
--header 'X-TIMESTAMP: 2024-03-14T07:49:28+07:00' \
--header 'X-SIGNATURE: f4wSIUnO39AMbTdE7uD+kksnRzbCH2Af/WQNVFhk4IpCsSrnuBVCyl8TCnpWSnybGXtMfntreQn6y3bFiL9+vWojsTPCg+ljYrCocIGAoNkLyE+xg95Qg2Bbugn7f8Az1KAPUOyM3K7yLmgkIc7Xlzr3UK/O2BDGoTUs9N6Z1DFkHrlYYsi8DaXO6fslaM0eMtt1idCWk7Tkz5PBsYANVN8HP+DG73zWnxqgz7AR7RJZz34ahx+t3OIIWAS8BPWprA9+oSES1BZzIQcYUsjIfxul9e0Z1dUfOZB0VWCn2eqrUWzx3UNtLY+fzyYIl+87yAXJT129ypV+KyOql0EZzA==' \
--header 'X-EXTERNAL-ID: 93b3419d-2821-489e-b718-c0092ecc3ebf' \
--header 'X-PARTNER-ID: SGWDIGALLERY' \
--header 'CHANNEL-ID: ESPAY' \
--header 'Content-Type: application/json' \
--data '{
    "partnerReferenceNo":"543654363643",
    "merchantId":"ESPAY",
    "phoneNo":"0896227489011",
    "authorizationCustomer":"kSJ8StMgauL1R84LvbSgL2Bad5Xs89OpkHhJTunMTIgXPAC7vjVVge69",
    "additionalInfo":{
        "productCode":"DANAMONDIRECTDEBIT",
        "accountToken":"ESP230908023716NykFMRWc2oEQ54RJj"
    }
}'   





Scroll to Top