Ardent v1-orgs API

The v1-orgs API from Ardent — 7 operation(s) for v1-orgs.

Operations 10

DELETE /v1/orgs/{org_id} Delete Org #
GET /v1/orgs/{org_id} Get Org Details #
PATCH /v1/orgs/{org_id} Update Org #
POST /v1/orgs/{org_id}/invite Invite User To Org #
GET /v1/orgs/{org_id}/invites List Pending Invites #
DELETE /v1/orgs/{org_id}/invites/{invite_id} Revoke Invite #
GET /v1/orgs/{org_id}/members List Org Members #
DELETE /v1/orgs/{org_id}/members/{target_user_id} Remove Org Member #
PATCH /v1/orgs/{org_id}/members/{target_user_id} Update Member Role #
GET /v1/orgs/{org_id}/roles List Org Roles #

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/ardent-v1-orgs-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

ardent-v1-orgs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Public Ardent API. Generated by scripts/export_public_openapi.py — do not edit by hand.
  title: Ardent v1-api-keys V1 Orgs API
  version: v1
servers:
- url: https://api.tryardent.com
tags:
- name: v1-orgs
paths:
  /v1/orgs/{org_id}:
    delete:
      operationId: delete_org_v1_orgs__org_id__delete
      parameters:
      - in: path
        name: org_id
        required: true
        schema:
          title: Org Id
          type: string
      responses:
        '204':
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
      - bearerAuth: []
      summary: Delete Org
      tags:
      - v1-orgs
    get:
      operationId: get_org_details_v1_orgs__org_id__get
      parameters:
      - in: path
        name: org_id
        required: true
        schema:
          title: Org Id
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties: true
                title: Response Get Org Details V1 Orgs  Org Id  Get
                type: object
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
      - bearerAuth: []
      summary: Get Org Details
      tags:
      - v1-orgs
    patch:
      operationId: update_org_v1_orgs__org_id__patch
      parameters:
      - in: path
        name: org_id
        required: true
        schema:
          title: Org Id
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateOrgRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema: {}
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
      - bearerAuth: []
      summary: Update Org
      tags:
      - v1-orgs
  /v1/orgs/{org_id}/invite:
    post:
      operationId: invite_user_to_org_v1_orgs__org_id__invite_post
      parameters:
      - in: path
        name: org_id
        required: true
        schema:
          title: Org Id
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/InviteUserRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties: true
                title: Response Invite User To Org V1 Orgs  Org Id  Invite Post
                type: object
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
      - bearerAuth: []
      summary: Invite User To Org
      tags:
      - v1-orgs
  /v1/orgs/{org_id}/invites:
    get:
      operationId: list_pending_invites_v1_orgs__org_id__invites_get
      parameters:
      - in: path
        name: org_id
        required: true
        schema:
          title: Org Id
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  additionalProperties: true
                  type: object
                title: Response List Pending Invites V1 Orgs  Org Id  Invites Get
                type: array
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
      - bearerAuth: []
      summary: List Pending Invites
      tags:
      - v1-orgs
  /v1/orgs/{org_id}/invites/{invite_id}:
    delete:
      operationId: revoke_invite_v1_orgs__org_id__invites__invite_id__delete
      parameters:
      - in: path
        name: org_id
        required: true
        schema:
          title: Org Id
          type: string
      - in: path
        name: invite_id
        required: true
        schema:
          title: Invite Id
          type: string
      responses:
        '204':
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
      - bearerAuth: []
      summary: Revoke Invite
      tags:
      - v1-orgs
  /v1/orgs/{org_id}/members:
    get:
      operationId: list_org_members_v1_orgs__org_id__members_get
      parameters:
      - in: path
        name: org_id
        required: true
        schema:
          title: Org Id
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  additionalProperties: true
                  type: object
                title: Response List Org Members V1 Orgs  Org Id  Members Get
                type: array
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
      - bearerAuth: []
      summary: List Org Members
      tags:
      - v1-orgs
  /v1/orgs/{org_id}/members/{target_user_id}:
    delete:
      operationId: remove_org_member_v1_orgs__org_id__members__target_user_id__delete
      parameters:
      - in: path
        name: org_id
        required: true
        schema:
          title: Org Id
          type: string
      - in: path
        name: target_user_id
        required: true
        schema:
          title: Target User Id
          type: string
      responses:
        '204':
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
      - bearerAuth: []
      summary: Remove Org Member
      tags:
      - v1-orgs
    patch:
      operationId: update_member_role_v1_orgs__org_id__members__target_user_id__patch
      parameters:
      - in: path
        name: org_id
        required: true
        schema:
          title: Org Id
          type: string
      - in: path
        name: target_user_id
        required: true
        schema:
          title: Target User Id
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateMemberRoleRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                additionalProperties: true
                title: Response Update Member Role V1 Orgs  Org Id  Members  Target User Id  Patch
                type: object
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
      - bearerAuth: []
      summary: Update Member Role
      tags:
      - v1-orgs
  /v1/orgs/{org_id}/roles:
    get:
      operationId: list_org_roles_v1_orgs__org_id__roles_get
      parameters:
      - in: path
        name: org_id
        required: true
        schema:
          title: Org Id
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  additionalProperties: true
                  type: object
                title: Response List Org Roles V1 Orgs  Org Id  Roles Get
                type: array
          description: Successful Response
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validation Error
      security:
      - bearerAuth: []
      summary: List Org Roles
      tags:
      - v1-orgs
components:
  schemas:
    UpdateOrgRequest:
      properties:
        name:
          description: New organization name
          maxLength: 100
          minLength: 1
          title: Name
          type: string
      required:
      - name
      title: UpdateOrgRequest
      type: object
    UpdateMemberRoleRequest:
      properties:
        role_key:
          description: New role to assign (owner/admin/member/viewer)
          title: Role Key
          type: string
      required:
      - role_key
      title: UpdateMemberRoleRequest
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    InviteUserRequest:
      properties:
        email:
          description: Email address to invite
          title: Email
          type: string
        role_key:
          default: member
          description: Role to assign (owner/admin/member/viewer)
          title: Role Key
          type: string
      required:
      - email
      title: InviteUserRequest
      type: object
    ValidationError:
      properties:
        ctx:
          title: Context
          type: object
        input:
          title: Input
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          title: Location
          type: array
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
      required:
      - loc
      - msg
      - type
      title: ValidationError
      type: object
  securitySchemes:
    bearerAuth:
      description: Ardent API key (sk-ard_live_… / sk-ard_test_…) or a dashboard session token.
      scheme: bearer
      type: http