POST
/
deliver
/
transfer-groups
curl --request POST \
  --url https://api-sandbox.orum.io/deliver/transfer-groups \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'Orum-Version: <orum-version>' \
  --data '{
  "transfer_group_reference_id": "<string>",
  "source": {
    "account_reference_id": "<string>",
    "customer_reference_id": "<string>"
  },
  "destination": {
    "account_reference_id": "<string>",
    "customer_reference_id": "<string>"
  }
}'
{
  "transfer_group": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "transfer_group_reference_id": "<string>",
    "source": {
      "account_reference_id": "<string>",
      "customer_reference_id": "<string>"
    },
    "destination": {
      "account_reference_id": "<string>",
      "customer_reference_id": "<string>"
    }
  }
}

Authorizations

Authorization
string
header
required

The auth token received from Authentication endpoints.

Headers

Orum-Version
enum<string>
required

Version of Deliver API. Use v2022-09-21.

Available options:
v2022-09-21

Body

application/json
transfer_group_reference_id
string
required

Unique reference id for the transfer group

Minimum length: 1
source
object

Information about the ultimate source of the transfer group.

destination
object

Information about the ultimate destination of the transfer group.

Response

200
application/json
successful response.
transfer_group
object
required