---
title: "AccessRequest"
url: "https://real-estate-agency.apim.eu/apis/access-requests/versions/85552175-ec5d-4510-b24d-c293a66d9945/schemas/AccessRequest"
---

> Full API specification: https://real-estate-agency.apim.eu/apis/access-requests/versions/85552175-ec5d-4510-b24d-c293a66d9945.md

# AccessRequest

## OpenAPI definition

```yaml
openapi: 3.0.3
info:
  title: Access & Onboarding Requests
  version: 1.0.0
servers:
  - url: https://api.nexora.example/v1
    description: Production
  - url: https://sandbox.api.nexora.example/v1
    description: Sandbox
components:
  schemas:
    AccessRequestInput:
      type: object
      required:
        - requester_last_name
        - email
        - consent
      properties:
        requester_first_name:
          type: string
          example: Anna
        requester_last_name:
          type: string
          example: Bergmann
        email:
          type: string
          format: email
          example: a.bergmann@nexora.example
        business_unit:
          type: string
          example: Revenue Operations
        consent:
          $ref: "#/components/schemas/Consent"
        requested_capability_profile:
          $ref: "#/components/schemas/CapabilityProfile"
    RequestStatus:
      type: string
      enum:
        - new
        - scored
        - invited
        - declined
        - closed
      example: scored
    Consent:
      type: object
      description: Record of consent under applicable data protection policy.
      required:
        - purpose
        - granted_at
      properties:
        purpose:
          type: string
          enum:
            - access_grant
            - product_updates
        granted_at:
          type: string
          format: date-time
          example: 2026-08-18T10:22:00Z
        revoked_at:
          type: string
          format: date-time
          nullable: true
          example: null
    CapabilityProfile:
      type: object
      properties:
        agent_categories:
          type: array
          items:
            type: string
            enum:
              - copilot
              - autonomous-agent
              - workflow-agent
              - rag-assistant
              - voice-agent
        business_units:
          type: array
          items:
            type: string
            example: Revenue Operations
        min_integration_count:
          type: number
          format: float
          example: 3
        min_tool_count:
          type: number
          format: float
          example: 2
        max_cost_per_1k_tokens_usd:
          type: number
          format: float
          example: 0.02
        max_monthly_budget_usd:
          type: integer
          example: 4000
        requires_compliance_certification:
          type: boolean
          example: true
    AccessRequest:
      allOf:
        - $ref: "#/components/schemas/AccessRequestInput"
        - type: object
          properties:
            id:
              type: string
              example: req_71ab
            status:
              $ref: "#/components/schemas/RequestStatus"
            retention_until:
              type: string
              format: date
              description: Automatically set deletion deadline. Anonymized after it passes.
              example: 2027-02-18
            created_at:
              type: string
              format: date-time
              example: 2026-08-18T10:22:04Z
```
