Skip to main content
POST
/
ramp
/
organization
Create a child organization
curl --request POST \
  --url https://api.etherfuse.com/ramp/organization \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "displayName": "Bando Guadalajara",
  "wallets": [
    {
      "publicKey": "9Qx7r...",
      "blockchain": "solana"
    },
    {
      "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "publicKey": "GCRYUGD5...",
      "blockchain": "stellar"
    }
  ]
}
'
{
  "organizationId": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "displayName": "Bando Guadalajara",
  "wallets": [
    {
      "id": "c3d4e5f6-a7b8-9012-cdef-123456789012",
      "publicKey": "9Qx7r...",
      "blockchain": "solana"
    },
    {
      "id": "b2c3d4e5-f6a7-8901-bcde-f12345678901",
      "publicKey": "GCRYUGD5...",
      "blockchain": "stellar"
    }
  ],
  "bankAccount": null
}

Authorizations

Authorization
string
header
required

API key for authentication. Pass the key directly (e.g., Authorization: your-api-key). Do not use a Bearer prefix.

Body

application/json
id
string<uuid>

Optional UUID to use as the organization's primary key. If omitted, a UUID is generated automatically.

displayName
string

Optional display name for the new organization. At most 200 characters. If omitted, defaults to "Customer for {parent org name}".

Maximum string length: 200
wallets
object[]

Optional wallets to register for the new organization. Maximum 50 wallets per request.

Maximum array length: 50
bankAccount
object

Optional bank account to register for the new organization.

Response

Organization created successfully

organizationId
string<uuid>

ID of the newly created organization

displayName
string

Display name of the organization

wallets
object[]
bankAccount
object