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

# Show Tilled application

> Return the creditor company's saved Tilled application draft, completion flags, actionable document request flag, and form options.



## OpenAPI

````yaml /api/creditor.openapi.yaml get /merchant-settings/tilled
openapi: 3.1.0
info:
  title: YouNegotiate Creditor API
  version: '2.0'
  description: >-
    Stateless API endpoints for creditor portal authentication and account
    access.
servers:
  - url: https://api.creditor.younegotiate.com
    description: Production
security: []
tags:
  - name: System
    description: Public creditor domain system and health endpoints.
  - name: Authentication
    description: Creditor registration, login, password, and email verification endpoints.
  - name: Account Settings
    description: >-
      Authenticated creditor profile, contact, operating-hours, and
      profile-image endpoints.
  - name: Account Profile
    description: >-
      Creditor onboarding profile, membership, billing, and setup status
      endpoints.
  - name: Setup Wizard
    description: >-
      Creditor setup wizard status, required-step completion, and optional-step
      completion.
  - name: Dashboard
    description: Creditor dashboard work queues and performance widgets.
  - name: Import / Export
    description: >-
      Creditor consumer import upload sessions, queued imports, history,
      downloads, and failed-row files.
  - name: Membership Settings
    description: >-
      Creditor membership dashboard, plan changes, payment method, cancellation,
      special-plan inquiry, and over-limit retry endpoints.
  - name: Merchant Account
    description: >-
      Existing merchant processor credentials, Tilled onboarding, and merchant
      application endpoints.
  - name: Header Profiles
    description: >-
      CSV header profile upload, mapping, download, and setup wizard completion
      endpoints.
  - name: SFTP Connections
    description: >-
      Creditor-managed SFTP connection profiles for imports, exports, and setup
      wizard completion.
  - name: Sub Accounts
    description: >-
      Creditor-managed sub account list, export, create, update, and delete
      endpoints.
  - name: Pay Terms Offers
    description: >-
      Creditor-managed master, sub-account, group, and group-sub-account Pay
      Terms endpoints.
  - name: Individual Custom Offers
    description: Creditor individual custom offer list endpoints.
  - name: Negotiations
    description: >-
      Creditor negotiation work queues, including notice responses and offer
      review counts.
  - name: Communications / CFPB Validation Letter
    description: >-
      CFPB Validation Letter tables, secure EcoLetter send/resend, CSV export,
      and print/download actions.
  - name: Communications / EcoLetter Template
    description: >-
      Creditor EcoLetter template management for secure eLetter communications
      and campaigns.
  - name: Communications / Groups
    description: >-
      Creditor communication group management for dynamic consumer targeting and
      campaign selection.
  - name: Communications / Schedule Campaign
    description: >-
      Creditor EcoLetter campaign scheduling, quote, immediate send, and
      delivery queue endpoints.
  - name: Communications / Campaign Tracker
    description: >-
      Creditor campaign tracker reporting, refresh, and consumer export
      endpoints.
  - name: Consumer Profiles
    description: Creditor Consumer Profiles list, filter options, and CSV export endpoints.
  - name: Terms & Conditions
    description: Creditor-managed master and sub-account Terms & Conditions templates.
  - name: About Us & Contact
    description: Creditor-managed company About Us content shown to consumers.
  - name: Logo & Links
    description: >-
      Creditor-managed master and sub-account personalized logo colors, size,
      and consumer link metadata.
  - name: Users
    description: >-
      Master creditor user management, invitations, and account deletion
      endpoints.
paths:
  /merchant-settings/tilled:
    get:
      tags:
        - Merchant Account
      summary: Show Tilled application
      description: >-
        Return the creditor company's saved Tilled application draft, completion
        flags, actionable document request flag, and form options.
      operationId: creditorShowTilledApplication
      responses:
        '200':
          description: Tilled application returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TilledApplicationResponse'
        '401':
          $ref: '#/components/responses/Unauthenticated'
        '403':
          $ref: '#/components/responses/ActiveMembershipRequired'
      security:
        - bearerAuth: []
