Skip to main content
POST
/
styles
/
font
/
url
/
save
Saves a reference URL for a given Font.
curl --request POST \
  --url https://api.example.com/styles/font/url/save \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "fontTypeID": 123,
  "url": "https://www.somewebsite.com/license/terms"
}
'
{
  "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
fontTypeID
integer<int32>
default:123
required
url
string | null
default:https://www.somewebsite.com/license/terms

Response

200 - application/json

Success

success
boolean
data
unknown