Saves an entity with the given details
curl --request POST \
--url https://api.helpyousponsor.com/v1/frontend/entity/save/{client_id}/{program_id}/{entity_id}/{session_id} \
--header 'Content-Type: application/json' \
--data '{
"sponsorship_amount": 123
}'
{
"message": "<string>",
"session_id": "<string>"
}
The ID of the client
The ID of the program
The ID of the entity
The ID of the session
Details of the entity to be saved
The body is of type object
.
Successful operation
The response is of type object
.
curl --request POST \
--url https://api.helpyousponsor.com/v1/frontend/entity/save/{client_id}/{program_id}/{entity_id}/{session_id} \
--header 'Content-Type: application/json' \
--data '{
"sponsorship_amount": 123
}'
{
"message": "<string>",
"session_id": "<string>"
}