> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hybridbox.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Checkoutresultaat ophalen

> Retourneert een lichte checkoutresultaat-payload voor succes- of annuleringspagina's van de website.

<script src="/locale-bridge.js" />


## OpenAPI

````yaml /openapi.nl.json GET /v1/public/accounts/{account_id}/billing/checkout/result
openapi: 3.1.0
info:
  title: Code API (Public)
  version: 1.0.0
servers:
  - url: https://api.hybridbox.io
security: []
paths:
  /v1/public/accounts/{account_id}/billing/checkout/result:
    get:
      tags:
        - public-accounts
      summary: Checkoutresultaat ophalen
      description: >-
        Retourneert een lichte checkoutresultaat-payload voor succes- of
        annuleringspagina's van de website.
      operationId: >-
        get_checkout_result_v1_public_accounts__account_id__billing_checkout_result_get
      parameters:
        - in: path
          name: account_id
          required: true
          schema:
            format: uuid
            title: Account Id
            type: string
        - in: query
          name: plan_key
          required: true
          schema:
            title: Plan Key
            type: string
        - in: query
          name: checkout_token
          required: true
          schema:
            title: Checkout Token
            type: string
        - in: query
          name: hosted_page_id
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Hosted Page Id
        - in: query
          name: status_hint
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Status Hint
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CheckoutResultResponse'
          description: ''
        '422':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
          description: Validatiefout
components:
  schemas:
    CheckoutResultResponse:
      properties:
        account:
          $ref: '#/components/schemas/AccountSummaryResponse'
          description: Overzicht van afrekenaccount
        auth_required_for_dashboard:
          anyOf:
            - type: boolean
            - type: 'null'
          description: Of dashboardtoegang authenticatie vereist
          title: Authenticatie vereist voor dashboard
        checkout_token:
          description: Token voor vervolgafhandeling bij het afrekenen
          title: Checkouttoken
          type: string
        dashboard_url:
          anyOf:
            - type: string
            - type: 'null'
          description: Dashboard-URL voor het account
          title: Dashboard-URL
        message:
          description: Afrekenresultaatbericht
          title: Bericht
          type: string
        plan_key:
          description: Geselecteerde factuurplansleutel
          enum:
            - smtp_per_mailbox
            - smtp_per_proxy
          title: Plansleutel
          type: string
        status:
          description: Status van afrekenresultaten
          title: Status
          type: string
      required:
        - plan_key
        - status
        - message
        - account
        - checkout_token
      title: CheckoutResultResponse
      type: object
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          title: Detail
          type: array
      title: HTTPValidationError
      type: object
    AccountSummaryResponse:
      description: Veilige accountsamenvatting die aan de website wordt geretourneerd.
      properties:
        account_id:
          description: Rekening UUID
          title: Account-id
          type: string
        chargebee_subscription_status:
          anyOf:
            - type: string
            - type: 'null'
          description: Chargebee abonnementsstatus
          title: Chargebee-abonnementsstatus
        currency:
          description: Factureringsvalutacode
          title: Valuta
          type: string
      required:
        - account_id
        - currency
      title: AccountSummaryResponse
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          title: Locatie
          type: array
        msg:
          title: Bericht
          type: string
        type:
          title: Fouttype
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
      type: object

````