components:
  schemas:
    TilledApplicationResponse:
      type: object
      required:
        - data
      properties:
        data:
          $ref: '#/components/schemas/TilledApplication'
    TilledApplication:
      type: object
      required:
        - is_profile_completed
        - requires_full_profile
        - has_actionable_document_requests
        - form
        - options
      properties:
        is_profile_completed:
          type: boolean
        requires_full_profile:
          type: boolean
          description: >-
            When true, the full business, owner, transaction, and bank sections
            must be submitted.
        has_actionable_document_requests:
          type: boolean
        form:
          $ref: '#/components/schemas/TilledApplicationForm'
        options:
          $ref: '#/components/schemas/TilledApplicationOptions'
    MessageResponse:
      type: object
      required:
        - message
      properties:
        message:
          type: string
    TilledApplicationForm:
      type: object
      additionalProperties: true
      properties:
        legal_name:
          type: string
        dba_name:
          type: string
        structure:
          type: string
        fed_tax_id:
          type: string
        date_of_incorporation:
          type: string
          format: date
          description: >-
            Business incorporation date. The backend accepts parseable date
            input and stores it as `YYYY-MM-DD`.
        website:
          type: string
        support_phone:
          type: string
        support_email:
          type: string
          format: email
        address:
          type: string
        address2:
          type: string
        country:
          type: string
        state:
          type: string
        city:
          type: string
        zip:
          type: string
        first_name:
          type: string
        middle_name:
          type: string
        last_name:
          type: string
        dob:
          type: string
          format: date
          description: >-
            Principal date of birth. The backend accepts parseable date input
            and stores it as `YYYY-MM-DD`.
        ssn:
          type: string
          description: Empty in responses.
        job_title:
          type: string
        percent_ownership:
          oneOf:
            - type: integer
            - type: string
        owner_phone:
          type: string
        owner_email:
          type: string
          format: email
        principle_address:
          type: string
        principle_address2:
          type: string
        principle_country:
          type: string
        principle_state:
          type: string
        principle_city:
          type: string
        principle_zip:
          type: string
        years_at_address:
          oneOf:
            - type: integer
            - type: string
        additional_address:
          type: string
        additional_address2:
          type: string
        additional_country:
          type: string
        additional_state:
          type: string
        additional_city:
          type: string
        additional_zip:
          type: string
        company_category:
          type: string
        high_ticket_amount:
          oneOf:
            - type: integer
            - type: string
        average_transaction_amount_card:
          oneOf:
            - type: integer
            - type: string
        monthly_transaction_count:
          oneOf:
            - type: integer
            - type: string
        account_holder_name:
          type: string
        bank_name:
          type: string
        bank_account_type:
          type: string
        bank_account_number:
          type: string
          description: Response contains the stored masked value.
        bank_routing_number:
          type: string
        industry_type:
          type: string
        tos_acceptance:
          type: boolean
    TilledApplicationOptions:
      type: object
      additionalProperties: true
      properties:
        bank_account_types:
          type: array
          items:
            $ref: '#/components/schemas/Option'
        company_categories:
          type: array
          items:
            $ref: '#/components/schemas/Option'
        countries:
          type: array
          items:
            $ref: '#/components/schemas/Option'
        industry_types:
          type: array
          items:
            $ref: '#/components/schemas/Option'
        job_titles:
          type: array
          items:
            $ref: '#/components/schemas/Option'
        structures:
          type: array
          items:
            $ref: '#/components/schemas/Option'
    Option:
      type: object
      additionalProperties: true
      properties:
        value:
          oneOf:
            - type: string
            - type: integer
        label:
          type: string
  responses:
    Unauthenticated:
      description: Missing or invalid bearer token.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/MessageResponse'
    ActiveMembershipRequired:
      description: Authenticated creditor does not have an active membership.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/MessageResponse'
          example:
            message: An active membership is required.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Sanctum token

````