> ## 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 connection invite by ID

> Retrieve a specific connection invite by ID.



## OpenAPI

````yaml connection_invites.openapi get /v1/retailers/{retailer_id}/connection-invites/{id}/
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}/connection-invites/{id}/:
    get:
      tags:
        - Connection Invites
      summary: Get connection invite by ID
      description: Retrieve a specific connection invite by ID.
      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
        - name: id
          in: path
          required: true
          description: >-
            The connection invite ID used to retrieve a specific connection
            invite. This ID is generated when a connection invite is sent. Use
            the `/v1/retailers/{retailer_id}/connections/` endpoint to retrieve
            a list of connection invites and their IDs.
          schema:
            type: integer
            example: 2002
      responses:
        '200':
          description: Connection invite details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConnectionInvite'
components:
  schemas:
    ConnectionInvite:
      type: object
      required:
        - company_name
        - first_name
        - last_name
        - email
      properties:
        id:
          description: Unique identifier for the connection invite
          example: 12345
          type: integer
          readOnly: true
        company_name:
          description: Name of the company sending the invite
          example: TechCorp
          type: string
          maxLength: 64
          minLength: 1
        first_name:
          description: First name of the person associated with the connection invite
          example: John
          type: string
          maxLength: 64
          minLength: 1
        last_name:
          description: Last name of the person associated with the connection invite
          example: Doe
          type: string
          maxLength: 64
          minLength: 1
        email:
          description: Email address of the invite recipient
          example: johndoe@example.com
          type: string
          format: email
          maxLength: 255
          minLength: 1
        memos:
          description: Any additional notes or memos associated with the invite
          example: Please review the terms.
          type: string
          readOnly: true
        status:
          description: Current status of the invite
          example: pending
          type: string
          enum:
            - pending
            - approved
            - rejected
          readOnly: true
        retailer:
          description: Retailer associated with the invite
          example: Retailer X
          type: string
          readOnly: true
        connection:
          description: Connection associated with the invite
          example: TechCorp-Connection
          type: string
          readOnly: true
        fees:
          description: Any fees associated with the invite
          example: '15.00'
          type: string
          readOnly: true
        commission_profile:
          description: Commission profile associated with the invite
          example: Standard
          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
          readOnly: true
        adjustments:
          description: Adjustments made to the invite
          example: Discount applied
          type: string
          readOnly: true
        slas:
          description: Service level agreements associated with the invite
          example: Next Day Delivery
          type: string
          readOnly: true
        options:
          description: Additional options related to the connection invite
          example: Gift Wrapping available
          type: string
          readOnly: true
        shipping_accounts:
          description: Shipping accounts associated with the invite
          example: FedEx, UPS
          type: string
          readOnly: true
        onboarding_target_date:
          description: Target date for the onboarding of the invite recipient
          example: '2024-04-30T00:00:00Z'
          type: string
          format: date-time
          nullable: true
        retailer_identifier:
          description: Identifier for the retailer
          example: Retailer-01
          type: string
          maxLength: 32
          nullable: true
        created_at:
          description: Timestamp when the connection invite was created
          example: '2024-03-01T12:00:00Z'
          type: string
          format: date-time
          readOnly: true
        invite_sent_at:
          description: Timestamp when the invite was sent
          example: '2024-03-01T14:00:00Z'
          type: string
          format: date-time
          readOnly: true
          nullable: true
  securitySchemes:
    Bearer:
      type: http
      scheme: bearer

````