Skip to main content
PUT
/
organization
/
fonts
/
{id}
Update
curl --request PUT \
  --url https://api.beyondwords.io/v1/organization/fonts/{id} \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '
[
  {
    "name": "Updated",
    "url": "https:://example.com/updated.ttf"
  }
]
'
[
  {
    "id": 1,
    "name": "My custom font",
    "url": "https://example.com/my-custom-font.ttf",
    "filename": null,
    "fallback": false,
    "created": "2025-01-02 23:59:59 UTC",
    "updated": "2025-01-02 23:59:59 UTC"
  }
]

Authorizations

X-Api-Key
string
header
required

Path Parameters

id
string
required

The numeric ID of your font

Body

application/json
name
string

Name of the font. Must be unique per organization.

url
string

Temporary URL to the font (will be reuploaded to the BeyondWords cdn).

Response

200 - application/json

OK

id
integer | null

Unique identifier for the object

name
string

The name of the font

url
string | null

The url of the custom font

filename
string | null

The filename of the built-in font

fallback
boolean

Whether the font is used as a language fallback

created
string<date-time> | null

Time at which the object was created (ISO 8601)

updated
string<date-time> | null

Time at which the object was updated (ISO 8601)