data.world serviceaccount API

The serviceaccount API from data.world — 3 operation(s) for serviceaccount.

Operations 5

GET /serviceaccount/{owner} Gets all service accounts by owner. #
POST /serviceaccount/{owner} Create a new service account. #
DELETE /serviceaccount/{serviceAccount} Delete service account #
PATCH /serviceaccount/{serviceAccount} Update service account #
POST /serviceaccount/{serviceAccount}/refresh Refresh service account token #

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-serviceaccount-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-serviceaccount-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 Serviceaccount API
  version: '0'
  description: Manage relationships between catalog resources
servers:
- url: /v0
security:
- bearerAuth: []
tags:
- name: serviceaccount
paths:
  /serviceaccount/{owner}:
    get:
      operationId: getServiceAccounts
      parameters:
      - in: path
        name: owner
        required: true
        schema:
          type: string
      - in: query
        name: limit
        schema:
          type: integer
          format: int32
          default: 10
          maximum: 50
          minimum: 1
      - in: query
        name: next
        schema:
          type: string
      - in: query
        name: sort
        schema:
          type: array
          items:
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PaginatedServiceAccountDetails'
          description: default response
      summary: Gets all service accounts by owner.
      tags:
      - serviceaccount
    post:
      operationId: createServiceAccount
      parameters:
      - in: path
        name: owner
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ServiceAccountCreateRequestDto'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceAccountCreateResponseDto'
          description: default response
      summary: Create a new service account.
      tags:
      - serviceaccount
  /serviceaccount/{serviceAccount}:
    delete:
      operationId: deleteServiceAccount
      parameters:
      - in: path
        name: serviceAccount
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessMessage'
          description: default response
      summary: Delete service account
      tags:
      - serviceaccount
    patch:
      operationId: updateServiceAccount
      parameters:
      - in: path
        name: serviceAccount
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ServiceAccountUpdateDto'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SuccessMessage'
          description: default response
      summary: Update service account
      tags:
      - serviceaccount
  /serviceaccount/{serviceAccount}/refresh:
    post:
      operationId: refreshServiceAccountToken
      parameters:
      - in: path
        name: serviceAccount
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ServiceAccountRefreshTokenRequestDto'
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServiceAccountCreateResponseDto'
          description: default response
      summary: Refresh service account token
      tags:
      - serviceaccount
components:
  schemas:
    ServiceAccountDetailsDto:
      type: object
      properties:
        active:
          type: boolean
          description: Indicate service account token enabled or disabled
        displayName:
          type: string
          description: Human-readable service account name
        expiryDate:
          type: string
          format: date-time
          description: Service account token expiry date
        serviceAccount:
          type: string
          description: Agentid or username
    PaginatedServiceAccountDetails:
      type: object
      properties:
        count:
          type: integer
          format: int32
          minimum: 0
        nextPageToken:
          type: string
        records:
          type: array
          items:
            $ref: '#/components/schemas/ServiceAccountDetailsDto'
      required:
      - count
      - records
    SuccessMessage:
      type: object
      properties:
        message:
          type: string
          maxLength: 256
          minLength: 0
    ServiceAccountRefreshTokenRequestDto:
      type: object
      properties:
        expiryDate:
          type: string
          format: date-time
    ServiceAccountCreateRequestDto:
      type: object
      properties:
        desiredUsername:
          type: string
          description: Used to create service account user name
        displayName:
          type: string
          description: Display name to show in UI
        expiryDate:
          type: string
          format: date-time
        isScimEnabled:
          type: boolean
          writeOnly: true
        scimEnabled:
          type: boolean
    ServiceAccountUpdateDto:
      type: object
      properties:
        active:
          type: boolean
        displayName:
          type: string
      required:
      - active
    ServiceAccountCreateResponseDto:
      type: object
      properties:
        active:
          type: string
        serviceAccountUsername:
          type: string
        token:
          type: string
  securitySchemes:
    bearerAuth:
      bearerFormat: JWT
      scheme: bearer
      type: http