Skip to main content
POST
/
services
/
user
/
v1
/
auth
/
sign-in
cURL
curl --request POST \
  --url https://partner-api.getoliver.com/services/user/v1/auth/sign-in \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "username": "<string>",
  "password": "<string>",
  "role": "<string>"
}
'
{
  "success": true,
  "data": {
    "token": "<string>"
  },
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Sign in credentials. You may obtain your partner authentication credentials from [email protected]

username
string
required
password
string
required
role
string
required

Always set to ROLE_API

Response

Sign in response

success
boolean
required
data
object
required
message
string