Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"css": "string",
"template_name": "string"
}
Request Code Samples
curl --location --request POST '/css_template/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"css": "string",
"template_name": "string"
}'
Responses
{
"id": "string",
"result": {
"css": "string",
"template_name": "string"
}
}
Modified at 2025-06-04 22:27:17