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

# Get presentation by ID (/v3/presentations/{id})

> Returns the lean presentation resource. For the live picker view (available credentials, current selection, attribute disclosure), see `GET /v3/presentations/{id}/picker`.



## OpenAPI

````yaml products/didx-me/api-reference/v1/me-wallet.json get /v3/presentations/{id}
openapi: 3.0.0
info:
  version: 1.0.0
  title: Me Wallet API
  description: >2-

          
    OpenAPI documentation for Me Wallet API

          
    Following JSON:API spec https://jsonapi.org/format/ approach to response
    payload format.


    **v1 endpoints are deprecated.** See the [Migration Guide (v1 to
    v2)](migration-guide) for details.

          
     - [JSON - OpenAPI Specification](/me-wallet/api/openapi.json)
servers:
  - url: https://test.didxtech.com/me-wallet/api
security:
  - bearerAuth: []
tags:
  - name: users
    description: User info
  - name: tenants
    description: Tenant management
  - name: credentials
    description: User credential management
  - name: presentations
    description: Presentation management
  - name: org-credentials
    description: Organization endpoints — credential issuance
  - name: org-presentations
    description: Organization endpoints — presentation requests
paths:
  /v3/presentations/{id}:
    get:
      tags:
        - presentations
      summary: Get presentation by ID.
      description: >-
        Returns the lean presentation resource. For the live picker view
        (available credentials, current selection, attribute disclosure), see
        `GET /v3/presentations/{id}/picker`.
      parameters:
        - schema:
            type: string
          required: true
          name: id
          in: path
      responses:
        '200':
          description: Presentation resource.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PresentationV3ApiResponse'
components:
  schemas:
    PresentationV3ApiResponse:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/PresentationV3Dto'
        links:
          $ref: '#/components/schemas/ApiLinks'
        meta:
          $ref: '#/components/schemas/ApiMeta'
        errors:
          type: array
          items:
            $ref: '#/components/schemas/ApiError'
      required:
        - data
    PresentationV3Dto:
      type: object
      properties:
        id:
          type: string
          format: uuid
          description: >-
            Unique identifier for the presentation. Also identifies its picker
            subresource (`/presentations/{id}/picker`).
          example: 123e4567-e89b-12d3-a456-426614174000
        tenantId:
          type: string
          format: uuid
          description: ID of the wallet tenant that owns this presentation.
          example: 987fcdeb-51a2-43f8-b456-142789abcdef
        status:
          type: string
          enum:
            - pending
            - approved
            - rejected
          description: >-
            Lifecycle state: `pending` — awaiting the holder's decision;
            `approved` — the selected credentials were shared with the verifier;
            `rejected` — the holder declined, nothing was shared.
          example: pending
        createdAt:
          type: string
          format: date-time
          description: Timestamp when the presentation was created.
        updatedAt:
          type: string
          format: date-time
          description: Timestamp when the presentation was last updated.
        verifierName:
          type: string
          description: Display name the verifier provided for itself.
          example: exampleOrg-me-creds
        verifier:
          allOf:
            - $ref: '#/components/schemas/VerifierInfoDto'
            - description: >-
                Cryptographic identity of the verifier — either a DID or an x509
                certificate chain (leaf certificate first). Null when the
                verifier did not cryptographically sign the presentation
                request.
        trust:
          allOf:
            - $ref: '#/components/schemas/TrustSignalDto'
            - description: >-
                Result of evaluating the verifier against the trust registry
                (trusted / untrusted / check_failed). Absent when no trust check
                was performed for this request.
      required:
        - id
        - tenantId
        - status
        - createdAt
        - updatedAt
        - verifier
      description: >-
        The lean presentation resource: lifecycle state and verifier identity.
        Everything about choosing credentials — what the verifier asks for, what
        the wallet can offer, what the holder picked — lives on the picker
        subresource (`GET /presentations/{id}/picker`).
    ApiLinks:
      type: object
      properties:
        self:
          type: string
          format: uri
        first:
          type: string
          format: uri
        last:
          type: string
          format: uri
        prev:
          type: string
          format: uri
        next:
          type: string
          format: uri
        related:
          type: string
          format: uri
    ApiMeta:
      type: object
      additionalProperties:
        nullable: true
    ApiError:
      type: object
      properties:
        id:
          type: string
        status:
          type: string
        code:
          type: string
        title:
          type: string
        detail:
          type: string
        source:
          type: object
          properties:
            pointer:
              type: string
            parameter:
              type: string
        meta:
          type: object
          additionalProperties:
            nullable: true
      required:
        - detail
    VerifierInfoDto:
      oneOf:
        - type: object
          properties:
            type:
              type: string
              enum:
                - did
            did:
              type: string
          required:
            - type
            - did
        - type: object
          properties:
            type:
              type: string
              enum:
                - x509
            certificateChain:
              type: array
              items:
                type: string
          required:
            - type
            - certificateChain
        - nullable: true
      description: >-
        Structured verifier identity — DID or x509 certificate chain (leaf
        first). Null when the authorization request was unsigned.
      example:
        type: did
        did: did:web:test.didxtech.com:metadata:example-project
    TrustSignalDto:
      oneOf:
        - type: object
          properties:
            status:
              type: string
              enum:
                - trusted
            sourceId:
              type: string
            category:
              type: string
            subject:
              type: string
            issuingCa:
              type: object
              properties:
                id:
                  type: string
                sha256ThumbprintBase64Url:
                  type: string
              required:
                - id
                - sha256ThumbprintBase64Url
            entity:
              type: object
              properties:
                entityId:
                  type: string
                legalName:
                  type: string
                sector:
                  type: string
              required:
                - entityId
                - legalName
                - sector
            service:
              type: object
              properties:
                serviceId:
                  type: string
                role:
                  type: string
                status:
                  type: string
              required:
                - serviceId
                - role
                - status
          required:
            - status
            - sourceId
            - category
            - subject
            - issuingCa
            - entity
            - service
        - type: object
          properties:
            status:
              type: string
              enum:
                - untrusted
            subject:
              type: string
            failedAt:
              type: string
              enum:
                - parse
                - expired
                - not-yet-valid
                - chain-incomplete
                - invalid-basic-constraints
                - invalid-key-usage
                - unknown-critical-extension
                - not-registered
            error:
              type: string
          required:
            - status
        - type: object
          properties:
            status:
              type: string
              enum:
                - check_failed
            error:
              type: string
          required:
            - status
            - error
      description: >-
        Trust signal captured at receive time when the issuer/verifier presented
        an x509 certificate. Absent for DID-based identities or pre-feature
        rows.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````