DecisionLink Users API

The users API from DecisionLink — 2 operation(s) for users.

Operations 2

GET /v1/value-proposition/users Get all users for the account of the requesting user #
GET /v1/value-proposition/me Get the authenticated user info #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/decisionlink-users-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

decisionlink-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Value Proposition Users API
  version: 0.1.0
  x-api-evangelist-source: https://api.xfactor.io/v1/value-proposition/openapi.json
servers:
- url: https://api.xfactor.io
  description: Production API host (Auth0 audience of the Xfactor.io web application)
tags:
- name: users
paths:
  /v1/value-proposition/users:
    get:
      tags:
      - users
      summary: Get all users for the account of the requesting user
      description: Endpoint for reading all users for the account of the requesting user
      operationId: get_users_v1_value_proposition_users_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/User'
                type: array
                title: Response Get Users V1 Value Proposition Users Get
      security:
      - HTTPBearer: []
  /v1/value-proposition/me:
    get:
      tags:
      - users
      summary: Get the authenticated user info
      description: Endpoint for reading basic info of the currently authenticated user
      operationId: get_current_user_v1_value_proposition_me_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CurrentUser'
      security:
      - HTTPBearer: []
components:
  schemas:
    User:
      properties:
        id:
          type: integer
          title: Id
          description: Unique identifier for the user
        email:
          type: string
          title: Email
          description: Email address of the user
        first_name:
          type: string
          title: First Name
          description: First name of the user
        last_name:
          type: string
          title: Last Name
          description: Last name of the user
      type: object
      required:
      - id
      - email
      - first_name
      - last_name
      title: User
      description: User Response Model
    CurrentUser:
      properties:
        id:
          type: integer
          title: Id
          description: Internal value_user_id of the authenticated user
        email:
          type: string
          title: Email
          description: Email of the authenticated user
        name:
          type: string
          title: Name
          description: Full name of the authenticated user
        account_id:
          type: integer
          title: Account Id
          description: Account id of the authenticated user
        language_type_id:
          type: integer
          title: Language Type Id
          description: Language preference id of the authenticated user
      type: object
      required:
      - id
      - email
      - name
      - account_id
      - language_type_id
      title: CurrentUser
      description: Authenticated user response model
  securitySchemes:
    HTTPBearer:
      type: http
      description: Access token in the form of a JWT
      scheme: bearer