Handles the process of moving an entity to a different program,
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."
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Entity ID of the entity
Data required to move the entity
The body is of type object
.
Entity moved successfully
The response is of type object
.
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."
}