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>"
}Saves a reference URL for a given Font. These are typically websites / vendors providing the font itself.
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>"
}The access token received from the authorization server in the OAuth 2.0 flow.