Transfers

POST /orders/transfer

Body Required

  • customerId string Required
  • partnerId string Required
  • items array[object] Required
    Hide items attributes Show items attributes array[object]
    • id_account_destiny string Required
    • price number Required
    • type string Required
    • isTotalBalance boolean Required
    • isScheduling boolean Required
    • scheduleDate string Required
    • isDiscretionaryManagement boolean Required
  • cuc string Required

Responses

  • 200
    Hide response attributes Show response attributes object
    • status string Required
    • message string Required
  • 400
    Hide response attributes Show response attributes object
    • message object Required
    • data object Required
  • 401
    Hide response attributes Show response attributes object
    • message object Required
    • data object Required
POST /orders/transfer
curl \
 -X POST https://open-api.hml.soupi.com.br/orders/transfer \
 -H "Authorization: $API_KEY" \
 -H "Content-Type: application/json" \
 -d '{"cuc":"string","customerId":"string","partnerId":"string","items":[{"id_account_destiny":"string","price":42.0,"type":"string","isTotalBalance":true,"isScheduling":true,"scheduleDate":"string","isDiscretionaryManagement":true}]}'
Request example
{
  "cuc": "string",
  "customerId": "string",
  "partnerId": "string",
  "items": [
    {
      "id_account_destiny": "string",
      "price": 42.0,
      "type": "string",
      "isTotalBalance": true,
      "isScheduling": true,
      "scheduleDate": "string",
      "isDiscretionaryManagement": true
    }
  ]
}
Request examples
{
  "customerId": "string",
  "partnerId": "string",
  "items": [
    {
      "id_account_destiny": "string",
      "price": 42.0,
      "type": "string",
      "isTotalBalance": true,
      "isScheduling": true,
      "scheduleDate": "string",
      "isDiscretionaryManagement": true
    }
  ],
  "cuc": "string"
}
Response examples (200)
{
  "status": "string",
  "message": "string"
}
Response examples (200)
{
  "status": "string",
  "message": "string"
}
Response examples (400)
{
  "message": {},
  "data": {}
}
Response examples (400)
{
  "message": {},
  "data": {}
}
Response examples (401)
{
  "message": {},
  "data": {}
}
Response examples (401)
{
  "message": {},
  "data": {}
}