Accredify Organization Roles API

The Organization Roles API from Accredify — 1 operation(s) for organization roles.

Operations 1

GET /api/v1/organization/roles Get organization 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/accredify0604-organization-roles-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

accredify0604-organization-roles-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Auth Module Organization Roles API
  version: '1.0'
  description: Auth module endpoints
  contact:
    name: Accredify
    url: https://accredify.io
    email: support@accredify.io
  termsOfService: https://www.accredify.io/legal
servers:
- url: https://nexus.staging.accredify.io
  description: Staging
- url: https://nexus.uat.accredify.io
  description: UAT
- url: https://nexus.accredify.io
  description: Production
tags:
- name: Organization Roles
paths:
  /api/v1/organization/roles:
    get:
      summary: Get organization roles
      description: Retrieve available organization roles for role mapping and user-token management flows
      tags:
      - Organization Roles
      security:
      - OAuth2:
        - roles:read
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Role'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      operationId: getApiV1OrganizationRoles
      x-operation-id-source: derived
components:
  schemas:
    Role:
      type: object
      description: Organization role object
      required:
      - uuid
      - name
      - description
      - is_system_role
      properties:
        uuid:
          type: string
          format: uuid
          description: Unique identifier for the role
        name:
          type: string
          description: Display name of the role
        description:
          type:
          - string
          - 'null'
          description: Description of the role
        is_system_role:
          type: boolean
          description: Whether this role is a predefined system role
  securitySchemes:
    OAuth2:
      type: oauth2
      description: OAuth2 client credentials flow
      flows:
        clientCredentials:
          tokenUrl: /oauth/token
          scopes:
            run-workflow: Ability to run a specific workflow
            webcomponent-verification: Ability to get the verification access from webcomponent
            verification-suite: Ability to access the verification suite APIs
            workflows:read: Ability to read workflows
            workflows:write: Ability to write workflows
            workflow-runs:read: Ability to read workflow runs
            documents:read: Ability to read documents
            documents:write: Ability to write documents
            custom-views:read: Ability to read custom views
            users:read: Ability to read users
            users:write: Ability to write users
            design-templates:read: Ability to read design templates
            document-templates:read: Ability to read document templates
            groups:read: Ability to read groups
            groups:write: Ability to write groups
            courses:read: Ability to read courses
            courses:write: Ability to write courses
            roles:read: Ability to read roles
            user-tokens:read: Ability to read user tokens
            user-tokens:write: Ability to write user tokens