The Validate Auth Code and Client API is used for validating auth code and client.
Environment
Test | <https://uat-accounts.payu.in> |
Production | <https://accounts.payu.in> |
Notes:The grant type for the grant_type parameter for this API is authorization_code.
Request parameters
Parameter | Description | Example |
---|---|---|
client_id |
|
68a276132f82c056a6ed9b5 |
client_secret |
|
93f29bd09aca64f304ee8380232310f7 |
grant_type |
|
authorization_code |
code |
|
23e563c95e3c433e38072fef0c8d1 |
redirect_uri |
|
Sample request
curl --location 'https://uat-accounts.payu.in/oauth/token' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Cookie: USERTXNINFO=6513cd7fa47ae5.28444661' \
--data-urlencode 'client_id=6f7afb8ad5bc80bb51c7076449b67ee882430c8c06fda6f953d2a51f803c81a2' \
--data-urlencode 'client_secret=4fc4623fdb3e8218ee032d6ec40a7a186d546e57f65b3c7adb4704bcc530e041' \
--data-urlencode 'grant_type=authorization_code' \
--data-urlencode 'code=a5a6b9694555ead09c8e024c0ddbe008590344d7e55d6d25af0f6881d7f3c67a' \
--data-urlencode 'redirect_uri=https://abc.in'
Response parameters
Parameters | Description |
---|---|
access_token | Indicates the Security Token used to get access in Partner/Payouts API calls. |
token_type | Type of authorization token |
expire_in | Indicates the TTL i.e., the time limit (in seconds) after which the Security Token will expire |
refresh_token | Used to refresh the access_token. To know more, read Refresh Token section |
scope | Represents the allowed scopes in generated security token. For e.g., the generated token can be used only for Payouts API requests |
created_at | Indicates the Time of Creation in milliseconds |
user_uuid | Indicates the Unique Identifier for the user. |
Sample response
Success response
- Status - 200
{
"access_token": "e6ff7e34b704be2b14c8ae3c0e776597df4ae7de9e12d3e4c79781fcbbf2c4bb",
"token_type": "Bearer",
"expires_in": 7199,
"refresh_token": "356fe080daa69438e0c2d3b0a80b3fe4aa3f78b264e6092e95e4429ae59486a7",
"scope": "credentials_using_oauth create_payment_links read_payment_links update_payment_links delete_payment_links",
"created_at": 1709198191,
"user_uuid": "11ed-933c-d307ba06-b71a-0a64ecf8a4cc"
}
Failure response
The following response is displayed for the following failure scenarios:
Error Code | Reason | Result |
---|---|---|
401 | Without client secret | { |
401 | Without redirect URL | { |
401 | With an invalid client secret | { |
401 | Without grant type | { |
401 | With an invalid grant type | { |
401 | Without authorization code | { |
401 | With an invalid auth code | { |
401 | With an invalid client secret | { |
401 | With an invalid redirect URL | { |