Auth API (1.0.0-dev)

Download OpenAPI specification:

License: Propietary

Authentication

An API key and a set of credentials (email and password) must be used to authenticate. Use the /auth endpoint to get the short-lived token needed to call WeDoBooks apis endpoints. It can be accessed using the following credentials:

Authenticate user

Authenticate with username/password provided by WedoBooks in order to obtain a short lived JWT token used to access other endpoints

The token will expire after 1hs.

Authorizations:
api_key
Request Body schema: application/json
required

userCredentials

email
required
string <= 50 characters
password
required
string <= 50 characters

Responses

Request samples

Content type
application/json
{
  • "email": "dev-demo@wedobooks.io",
  • "password": "test-demo"
}

Response samples

Content type
application/json
{
  • "idToken": "string"
}