IDCS Token Generation in Postman Using HTTP Methods
To generate the IDCS token in Postman using HTTP methods:
- Obtain the Access Token URL, Client ID, and Client Secret from your Oracle Identity Cloud Console.
- Launch the Postman application.
- Click New - HTTP Request.
- Set the Request Type as POST and set the request URL.
For Example: https://<Customer - IDCS >/oauth2/v1/token
- Perform the following steps before sending the POST request to retrieve your authentication token:
- Select the Authorization tab and enter the following information:
- Type: Basic
- Username: Client ID (A unique "API Key" is generated when registering your application in the Identity Cloud Services admin console.)
- Password: Client Secret (A private key similar to a password that is generated when registering your application in the Identity Cloud Services admin console)
- Select the Headers tab and enter the following key value pairs:
- Content-Type: application/x-www-form-urlencoded
- grant_type: client_credentials
- scope: texturadaas:read (scope provided while configuring Application is OIM)
- Select the Body tab and add the following key value pairs:
- grant_type: client_credentials
- scope: texturadaas:read (scope provided while configuring Application is OIM)
- Select the Authorization tab and enter the following information:
- Click Send to generate the token.
- Copy the access token.
- From the Authorization tab, select the Bearer Token type, and enter the access token in the Token text box.
- Select the Body tab.
- Choose the GraphQL option and update the query for your desired organization.
- Click SEND.
- Verify the response was received.
Last Published Friday, September 5, 2025