Skip to main content
POST
/
styles
/
font
/
save
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>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
languageID
integer<int32>
fontTypeID
integer<int32> | null
fontFamilyTypeID
integer<int32> | null
code
string | null
fileNameWithoutExt
string | null
englishTitle
string | null
isHidden
boolean | null
sizeMultiplier
number<double> | null
licenseTypeID
integer<int32> | null
licensePeriodStart
string<date-time> | null
licensePeriodEnd
string<date-time> | null

Response

Success

success
boolean
data
unknown