curl --request POST \
--url https://api.example.com/styles/font/save \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"languageID": 123,
"fontTypeID": 123,
"fontFamilyTypeID": 123,
"code": "<string>",
"fileNameWithoutExt": "<string>",
"englishTitle": "<string>",
"isHidden": true,
"isFeatured": true,
"sizeMultiplier": 123,
"licenseTypeID": 123,
"licensePeriodStart": "2023-11-07T05:31:56Z",
"licensePeriodEnd": "2023-11-07T05:31:56Z"
}
'{
"success": true,
"data": "<unknown>"
}Save fonts.
curl --request POST \
--url https://api.example.com/styles/font/save \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"languageID": 123,
"fontTypeID": 123,
"fontFamilyTypeID": 123,
"code": "<string>",
"fileNameWithoutExt": "<string>",
"englishTitle": "<string>",
"isHidden": true,
"isFeatured": true,
"sizeMultiplier": 123,
"licenseTypeID": 123,
"licensePeriodStart": "2023-11-07T05:31:56Z",
"licensePeriodEnd": "2023-11-07T05:31:56Z"
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.