DecisionLink Solutions API

The solutions API from DecisionLink — 3 operation(s) for solutions.

Operations 4

POST /v1/value-proposition/{valuePropId}/solutions Post selected solutions #
GET /v1/value-proposition/{valuePropId}/solutions Get the solutions for a Value Proposition #
GET /v1/value-proposition/{valuePropId}/solution-categories Get the solutions for a Value Proposition #
GET /v1/value-proposition/available-solutions Get available solutions #

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-solutions-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-solutions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Value Proposition Solutions 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: solutions
paths:
  /v1/value-proposition/{valuePropId}/solutions:
    post:
      tags:
      - solutions
      summary: Post selected solutions
      description: 'Passthrough endpoint to submit the selected solutions.


        This endpoint forwards the selection to the Concierge API.'
      operationId: select_solutions_v1_value_proposition__valuePropId__solutions_post
      security:
      - HTTPBearer: []
      parameters:
      - name: valuePropId
        in: path
        required: true
        schema:
          type: integer
          title: Valuepropid
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SolutionSelection'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/value_proposition__solutions__models__Solution'
                title: Response Select Solutions V1 Value Proposition  Valuepropid  Solutions Post
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    get:
      tags:
      - solutions
      summary: Get the solutions for a Value Proposition
      description: Endpoint to return all the solutions for the value prop.
      operationId: get_solutions_v1_value_proposition__valuePropId__solutions_get
      security:
      - HTTPBearer: []
      parameters:
      - name: valuePropId
        in: path
        required: true
        schema:
          type: integer
          title: Valuepropid
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/value_proposition__solutions__models__Solution'
                title: Response Get Solutions V1 Value Proposition  Valuepropid  Solutions Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v1/value-proposition/{valuePropId}/solution-categories:
    get:
      tags:
      - solutions
      summary: Get the solutions for a Value Proposition
      description: Retrieve all solution categories
      operationId: get_solution_categories_v1_value_proposition__valuePropId__solution_categories_get
      security:
      - HTTPBearer: []
      parameters:
      - name: valuePropId
        in: path
        required: true
        schema:
          type: integer
          title: Valuepropid
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Category'
                title: Response Get Solution Categories V1 Value Proposition  Valuepropid  Solution Categories Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /v1/value-proposition/available-solutions:
    get:
      tags:
      - solutions
      summary: Get available solutions
      description: 'Retrieve all available solutions for the current user.

        When grouped=True, returns solutions grouped by category.

        When grouped=False (default), returns a flat list of solutions.'
      operationId: get_available_solutions_v1_value_proposition_available_solutions_get
      security:
      - HTTPBearer: []
      parameters:
      - name: grouped
        in: query
        required: false
        schema:
          type: boolean
          default: false
          title: Grouped
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                anyOf:
                - type: array
                  items:
                    $ref: '#/components/schemas/Category'
                - type: array
                  items:
                    $ref: '#/components/schemas/CategorySolution'
                title: Response Get Available Solutions V1 Value Proposition Available Solutions Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    value_proposition__solutions__models__Solution:
      properties:
        id:
          type: integer
          title: Id
          description: Solution ID
        value_prop_id:
          type: integer
          title: Value Prop Id
          description: Value Proposition ID
        account_solution_id:
          type: integer
          title: Account Solution Id
          description: Account Solution ID
        quantity:
          type: integer
          title: Quantity
          description: Quantity
        deployment_time:
          type: number
          title: Deployment Time
          description: Deployment Time
        name:
          type: string
          title: Name
          description: Name of the solution
        description:
          type: string
          title: Description
          description: Description of the solution
        quantity_enabled:
          type: integer
          title: Quantity Enabled
          description: Indicates if quantity is enabled
      type: object
      required:
      - id
      - value_prop_id
      - account_solution_id
      - quantity
      - deployment_time
      - name
      - description
      - quantity_enabled
      title: Solution
      description: Solution Model
    CategorySolution:
      properties:
        account_solution_id:
          type: integer
          title: Account Solution Id
          description: Account Solution ID
        account_solution_name:
          type: string
          title: Account Solution Name
          description: Name of the solution
        account_solution_description:
          type: string
          title: Account Solution Description
          description: Account Solution Description
        selected:
          anyOf:
          - type: boolean
          - type: 'null'
          title: Selected
          description: Indicates if the solution is selected
      type: object
      required:
      - account_solution_id
      - account_solution_name
      - account_solution_description
      title: CategorySolution
      description: Solutions grouped by categories
    Category:
      properties:
        category_id:
          type: integer
          title: Category Id
          description: Category ID
        category_name:
          type: string
          title: Category Name
          description: Category Name
        category_description:
          type: string
          title: Category Description
          description: Category Description
        solutions:
          items:
            $ref: '#/components/schemas/CategorySolution'
          type: array
          title: Solutions
          description: List of solutions under this category
      type: object
      required:
      - category_id
      - category_name
      - category_description
      - solutions
      title: Category
      description: Solution Categories
    SolutionSelection:
      properties:
        solutions:
          items:
            type: integer
          type: array
          title: Solutions
          description: List of selected solution IDs
      type: object
      required:
      - solutions
      title: SolutionSelection
      description: SolutionSelection model for submitting selected solutions.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      description: Access token in the form of a JWT
      scheme: bearer