Skip to main content

Login User on Platform (Public)

POST /api/v1/users/login/platform/public

Description​

Login a user on the platform using public access.

Path Parameters​

NameTypeDescription
NoneNo parameters

Request Body​

  • Content Type: application/json
{
"username": "string",
"passId": "string"
}

Response Code: 201 - Created​

Description

User logged in successfully.

Response Fields

The response does not contain any specific fields.

Method: POST​

>http://your-api-url/api/v1/users/login/platform/public

Headers​

Content-TypeValue
apiKey{{apiKey}}

Body​

{
"username": "exampleUser",
"passId": "examplePassId"
}

🔑 Authentication bearer​

ParamValueType
token{{accessCode}}string

LANGUAGE

AUTHORIZATION

Bearer

CURL REQUEST


curl --request POST \ 
--url /api/v1/users/login/platform/public \
--header 'accept: application/json' \
--header 'content-type: application/json'

RESPONSE


Click Try It! to start a request and see the response here!