WorkRamp Instant Auth API

The Instant Auth API from WorkRamp — 1 operation(s) for instant auth.

Operations 1

POST /api/v1/instant_auth Instant Auth #

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/workramp-instant-auth-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

workramp-instant-auth-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: json-api Instant Auth API
  version: '1.0'
servers:
- url: https://app.workramp.com
security:
- sec0: []
tags:
- name: Instant Auth
paths:
  /api/v1/instant_auth:
    post:
      summary: Instant Auth
      description: Create instant login URLs for your employees
      operationId: elc-instant-auth
      parameters:
      - name: Content-Type
        in: header
        description: application/json
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              required:
              - email
              properties:
                email:
                  type: string
                  description: Email address of the user
                redirect_to:
                  type: string
                  description: A relative WorkRamp URL to redirect the user to after login
                name:
                  type: string
                  description: Full name of the user
                isAdmin:
                  type: boolean
                  description: Is the user an admin?
                  default: false
                isManager:
                  type: boolean
                  description: Is the user a manager?
                  default: false
                customAttributes:
                  type: object
                  description: A mapping of api_name->value for custom attributes to set for the user
                  properties:
                    key:
                      type: string
                      description: API key for this custom attribute
                    value:
                      type: string
                      description: Value to set this custom attribute to
                groups:
                  type: array
                  description: IDs of groups that the user should be added to
                  items:
                    type: integer
                    format: int32
                managers:
                  type: array
                  description: IDs of managers that the user should be managed by
                  items:
                    type: integer
                    format: int32
                managerEmails:
                  type: array
                  description: Email addresses of managers that the user should be managed by (managers takes precedence)
                  items:
                    type: string
                managerNames:
                  type: array
                  description: Names of managers that the user should be managed by (managers and manager_emails take precedence)
                  items:
                    type: string
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value: "{\n  \"url\": \"https://random-example.app.workramp.com/instant-login/1234567890abcdef\"\n}"
              schema:
                type: object
                properties:
                  url:
                    type: string
                    example: https://random-example.app.workramp.com/instant-login/1234567890abcdef
        '400':
          description: '400'
          content:
            application/json:
              examples:
                Result:
                  value: '{}'
              schema:
                type: object
                properties: {}
      deprecated: false
      tags:
      - Instant Auth
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: header
      name: Authorization
      x-bearer-format: bearer
      x-default: ACCESS_TOKEN
x-readme:
  headers: []
  explorer-enabled: false
  proxy-enabled: false
x-readme-fauxas: true