Skip to main content
POST
/
api
/
v2
/
backoffice
/
ops
/
recharges
/
cop
cURL
curl --request POST \
  --url https://sandbox.killb.app/api/v2/backoffice/ops/recharges/cop \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "order": "order-5",
  "amount": 5000000,
  "description": "just a test"
}
'
{
  "CODE": "<string>",
  "DESC": "<string>",
  "DATA": {
    "OrdenID": "<string>",
    "Monto": "<string>",
    "PVordenID": "<string>",
    "Referencia": "<string>",
    "Operacion": "<string>",
    "checkout": "<string>"
  }
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
order
string
required

Unique identifier for the recharge request within KillB systems

Maximum string length: 100
Example:

"order-5"

amount
number
required

Recharge amount expressed in COP as an integer

Required range: x >= 1
Example:

5000000

description
string
required

Human readable description of the recharge

Maximum string length: 250
Example:

"just a test"

Response

CODE
string
required
DESC
string
required
DATA
object
required