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

# Get terms & conditions status

> Retrieve whether T&Cs have been accepted for connections.



## OpenAPI

````yaml connection_invites.openapi get /v1/retailers/{retailer_id}/connections/t-and-c-status/
openapi: 3.0.0
info:
  title: Connection Invites API
  version: 1.0.0
  description: |
    Endpoints for managing retailer connection invites and statuses.
servers:
  - url: https://marketplace-api.fabric.inc
    description: Production server
security:
  - Bearer: []
tags:
  - name: Connection Invites
    description: Retailer connection invites
paths:
  /v1/retailers/{retailer_id}/connections/t-and-c-status/:
    get:
      tags:
        - Connection Invites
      summary: Get terms & conditions status
      description: Retrieve whether T&Cs have been accepted for connections.
      parameters:
        - name: retailer_id
          in: path
          required: true
          description: >-
            The unique retailer ID. In the Dropship UI this is called the
            **Merchant ID**. To find your Merchant ID, click your merchant name
            in the top nav.
          schema:
            type: integer
            example: 1001
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                required:
                  - count
                  - results
                type: object
                properties:
                  count:
                    description: Total number of records
                    example: 3
                    type: integer
                  next:
                    description: Next page (applicable in a paginated response)
                    example: https://api.example.org/demo/accounts/?page=2
                    type: string
                    format: uri
                    nullable: true
                  previous:
                    description: Previous page (applicable in a paginated response)
                    example: https://api.example.org/demo/accounts/?page=1
                    type: string
                    format: uri
                    nullable: true
                  results:
                    type: array
                    items:
                      $ref: '#/components/schemas/TermsAndConditions'
components:
  schemas:
    TermsAndConditions:
      type: object
      required:
        - brand
        - retailer
        - level
        - status
      properties:
        id:
          description: Unique identifier for the terms and conditions response
          example: 12345
          type: integer
          readOnly: true
        brand:
          description: Brand associated with the connection invite
          example: TechCorp
          type: string
          readOnly: true
        retailer:
          description: Retailer associated with the connection invite
          example: Retailer X
          type: string
          readOnly: true
        level:
          description: Level of the invite (e.g., product only or transactions + products)
          example: transactions_and_products
          type: string
          enum:
            - transactions_and_products
            - products_only
        status:
          description: Current status of the terms and conditions acceptance
          example: active
          type: string
          enum:
            - active
            - suspended
            - pending
            - onboarding
        suspended_at:
          description: Timestamp when the terms and conditions were suspended
          example: '2024-04-01T12:00:00Z'
          type: string
          format: date-time
          nullable: true
        created_at:
          description: Timestamp when the terms and conditions response was created
          example: '2024-03-01T12:00:00Z'
          type: string
          format: date-time
          readOnly: true
          nullable: true
        updated_at:
          description: Timestamp when the terms and conditions response was last updated
          example: '2024-04-01T12:00:00Z'
          type: string
          format: date-time
          readOnly: true
          nullable: true
        shipping_accounts:
          description: Shipping accounts associated with the connection invite
          example: FedEx, UPS
          type: string
          readOnly: true
        options:
          description: Additional options related to the terms and conditions
          example: Gift Wrapping Available
          type: string
          readOnly: true
        attachments:
          description: Attachments related to the terms and conditions response
          example: Attachment1.pdf
          type: string
          readOnly: true
        approved_items_count:
          description: Count of approved items under the terms and conditions
          example: '5'
          type: string
          readOnly: true
        orders_last_7_days_count:
          description: >-
            Count of orders received in the last 7 days under the terms and
            conditions
          example: '10'
          type: string
          readOnly: true
        proposals_received_last_7_days_count:
          description: Count of proposals received in the last 7 days
          example: '3'
          type: string
          readOnly: true
        contacts:
          description: Contacts associated with the connection invite
          example: contact1@example.com, contact2@example.com
          type: string
          readOnly: true
        memos:
          description: Memos associated with the connection invite
          example: Terms accepted on 2024-03-01.
          type: string
          readOnly: true
        referral:
          description: Referral details if applicable
          example: Referred by John Doe
          type: string
          readOnly: true
        commission_profile:
          description: Commission profile associated with the connection invite
          example: Standard Commission
          type: string
          readOnly: true
        integration_type:
          description: Type of integration associated with the connection invite
          example: api
          type: string
          enum:
            - console
            - edi
            - api
            - storefront
            - console-print-labels
            - console-register-tracking-numbers
            - shopify
            - bigcommerce
            - shipstation
            - woocommerce
          nullable: true
        onboarding_status:
          description: Current onboarding status for the connection invite
          example: pending
          type: string
          enum:
            - pending
            - complete
          nullable: true
        retailer_identifier:
          description: Identifier for the retailer
          example: Retailer-01
          type: string
          maxLength: 32
          nullable: true
        onboarding_target_date:
          description: Target date for onboarding the connection invite
          example: '2024-04-30T00:00:00Z'
          type: string
          format: date-time
          nullable: true
        intro_call_date:
          description: Date of the introductory call for onboarding
          example: '2024-03-01T12:00:00Z'
          type: string
          format: date-time
          nullable: true
        onboarded_at:
          description: Timestamp when the invitee was onboarded
          example: '2024-03-15T12:00:00Z'
          type: string
          format: date-time
          nullable: true
        onboarding_steps:
          description: Steps completed during the onboarding process
          example: 'Step 1: Account Setup, Step 2: Review Terms'
          type: string
          readOnly: true
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer

````