data.world requests - authorization API

Manage authorization requests

Operations 5

POST /requests/auth Create an authorization request #
POST /requests/auth/accept Accept an authorization request #
GET /requests/auth/approver Get authorization requests that can be approved/rejected #
POST /requests/auth/delete Delete an authorization request #
POST /requests/auth/reject Reject an authorization request #

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/data-world-requests-authorization-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

data-world-requests-authorization-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact:
    name: Contact Us
    url: https://data.world/company/contact-us
  termsOfService: https://data.world/terms-policies
  title: data.world Public catalog relationships requests - authorization API
  version: '0'
  description: Manage relationships between catalog resources
servers:
- url: /v0
security:
- bearerAuth: []
tags:
- description: Manage authorization requests
  name: requests - authorization
paths:
  /requests/auth:
    post:
      description: Create a request asking for access against a dataset. A request can ask the resource admin for permission to access a resource. It may also be an invitation from the resource admin to give others access to a resource.
      operationId: createAuthRequest
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AuthRequestCreateDto'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthRequestDto'
          description: default response
      summary: Create an authorization request
      tags:
      - requests - authorization
  /requests/auth/accept:
    post:
      description: Accept an authorization request. This will give the grantee access to the resource. For more details about authorization request, see "Create an authorization request".
      operationId: acceptRequest
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AuthRequestRespondDto'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessMessageDto'
          description: default response
      summary: Accept an authorization request
      tags:
      - requests - authorization
  /requests/auth/approver:
    get:
      description: Get a list of authorization requests that can be approved or rejected by the user. For more details about authorization request, see "Create an authorization request".
      operationId: getForApprover
      parameters:
      - description: Number of results to return
        in: query
        name: limit
        schema:
          type: integer
          format: int32
          default: 10
          maximum: 100
          minimum: 1
      - description: A token supplied by the previous response to retrieve the next page of results
        in: query
        name: next
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedResultsDtoAuthRequestDto'
          description: default response
      summary: Get authorization requests that can be approved/rejected
      tags:
      - requests - authorization
  /requests/auth/delete:
    post:
      description: Delete an authorization request. This will delete the request. The grantee will not receive any access to the resource. For more details about authorization request, see "Create an authorization request".
      operationId: deleteRequest
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AuthRequestRespondDto'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessMessageDto'
          description: default response
      summary: Delete an authorization request
      tags:
      - requests - authorization
  /requests/auth/reject:
    post:
      description: Reject an authorization request. This will delete the request. The grantee will not receive any access to the resource. For more details about authorization request, see "Create an authorization request".
      operationId: rejectRequest
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AuthRequestRespondDto'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessMessageDto'
          description: default response
      summary: Reject an authorization request
      tags:
      - requests - authorization
