| Campo | Descrição | Formato |
|---|---|---|
| grant_type | Valor fixo: client_credentials. Obrigatório. | string |
| client_id | Código identificador da aplicação cliente. Obrigatório. | string |
| client_secret | Palavra chave da aplicação cliente. Obrigatório. | string |
curl --location '/oauth/token' \
--header 'Content-Type: application/json' \
--data '{
"grant_type": "password",
"client_id": "{{clientId}}",
"client_secret": "{{clientSecret}}",
"username": "{{username}}",
"password": "{{password}}"
}'{}