curl --request POST \
--url https://api.example.com/v1/me/rate_limit/request \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"rate_limit": 123,
"reason": "<string>",
"tpm_rate_limit": 123
}
'{
"error": "<string>"
}curl --request POST \
--url https://api.example.com/v1/me/rate_limit/request \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"rate_limit": 123,
"reason": "<string>",
"tpm_rate_limit": 123
}
'{
"error": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Successful Response