Edge Delta Group Members API

The Group Members API from Edge Delta — 2 operation(s) for group members.

Operations 3

GET /v1/orgs/{org_id}/group_member
POST /v1/orgs/{org_id}/group_member
DELETE /v1/orgs/{org_id}/group_member/{group_member_id}

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-group-members-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

edge-delta-group-members-api-openapi.yml Raw ↑
openapi: 3.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 Group Members API
  contact:
    name: API Support
    email: support@edgedelta.com
  version: '1.0'
servers:
- url: https://api.edgedelta.com
tags:
- name: Group Members
paths:
  /v1/orgs/{org_id}/group_member:
    get:
      security:
      - ApiKeyAuth: []
      description: Return org's group memberships
      tags:
      - Group Members
      parameters:
      - description: Org ID
        name: org_id
        in: path
        required: true
        schema:
          type: string
      - description: User ID (particularly email)
        name: user_id
        in: query
        schema:
          type: string
      - description: Group ID
        name: group_id
        in: query
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/core.GroupMember'
    post:
      security:
      - ApiKeyAuth: []
      description: Creates a new user & group relationship from the json content passed in body
      tags:
      - Group Members
      parameters:
      - description: Org ID
        name: org_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/core.GroupMember'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/core.GroupMemberRequest'
        description: Group Member Create Request
        required: true
  /v1/orgs/{org_id}/group_member/{group_member_id}:
    delete:
      security:
      - ApiKeyAuth: []
      description: Deletes the group member with given id
      tags:
      - Group Members
      parameters:
      - description: Org ID
        name: org_id
        in: path
        required: true
        schema:
          type: string
      - description: Group Member ID
        name: group_member_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
components:
  schemas:
    core.GroupMember:
      type: object
      properties:
        created:
          type: string
        groupID:
          type: string
        id:
          type: string
        orgID:
          type: string
        updated:
          type: string
        updater:
          type: string
        userID:
          type: string
    core.GroupMemberRequest:
      type: object
      properties:
        group_id:
          type: string
        user_id:
          type: string
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      name: X-ED-API-Token
      in: header