Authentication
This REST API is used to get access token via POST method from the partner for authentication purpose. The Unicommerce sends valid user credentials in request body, which are validated by Partner to generate an access token. This token is used in all subsequent API requests by the Uniware.
Tip
- As the token is unique for each seller, this seller-token mapping helps partner to identify responses for each sellers and maps the correct seller data to the api response.
Basic Information
NAME | DETAILS |
---|---|
BaseUrl: | https://{PartnerBaseUrl} |
Endpoint: | /oauth/token |
Request Type: | POST |
Scheme: | HTTPS |
Header (Content-Type): | application/json |
Request Payload
{
“username”: “String”,
“password”: “String”
}
Request Payload Details
PARAMETERS | TYPE | DESCRIPTION | MANDATORY | NOTES |
---|---|---|---|---|
username | string | Username | Yes | - |
password | string | Password | Yes | - |
Response Payload
The response is a valid token which is unique for each seller using Uniware.
{
"status": "SUCCESS",
"token": "string"
}
Response Payload Details
PARAMETER | TYPE | DESCRIPTION | NOTES |
---|---|---|---|
status | string | Status of the API request | Allowable: SUCCESS, INVALID_CREDENTIALS |
token | string | Unique token | E.g.: as23djaexnsnJsnJSW34snapl |
Error Codes
Refer Response Codes section to know about specific errors codes.