POST
/
transfers
curl --request POST \
  --url https://api.sandbox.isometric.com/registry/v0/transfers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'x-client-secret: <x-client-secret>' \
  --data '{
  "credit_batch_quantities": [
    {
      "credit_batch_id": "ctb_1DRBTYA8Q1S07CBY",
      "credit_quantity_kg": 1000
    }
  ],
  "from_organisation_id": "org_1GB56M1ST1S0GVNA",
  "notes": "Transferred with care.",
  "supplier_id": "spl_1CC712KFS1S0YKPS",
  "to_organisation_id": "org_1GB56M1ST1S0GVNA"
}'
{
  "credit_batch_size_total": {
    "credit_kgs": 125632,
    "credits": 125.632
  },
  "from_organisation": {
    "domain": "isometric.com",
    "id": "org_1GB56M1ST1S0GVNA",
    "name": "Isometric"
  },
  "id": "tfr_1FJGWSY271S0QSMR",
  "notes": "<string>",
  "to_organisation": {
    "domain": "isometric.com",
    "id": "org_1GB56M1ST1S0GVNA",
    "name": "Isometric"
  },
  "transferred_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

A JWT Bearer token header for authentication and authorization, in the format Authorization: Bearer <token>

Headers

x-client-secret
string
required

A secret token identifying the client connecting to the API

Examples:

"Syou3EZiO5vuMEgNyBeA8cjEMYOnQDwP"

Body

application/json

Response

200
application/json

Successful Response

The response is of type object.