Instruments
Create an instrument
Create a payment instrument.
post/payment/instruments
Headers
x-idempotency-keystring uuid required
Idempotency key to be used. Sending again the same key would return the same result without re-executing the update.
Request body
Example request
{
"description": "Main card, mom's card, company card",
"data": {
"bin": "416598",
"binLookup": {
"bin": "416598"
}
}
}Response
Created.
Example response
{
"data": {
"bin": "416598",
"binLookup": {
"bin": "416598"
}
}
}