components:
  schemas:
    PublicUserParty:
      type: object
      properties:
        id:
          type: string
          description: ID of the user
      required:
      - id
      title: User Identifier
    PublicGlossaryResource:
      allOf:
      - $ref: '#/components/schemas/PublicResource'
      - type: object
        properties:
          referent:
            type: string
            description: A glossary referent
          type:
            type: string
            const: GLOSSARY
      required:
      - owner
      - referent
      title: Glossary Metadata Resource
    PublicDatabaseResource:
      allOf:
      - $ref: '#/components/schemas/PublicResource'
      - type: object
        properties:
          referent:
            type: string
            description: A database referent
          type:
            type: string
            const: DATABASE
      required:
      - owner
      - referent
      title: Database Metadata Resource
    PublicParty:
      discriminator:
        mapping:
          GROUP: '#/components/schemas/PublicGroupParty'
          USER: '#/components/schemas/PublicUserParty'
        propertyName: type
      properties:
        type:
          type: string
          enum:
          - USER
          - GROUP
      required:
      - type
    AuthRequestRespondDto:
      type: object
      properties:
        dataset:
          $ref: '#/components/schemas/DatasetIdentifierRequest'
          description: The dataset that this request is for
        requestId:
          type: string
          format: uuid
          description: ID of the request to accept
      required:
      - dataset
      - requestId
    PublicDatasetInsightResource:
      allOf:
      - $ref: '#/components/schemas/PublicResource'
      - type: object
        properties:
          datasetId:
            type: string
            description: ID of a dataset
          insightUuid:
            type: string
            format: uuid
            description: ID of a dataset insight
          type:
            type: string
            const: DATASET_INSIGHT
      required:
      - datasetId
      - insightUuid
      - owner
      title: Dataset Insight Resource
    PublicGroupParty:
      type: object
      allOf:
      - $ref: '#/components/schemas/PublicParty'
      - type: object
        properties:
          id:
            type: string
            description: ID of a group
          owner:
            type: string
            description: ID of an organization that owns the resource
            title: organization id
          type:
            type: string
            const: GROUP
      - $ref: '#/components/schemas/PublicResource'
      required:
      - id
      - owner
      title: Group Identifier
    AuthRequestDto:
      type: object
      properties:
        approverParty:
          $ref: '#/components/schemas/PublicParty'
          description: User designated to approve the request
          oneOf:
          - $ref: '#/components/schemas/PublicUserParty'
          - $ref: '#/components/schemas/PublicGroupParty'
        created:
          type: string
          format: date-time
        granteeParty:
          $ref: '#/components/schemas/PublicParty'
          description: User or group that will be granted access if approved
          oneOf:
          - $ref: '#/components/schemas/PublicUserParty'
          - $ref: '#/components/schemas/PublicGroupParty'
        level:
          type: string
          description: Level of access the grantee will receive
          enum:
          - NONE
          - SAML_GATED
          - DISCOVER
          - MEMBER
          - READ
          - WRITE
          - ADMIN
        requesterParty:
          $ref: '#/components/schemas/PublicParty'
          description: User that initiated the request
          oneOf:
          - $ref: '#/components/schemas/PublicUserParty'
          - $ref: '#/components/schemas/PublicGroupParty'
        requestid:
          type: string
          format: uuid
          description: Unique identifier for the request
        resource:
          $ref: '#/components/schemas/PublicResource'
          description: The resource that grantee will receive access to
          oneOf:
          - $ref: '#/components/schemas/PublicAnalysisResource'
          - $ref: '#/components/schemas/PublicCollectionResource'
          - $ref: '#/components/schemas/PublicColumnResource'
          - $ref: '#/components/schemas/PublicDatabaseResource'
          - $ref: '#/components/schemas/PublicDatasetResource'
          - $ref: '#/components/schemas/PublicDatasetInsightResource'
          - $ref: '#/components/schemas/PublicGlossaryResource'
          - $ref: '#/components/schemas/PublicGroupParty'
          - $ref: '#/components/schemas/PublicMetadataResource'
          - $ref: '#/components/schemas/PublicTableResource'
        updated:
          type: string
          format: date-time
        visibility:
          type: string
          description: Authorization visibility
          enum:
          - PRIVATE
          - PUBLIC
    SuccessMessageDto:
      type: object
      properties:
        message:
          type: string
          maxLength: 256
          minLength: 0
    PublicTableResource:
      allOf:
      - $ref: '#/components/schemas/PublicResource'
      - type: object
        properties:
          referent:
            type: string
            description: Resource referent
          type:
            type: string
            const: TABLE
      required:
      - owner
      - referent
      title: Table Metadata Resource
    PublicCollectionResource:
      allOf:
      - $ref: '#/components/schemas/PublicResource'
      - type: object
        properties:
          referent:
            type: string
            description: A collection referent
          type:
            type: string
            const: CATALOG
      required:
      - owner
      - referent
      title: Collection Metadata Resource
    PublicColumnResource:
      allOf:
      - $ref: '#/components/schemas/PublicResource'
      - type: object
        properties:
          referent:
            type: string
            description: A column referent
          type:
            type: string
            const: COLUMN
      required:
      - owner
      - referent
      title: Column Metadata Resource
    PaginatedResultsDtoAuthRequestDto:
      type: object
      properties:
        consistent:
          type: boolean
        count:
          type: integer
          format: int32
          minimum: 0
        next:
          type: string
        records:
          type: array
          items:
            $ref: '#/components/schemas/AuthRequestDto'
    AuthRequestCreateDto:
      type: object
      properties:
        dataset:
          $ref: '#/components/schemas/DatasetIdentifierRequest'
          description: The dataset that grantee will receive access to
        granteeId:
          type: string
          description: ID of the user that will be granted access
        level:
          type: string
          description: Level of access the grantee will receive
          enum:
          - DISCOVER
          - READ
          - WRITE
          - ADMIN
      required:
      - dataset
      - granteeId
      - level
    PublicAnalysisResource:
      allOf:
      - $ref: '#/components/schemas/PublicResource'
      - type: object
        properties:
          referent:
            type: string
            description: An analysis referent
          type:
            type: string
            const: ANALYSIS
      required:
      - owner
      - referent
      title: Analysis Resource
    PublicMetadataResource:
      allOf:
      - $ref: '#/components/schemas/PublicResource'
      - type: object
        properties:
          referent:
            type: string
            description: A metadata resource referent
          type:
            type: string
            const: METADATA_RESOURCE
      required:
      - owner
      - referent
      title: Metadata Resource
    DatasetIdentifier:
      type: object
      properties:
        id:
          type: string
        owner:
          type: string
      required:
      - id
      - owner
    DatasetIdentifierRequest:
      type: object
      properties:
        id:
          type: string
          description: ID of dataset
        owner:
          type: string
          description: ID of user or organization that owns the dataset
      required:
      - id
      - owner
    PublicDatasetResource:
      type: object
      allOf:
      - $ref: '#/components/schemas/PublicResource'
      - $ref: '#/components/schemas/DatasetIdentifier'
      - type: object
        properties:
          id:
            type: string
            description: ID of a dataset
      required:
      - id
      - owner
      title: Dataset Resource
    PublicResource:
      type: object
      discriminator:
        mapping:
          ANALYSIS: '#/components/schemas/PublicAnalysisResource'
          CATALOG: '#/components/schemas/PublicCollectionResource'
          COLUMN: '#/components/schemas/PublicColumnResource'
          DATABASE: '#/components/schemas/PublicDatabaseResource'
          DATASET: '#/components/schemas/PublicDatasetResource'
          DATASET_INSIGHT: '#/components/schemas/PublicDatasetInsightResource'
          GLOSSARY: '#/components/schemas/PublicGlossaryResource'
          GROUP: '#/components/schemas/PublicGroupParty'
          METADATA_RESOURCE: '#/components/schemas/PublicMetadataResource'
          TABLE: '#/components/schemas/PublicTableResource'
        propertyName: type
      properties:
        owner:
          type: string
          description: ID of an organization that owns the resource
          title: organization id
        type:
          type: string
          enum:
          - ANALYSIS
          - CATALOG
          - COLUMN
          - DATABASE
          - DATASET
          - DATASET_INSIGHT
          - GLOSSARY
          - GROUP
          - METADATA_RESOURCE
          - TABLE
      required:
      - owner
      - type
  securitySchemes:
    bearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http