Skip to main content
POST
/
api
/
v2
/
accounts
/
move
Move accounts between workspaces
curl --request POST \
  --url https://api.instantly.ai/api/v2/accounts/move \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "emails": [
    "user@example.com"
  ],
  "source_workspace_id": "019cc043-e2a8-7643-9db3-cb58f0775a95",
  "destination_workspace_id": "019cc043-e2a8-7643-9db3-cb594a1e018e"
}
'
{
  "status": "success"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
emails
string[]
required

Array of email addresses of the accounts to move

Minimum array length: 1

Email address of the account to move

source_workspace_id
string
required

ID of the source workspace (the workspace that the accounts are currently in)

Example:

"019cc043-e2a8-7643-9db3-cb58f0775a95"

destination_workspace_id
string
required

ID of the destination workspace (the workspace that the accounts will be moved to)

Example:

"019cc043-e2a8-7643-9db3-cb594a1e018e"

Response

Default Response

status
enum<string>
Available options:
success
Example:

"success"