Handles saving or updating a template with provided CSS,
curl --request POST \
--url https://api.helpyousponsor.com/v1/admin/template \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"client_id": "<string>",
"css": "<string>",
"js": "<string>",
"html": "<string>"
}
'{
"message": "Successfully"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Data required for creating or updating a template
Template saved or updated successfully
"Successfully"
curl --request POST \
--url https://api.helpyousponsor.com/v1/admin/template \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"client_id": "<string>",
"css": "<string>",
"js": "<string>",
"html": "<string>"
}
'{
"message": "Successfully"
}