Edge Delta Users API

The Users API from Edge Delta — 2 operation(s) for users.

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/edge-delta-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 email required.

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

OpenAPI Specification

edge-delta-users-api-openapi.yml Raw ↑
swagger: '2.0'
info:
  description: 'Edge Delta API provides endpoints to manage your configs/integrations/rehydrations and more. Generate an API token to get started: https://app.edgedelta.com/admin/organization#api-tokens'
  title: Edge Delta Access Users API
  contact:
    name: API Support
    email: support@edgedelta.com
  version: '1.0'
host: api.edgedelta.com
basePath: ''
schemes:
- https
tags:
- name: Users
paths:
  /v1/orgs/{org_id}/invite:
    post:
      security:
      - ApiKeyAuth: []
      description: send invite email to provided user and create necessary access.
      consumes:
      - application/json
      produces:
      - application/json
      tags:
      - Users
      parameters:
      - type: string
        description: Org ID
        name: org_id
        in: path
        required: true
      - description: Invite User Request
        name: request
        in: body
        required: true
        schema:
          $ref: '#/definitions/core.InviteUserRequest'
      responses:
        '200':
          description: OK
  /v1/orgs/{org_id}/users:
    get:
      security:
      - ApiKeyAuth: []
      description: Returns users for the given org.
      consumes:
      - application/json
      produces:
      - application/json
      tags:
      - Users
      parameters:
      - type: string
        description: Org ID
        name: org_id
        in: path
        required: true
      - type: boolean
        description: If set to true response includes external state information from okta
        name: include_external
        in: query
      responses:
        '200':
          description: OK
          schema:
            type: array
            items:
              $ref: '#/definitions/core.SelfAccessWithProfile'
definitions:
  core.SelfAccessWithProfile:
    type: object
    properties:
      accesses:
        type: array
        items:
          $ref: '#/definitions/core.Access'
      approval_status:
        type: string
      company:
        type: string
      created:
        type: string
      creator:
        type: string
      email:
        type: string
      external_activated:
        type: string
      external_id:
        type: string
      external_status:
        type: string
      firstName:
        type: string
      fullName:
        type: string
      group_memberships:
        type: array
        items:
          $ref: '#/definitions/core.SelfAccessGroupMember'
      id:
        type: string
      lastLogin:
        type: string
      lastName:
        type: string
      login:
        description: DEPRECATED on 10-12-22.  Use Email instead.
        type: string
      loginProviders:
        type: array
        items:
          type: string
      mobilePhone:
        description: DEPRECATED on 10-12-22.
        type: string
      oktaGroups:
        type: array
        items:
          type: string
      owner:
        description: E.g. "user:user@email.com"
        type: string
      phoneNumber:
        description: DEPRECATED on 10-12-22.
        type: string
      resource:
        description: E.g. "org:<uuid>" or "org:*" for support acccess permission
        type: string
      secondEmail:
        description: DEPRECATED on 10-12-22.  Use Email instead.
        type: string
      supportUser:
        type: boolean
      type:
        description: E.g. "read" or "write"
        type: string
      updated:
        type: string
      updater:
        type: string
  core.Access:
    type: object
    properties:
      approval_status:
        type: string
      created:
        type: string
      creator:
        type: string
      external_activated:
        type: string
      external_id:
        type: string
      external_status:
        type: string
      id:
        type: string
      owner:
        description: E.g. "user:user@email.com"
        type: string
      resource:
        description: E.g. "org:<uuid>" or "org:*" for support acccess permission
        type: string
      type:
        description: E.g. "read" or "write"
        type: string
      updated:
        type: string
      updater:
        type: string
  core.SelfAccessGroupMember:
    type: object
    properties:
      accesses:
        type: array
        items:
          $ref: '#/definitions/core.Access'
      group_member_id:
        type: string
      id:
        type: string
      name:
        type: string
  core.InviteUserRequest:
    type: object
    properties:
      Company:
        type: string
      Email:
        type: string
      FirstName:
        type: string
      Groups:
        type: array
        items:
          type: string
      LastName:
        type: string
securityDefinitions:
  ApiKeyAuth:
    type: apiKey
    name: X-ED-API-Token
    in: header