Get access token

POST /wf/get_access_token

Get access token

Body

Body of the POST request

Responses

  • Workflow response

    Hide response attributes Show response attributes object
  • Workflow failure

    Hide response attributes Show response attributes object
    • status string

      Outcome of the workflow

    • message string

      Error message for the workflow

  • Permission denied

    Hide response attribute Show response attribute object
    • message string

      Error message for the operation

  • Not found

    Hide response attribute Show response attribute object
    • message string

      Error message for the operation

  • Wrong method

    Hide response attribute Show response attribute object
    • message string

      Error message for the operation

  • Too many requests

    Hide response attribute Show response attribute object
    • message string

      Error message for the operation

  • Internal bug. Please file a bug report at bubble.io/support/report with the request that triggers this bug

    Hide response attributes Show response attributes object
  • Service Unavailable

    Hide response attribute Show response attribute object
    • message string

      Error message for the operation

POST /wf/get_access_token
curl \
 -X POST https://app.docuguru.io/api/1.1/wf/get_access_token?api_token=api_token_value \
 -H "Content-Type: application/json" \
 -d '{"email":"string","password":"string"}'
Request example
{
  "email": "string",
  "password": "string"
}
Request examples
{
  "email": "string",
  "password": "string"
}
Response examples (200)
{
  "status": "string",
  "response": {
    "user_id": "string",
    "token": "string",
    "expires": 42.0
  }
}
Response examples (200)
{
  "status": "string",
  "response": {
    "user_id": "string",
    "token": "string",
    "expires": 42.0
  }
}
Response examples (400)
{
  "status": "string",
  "message": "string"
}
Response examples (400)
{
  "status": "string",
  "message": "string"
}
Response examples (401)
{
  "message": "string"
}
Response examples (401)
{
  "message": "string"
}
Response examples (404)
{
  "message": "string"
}
Response examples (404)
{
  "message": "string"
}
Response examples (405)
{
  "message": "string"
}
Response examples (405)
{
  "message": "string"
}
Response examples (429)
{
  "message": "string"
}
Response examples (429)
{
  "message": "string"
}
Response examples (500)
{
  "code": "string",
  "message": "string"
}
Response examples (500)
{
  "code": "string",
  "message": "string"
}
Response examples (503)
{
  "message": "string"
}
Response examples (503)
{
  "message": "string"
}