curl --request POST \
--url http://localhost/api/auth/clients \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"public": true,
"redirectUris": [
"<string>"
],
"description": "<string>",
"trusted": true,
"postLogoutRedirectUris": [
"<string>"
],
"metadata": {},
"scopes": [
"<string>"
]
}
'