PUT
/
admin
/
entities
/
move
curl --request PUT \
  --url https://api.helpyousponsor.com/v1/admin/entities/move \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "entity_ids": [
    "1,2"
  ],
  "client_id": "<string>",
  "new_program": "<string>"
}'
{
  "message": "Entities successfully moved."
}

Authorizations

Authorization
string
header
required

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

Body

application/json
Data required to move multiple entities
entity_ids
integer[]
required
client_id
string
new_program
string

Response

200
application/json
Entities moved successfully
message
string
Example:

"Entities successfully moved."