Company logoTrust Center Documentation
API v1 ReferenceSubprocessorsId

Get subprocessor

Fetch a specific subprocessor for the current tenant.

GET
/api/v1/subprocessors/{id}

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

id*string

Subprocessor ID

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://app.orbiqhq.com/api/v1/subprocessors/vendor-123"
{
  "success": true,
  "data": {
    "id": "vendor-123",
    "title": "Acme Cloud Hosting",
    "location": "eu-west-1 (Ireland)",
    "type": "required",
    "featured": true,
    "description": "Core infrastructure provider",
    "description_markdown": "- Ingests application metrics\n- Retains logs for 30 days\n",
    "badge": "https://directus.example.com/assets/vendor-badge",
    "template": "template-001",
    "date_created": "2025-03-01T10:05:00.000Z",
    "date_updated": "2025-04-12T08:30:00.000Z"
  }
}
{
  "error": "unauthorized",
  "details": "Missing or invalid bearer token"
}
{
  "error": "not_found",
  "details": "Subprocessor with id 'vendor-123' not found"
}
{
  "error": "server_error",
  "details": "Unexpected error occurred"
}

How is this guide?