curl --request POST \
--url https://api.example.com/oauth/clients \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"client_id": "<string>",
"name": "<string>",
"redirect_uris": [
"<string>"
],
"client_secret": "<string>",
"scopes": [
"read",
"write"
]
}
'