ADRO Deletion Executions API

The deletion-executions API from ADRO — 1 operation(s) for deletion-executions.

Operations 1

GET /deletion-executions/{execution_uid}/ 영구 삭제 실행 상태 조회 #

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/adro1b33-deletion-executions-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

adro1b33-deletion-executions-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: aox-django-backend Deletion Executions API
  version: 1.0.0
tags:
- name: deletion-executions
paths:
  /deletion-executions/{execution_uid}/:
    get:
      operationId: deletion_executions_retrieve
      description: Return safe progress to a member of the execution's actual Team only.
      summary: 영구 삭제 실행 상태 조회
      parameters:
      - in: path
        name: execution_uid
        schema:
          type: string
          format: uuid
        required: true
      tags:
      - deletion-executions
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeletionExecutionStatus'
          description: ''
components:
  schemas:
    DeletionExecutionStatus:
      type: object
      description: Team-safe execution progress. Storage targets and errors stay private.
      properties:
        executionId:
          type: string
          format: uuid
          readOnly: true
        resourceType:
          type: string
          readOnly: true
        resourceUid:
          type: string
          readOnly: true
        status:
          enum:
          - scheduled
          - pending
          - running
          - retry
          - blocked
          - succeeded
          - failed
          - cancelled
          type: string
          description: '* `scheduled` - Scheduled

            * `pending` - Pending

            * `running` - Running

            * `retry` - Retry

            * `blocked` - Blocked for manual review

            * `succeeded` - Succeeded

            * `failed` - Failed

            * `cancelled` - Cancelled'
          x-spec-enum-id: 2ff34784721dc0e0
          readOnly: true
        phase:
          enum:
          - s3_purge
          - db_finalize
          type: string
          description: '* `s3_purge` - S3 purge

            * `db_finalize` - Database finalization'
          x-spec-enum-id: eb377700a0ac201c
          readOnly: true
        scheduledFor:
          type: string
          format: date-time
          readOnly: true
        claimedAt:
          type:
          - string
          - 'null'
          format: date-time
          readOnly: true
        nextRetryAt:
          type:
          - string
          - 'null'
          format: date-time
          readOnly: true
        completedAt:
          type:
          - string
          - 'null'
          format: date-time
          readOnly: true
        deletedObjectCount:
          type: integer
          readOnly: true
        deletedVersionCount:
          type: integer
          readOnly: true
        deletedBytes:
          type: integer
          readOnly: true
        isTerminal:
          type: string
          readOnly: true
      required:
      - claimedAt
      - completedAt
      - deletedBytes
      - deletedObjectCount
      - deletedVersionCount
      - executionId
      - isTerminal
      - nextRetryAt
      - phase
      - resourceType
      - resourceUid
      - scheduledFor
      - status