POST
/
admin
/
move
/
{entity_id}
curl --request POST \
  --url https://api.helpyousponsor.com/v1/admin/move/{entity_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "entity_id": "<string>",
  "client_id": "<string>",
  "new_program": "<string>"
}'
{
  "message": "Entity successfully moved."
}

Authorizations

Authorization
string
header
required

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

Path Parameters

entity_id
integer
required

Entity ID of the entity

Body

application/json
Data required to move the entity
entity_id
string
required
client_id
string
required
new_program
string

Response

200
application/json
Entity moved successfully
message
string
Example:

"Entity successfully moved."