FlowMate API Documentation
  1. User
FlowMate API Documentation
  • Authentication
    • Login
      POST
  • Flows
    • Retrieve all flows
      GET
    • Find Flow by ID
      GET
    • Deletes a flow
      DELETE
    • Update an existing flow
      PATCH
    • Bulk update a number of existing flows
      PATCH
    • Start a flow
      POST
    • Stop a flow
      POST
    • Start multiple flows
      POST
    • Stop multiple flows
      POST
  • User
    • get all users
      GET
    • Create user
      POST
    • get a user by id
      GET
    • get current user
      GET
  • Templates
    • Retrieve all flow templates
      GET
    • Add a new template to the repository
      POST
    • Find Flow Template by ID
      GET
    • Deletes a flow template
      DELETE
    • Update an existing flow template
      PATCH
    • Generate a flow from the flow template
      POST
  • Executions
    • Get Executions
      GET
  • Webhooks
    • Incoming Webhook
      POST
  1. User

get current user

GET
https://api.platform.openintegrationhub.com/api/users/me
User must have a valid session.

Request

None

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.platform.openintegrationhub.com/api/users/me'

Responses

🟢200OK
application/json
current users data
Body

Example
{
    "id": "string",
    "username": "string",
    "firstname": "string",
    "lastname": "string",
    "status": "ACTIVE",
    "tenant": "string",
    "roles": [
        {
            "id": "string",
            "name": "string",
            "permissions": [
                "all"
            ],
            "scope": "string",
            "createdAt": "string",
            "updatedAt": "string",
            "isGlobal": true,
            "description": "string"
        }
    ],
    "permissions": [
        "all"
    ],
    "confirmed": true,
    "img": "string"
}
Modified at 2025-01-16 10:20:08
Previous
get a user by id
Next
Retrieve all flow templates
Built with