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

# List evidence for a transaction



## OpenAPI

````yaml /openapi/transactions.json post /transactions/{transactionId}/evidence/list
openapi: 3.1.1
info:
  title: ARTU Compliance API
  version: 1.0.0
  description: 'API for compliance management. Documentation: https://docs.artu.ai'
servers:
  - url: https://api.artu.ai
security:
  - bearerAuth: []
    environmentHeader: []
paths:
  /transactions/{transactionId}/evidence/list:
    post:
      tags:
        - Transactions
      summary: List evidence for a transaction
      operationId: transactions.listEvidence
      parameters:
        - name: transactionId
          in: path
          required: true
          schema:
            type: string
            format: uuid
      requestBody:
        required: false
        content:
          application/json:
            schema:
              type: object
              properties:
                filter:
                  type: object
                  properties:
                    id:
                      anyOf:
                        - type: string
                          format: uuid
                        - type: object
                          properties:
                            eq:
                              type: string
                              format: uuid
                            in:
                              type: array
                              items:
                                type: string
                                format: uuid
                            nin:
                              type: array
                              items:
                                type: string
                                format: uuid
                      description: ID
                    category:
                      anyOf:
                        - enum:
                            - invoice
                            - receipt
                            - bank_statement
                            - proof_of_payment
                            - contract
                            - shipping
                            - other
                          type: string
                        - type: object
                          properties:
                            eq:
                              enum:
                                - invoice
                                - receipt
                                - bank_statement
                                - proof_of_payment
                                - contract
                                - shipping
                                - other
                              type: string
                            in:
                              type: array
                              items:
                                enum:
                                  - invoice
                                  - receipt
                                  - bank_statement
                                  - proof_of_payment
                                  - contract
                                  - shipping
                                  - other
                                type: string
                            nin:
                              type: array
                              items:
                                enum:
                                  - invoice
                                  - receipt
                                  - bank_statement
                                  - proof_of_payment
                                  - contract
                                  - shipping
                                  - other
                                type: string
                      description: Category
                    type:
                      anyOf:
                        - type: string
                        - type: object
                          properties:
                            eq:
                              type: string
                            contains:
                              type: string
                            startsWith:
                              type: string
                            endsWith:
                              type: string
                            in:
                              type: array
                              items:
                                type: string
                            nin:
                              type: array
                              items:
                                type: string
                      description: Type
                    status:
                      anyOf:
                        - enum:
                            - pending_upload
                            - uploaded
                            - pending_review
                            - processing
                            - verified
                            - rejected
                            - expired
                            - no_file
                          type: string
                        - type: object
                          properties:
                            eq:
                              enum:
                                - pending_upload
                                - uploaded
                                - pending_review
                                - processing
                                - verified
                                - rejected
                                - expired
                                - no_file
                              type: string
                            in:
                              type: array
                              items:
                                enum:
                                  - pending_upload
                                  - uploaded
                                  - pending_review
                                  - processing
                                  - verified
                                  - rejected
                                  - expired
                                  - no_file
                                type: string
                            nin:
                              type: array
                              items:
                                enum:
                                  - pending_upload
                                  - uploaded
                                  - pending_review
                                  - processing
                                  - verified
                                  - rejected
                                  - expired
                                  - no_file
                                type: string
                      description: Status
                    externalId:
                      anyOf:
                        - type: string
                        - type: object
                          properties:
                            eq:
                              type: string
                            contains:
                              type: string
                            startsWith:
                              type: string
                            endsWith:
                              type: string
                            in:
                              type: array
                              items:
                                type: string
                            nin:
                              type: array
                              items:
                                type: string
                      description: External ID
                    expiresAt:
                      anyOf:
                        - type: string
                          format: date-time
                        - type: object
                          properties:
                            eq:
                              type: string
                              format: date-time
                            gt:
                              type: string
                              format: date-time
                            gte:
                              type: string
                              format: date-time
                            lt:
                              type: string
                              format: date-time
                            lte:
                              type: string
                              format: date-time
                      description: Expires At
                    createdAt:
                      anyOf:
                        - type: string
                          format: date-time
                        - type: object
                          properties:
                            eq:
                              type: string
                              format: date-time
                            gt:
                              type: string
                              format: date-time
                            gte:
                              type: string
                              format: date-time
                            lt:
                              type: string
                              format: date-time
                            lte:
                              type: string
                              format: date-time
                      description: Created At
                    updatedAt:
                      anyOf:
                        - type: string
                          format: date-time
                        - type: object
                          properties:
                            eq:
                              type: string
                              format: date-time
                            gt:
                              type: string
                              format: date-time
                            gte:
                              type: string
                              format: date-time
                            lt:
                              type: string
                              format: date-time
                            lte:
                              type: string
                              format: date-time
                      description: Updated At
                    metadataFilters:
                      type: array
                      items:
                        type: object
                        properties:
                          key:
                            type: string
                          value:
                            type: string
                        required:
                          - key
                          - value
                      description: Metadata Filters
                    transactionId:
                      anyOf:
                        - type: string
                          format: uuid
                        - type: object
                          properties:
                            eq:
                              type: string
                              format: uuid
                            in:
                              type: array
                              items:
                                type: string
                                format: uuid
                            nin:
                              type: array
                              items:
                                type: string
                                format: uuid
                      description: Transaction ID
                    linked:
                      type: boolean
                      description: Linked
                sort:
                  type: array
                  items:
                    type: object
                    properties:
                      field:
                        enum:
                          - type
                          - category
                          - status
                          - expiresAt
                          - createdAt
                          - updatedAt
                        type: string
                      direction:
                        enum:
                          - asc
                          - desc
                        type: string
                    required:
                      - field
                      - direction
                cursor:
                  type: string
                limit:
                  type: number
                  minimum: 1
                  maximum: 200
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      allOf:
                        - type: object
                          properties:
                            category:
                              enum:
                                - invoice
                                - receipt
                                - bank_statement
                                - proof_of_payment
                                - contract
                                - shipping
                                - other
                              type: string
                              description: Category
                            scope:
                              enum:
                                - MX
                                - US
                              type: string
                              description: Scope
                            type:
                              type: string
                              minLength: 1
                              description: Type
                            status:
                              enum:
                                - pending_upload
                                - uploaded
                                - pending_review
                                - processing
                                - verified
                                - rejected
                                - expired
                                - no_file
                              type: string
                              description: Status
                              default: pending_upload
                            filename:
                              anyOf:
                                - type: string
                                  description: Filename
                                - type: 'null'
                            contentType:
                              anyOf:
                                - type: string
                                  description: Content Type
                                - type: 'null'
                            size:
                              anyOf:
                                - type: integer
                                  minimum: -9007199254740991
                                  maximum: 9007199254740991
                                  description: Size
                                - type: 'null'
                            expiresAt:
                              anyOf:
                                - type: string
                                  format: date
                                  description: Expires At
                                - type: 'null'
                            verifiedAt:
                              anyOf:
                                - type: string
                                  format: date-time
                                  description: Verified At
                                - type: 'null'
                            verifiedBy:
                              anyOf:
                                - type: string
                                  description: Verified By
                                - type: 'null'
                            rejectionReason:
                              anyOf:
                                - type: string
                                  description: Rejection Reason
                                - type: 'null'
                            reviewedAt:
                              anyOf:
                                - type: string
                                  format: date-time
                                  description: Reviewed At
                                - type: 'null'
                            reviewedBy:
                              anyOf:
                                - type: string
                                  description: Reviewed By
                                - type: 'null'
                            externalId:
                              anyOf:
                                - type: string
                                  description: External ID
                                - type: 'null'
                            fields:
                              anyOf:
                                - type: object
                                  propertyNames:
                                    type: string
                                  additionalProperties: {}
                                  description: Fields
                                - type: 'null'
                            metadata:
                              anyOf:
                                - type: object
                                  propertyNames:
                                    type: string
                                  additionalProperties: {}
                                  description: Metadata
                                - type: 'null'
                          required:
                            - category
                            - scope
                            - type
                        - type: object
                          properties:
                            id:
                              type: string
                              format: uuid
                            createdAt:
                              type: string
                              format: date-time
                            updatedAt:
                              type: string
                              format: date-time
                          required:
                            - id
                            - createdAt
                            - updatedAt
                  pagination:
                    type: object
                    properties:
                      hasMore:
                        type: boolean
                      nextCursor:
                        type: string
                      totalCount:
                        type: integer
                        minimum: -9007199254740991
                        maximum: 9007199254740991
                    required:
                      - hasMore
                required:
                  - data
                  - pagination
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: API Key
      description: API key authentication. Obtain your API key from the dashboard.
    environmentHeader:
      type: apiKey
      in: header
      name: X-Environment
      description: Target environment for the request. Must be "test" or "live".

````