1.1 Get Access Token (server-to-server integration)

POST {{identity_server_url}}/connect/token

Gets a token using server-to-server client credentials.

Use Body tab to populate client_secret value and username/password (these are credentials of self registered or invited user that you have to have as prerequisite)

Request Body

[{"name"=>"grant_type", "value"=>"password", "datatype"=>"string"}, {"name"=>"scope", "value"=>"user_api.full_access", "datatype"=>"string"}, {"name"=>"username", "value"=>"{{system_user__username}}", "datatype"=>"string"}, {"name"=>"password", "value"=>"{{system_user__password}}", "datatype"=>"string"}, {"name"=>"client_id", "value"=>"{{client_with_password__id}}", "datatype"=>"string"}, {"name"=>"client_secret", "value"=>"{{client_with_password__secret}}", "datatype"=>"string"}]