Rates
Retrieves the default model rate details.
Authorizations
AuthorizationstringRequired
Bearer authentication with JWT
Responses
200
OK
get
/AdminRateGET /AdminRate HTTP/1.1
Host: settings.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200
OK
{
"objectIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"description": "text",
"exchangeRate": 1
}Retrieves a model rate by its object identifier.
Authorizations
AuthorizationstringRequired
Bearer authentication with JWT
Path parameters
objectIdentifierstring · uuidRequired
The object identifier of the model rate.
Responses
200
OK
404
Not Found
get
/AdminRate/{objectIdentifier}GET /AdminRate/{objectIdentifier} HTTP/1.1
Host: settings.uk.jylo.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"objectIdentifier": "123e4567-e89b-12d3-a456-426614174000",
"description": "text",
"exchangeRate": 1
}Last updated