Get user information

POST /wf/me

Get user information

Responses

  • 200

    Workflow response

    Hide response attributes Show response attributes object
    • status string

      Outcome of the workflow

    • response object
      Hide response attributes Show response attributes object
      • first string
      • last string
      • User_Id string
      • org_id string
      • option array[string]
      • email string
  • 400

    Workflow failure

    Hide response attributes Show response attributes object
    • status string

      Outcome of the workflow

    • message string

      Error message for the workflow

  • 401

    Permission denied

    Hide response attribute Show response attribute object
    • message string

      Error message for the operation

  • 404

    Not found

    Hide response attribute Show response attribute object
    • message string

      Error message for the operation

  • 405

    Wrong method

    Hide response attribute Show response attribute object
    • message string

      Error message for the operation

  • 429

    Too many requests

    Hide response attribute Show response attribute object
    • message string

      Error message for the operation

  • 500

    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
    • code string

      Error code

    • message string

      Error message for the operation

  • 503

    Service Unavailable

    Hide response attribute Show response attribute object
    • message string

      Error message for the operation

POST /wf/me
curl \
 --request POST 'https://cloover.co/version-test/api/1.1/wf/me'
Response examples (200)
{
  "status": "string",
  "response": {
    "first": "string",
    "last": "string",
    "User_Id": "string",
    "org_id": "string",
    "option": [
      "string"
    ],
    "email": "string"
  }
}
Response examples (400)
{
  "status": "string",
  "message": "string"
}
Response examples (401)
{
  "message": "string"
}
Response examples (404)
{
  "message": "string"
}
Response examples (405)
{
  "message": "string"
}
Response examples (429)
{
  "message": "string"
}
Response examples (500)
{
  "code": "string",
  "message": "string"
}
Response examples (503)
{
  "message": "string"
}