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

# List proposal senders

> Returns the identities a proposal template can bid with: the team's freelancer profiles and agencies — the team owner's plus everything shared into the team. Use an entry to set the sender on a template via PATCH /proposal-templates/{id}. Upwork team selection for freelancers is available only in the browser extension, so templates assigned through the API always bid as a freelancer without a team



## OpenAPI

````yaml get /proposal-senders
openapi: 3.0.4
info:
  title: Vollna API
  description: API for managing Upwork profiles, proposals, results, and filters
  version: 1.0.0
servers:
  - url: https://api.vollna.com/v1
security: []
tags:
  - name: Profiles
    description: Manage Upwork profiles
  - name: Proposals
    description: Access and manage Upwork proposals
  - name: Results
    description: View monitoring results and projects
  - name: Filters
    description: Manage monitoring filters
  - name: Auto Bidding
    description: Manage auto bidding jobs and setups
paths:
  /proposal-senders:
    get:
      tags:
        - Proposal Templates
      summary: List proposal senders
      description: >-
        Returns the identities a proposal template can bid with: the team's
        freelancer profiles and agencies — the team owner's plus everything
        shared into the team. Use an entry to set the sender on a template via
        PATCH /proposal-templates/{id}. Upwork team selection for freelancers is
        available only in the browser extension, so templates assigned through
        the API always bid as a freelancer without a team
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/ProposalSender'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
        - apiToken: []
components:
  schemas:
    ProposalSender:
      type: object
      properties:
        type:
          type: string
          enum:
            - freelancer
            - agency
          example: agency
        organization_id:
          type: integer
          example: 15
        name:
          type: string
          example: Acme Agency LLC
        contractors:
          type: array
          description: 'Agency entries only: members available as the bidding contractor'
          items:
            type: object
            properties:
              uid:
                type: string
                example: contractor_abc123
              name:
                type: string
                example: John Smith
        has_unsynced_contractors:
          type: boolean
          description: >-
            True when some agency members are not synced yet and cannot be
            selected
        owner:
          type: object
          description: Whose synced profile this identity comes from
          properties:
            id:
              type: integer
            name:
              type: string
            is_me:
              type: boolean
    Error:
      type: object
      properties:
        error:
          type: string
  securitySchemes:
    apiToken:
      type: apiKey
      name: X-API-TOKEN
      in: header
      description: API token for authentication

````