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

# Accept a creator proposal

> Confirms a creator-authored proposal. Accepting an already accepted proposal returns its current state.



## OpenAPI

````yaml /openapi/partner.yaml post /proposals/{proposalId}/accept
openapi: 3.1.0
info:
  title: Passionfroot Partner API
  version: 1.0.0-alpha
  description: >
    Access a brand workspace's creators, collaborations, placements, proposals,
    and conversations.

    The API is in alpha. Every operation is restricted to the organization that
    owns the API key.
servers:
  - url: https://workspace.passionfroot.me/api/v1
security:
  - bearerAuth: []
tags:
  - name: Placements
  - name: Creators
  - name: Collaborations
  - name: Conversations
  - name: Proposals
paths:
  /proposals/{proposalId}/accept:
    post:
      tags:
        - Proposals
      summary: Accept a creator proposal
      description: >-
        Confirms a creator-authored proposal. Accepting an already accepted
        proposal returns its current state.
      operationId: acceptPartnerProposal
      parameters:
        - $ref: '#/components/parameters/ProposalId'
      responses:
        '200':
          $ref: '#/components/responses/Proposal'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '409':
          $ref: '#/components/responses/Conflict'
        '429':
          $ref: '#/components/responses/TooManyRequests'
components:
  parameters:
    ProposalId:
      name: proposalId
      in: path
      required: true
      schema:
        type: string
  responses:
    Proposal:
      description: The current proposal state.
      content:
        application/json:
          schema:
            type: object
            required:
              - data
            properties:
              data:
                $ref: '#/components/schemas/Proposal'
    Unauthorized:
      $ref: '#/components/responses/Error401'
    Forbidden:
      $ref: '#/components/responses/Error403'
    NotFound:
      $ref: '#/components/responses/Error404'
    Conflict:
      $ref: '#/components/responses/Error409'
    TooManyRequests:
      description: Rate limit exceeded.
      headers:
        Retry-After:
          $ref: '#/components/headers/RetryAfter'
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          example:
            error: Too many requests, please try again later.
    Error401:
      description: Missing, invalid, expired, or revoked API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Error403:
      description: The key lacks access or the required scope.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Error404:
      description: Resource not found or not accessible to this organization.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    Error409:
      description: >-
        The operation conflicts with current state or an identical write is in
        progress.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  schemas:
    Proposal:
      type: object
      required:
        - proposalId
        - collaborationId
        - requestId
        - status
        - createdBy
        - priceCents
        - currency
        - packageName
        - placements
      properties:
        proposalId:
          type:
            - string
            - 'null'
        collaborationId:
          type: string
        requestId:
          type: string
        status:
          type: string
          enum:
            - offer_pending
            - pending
            - accepted
            - rejected
            - cancelled
        createdBy:
          type: string
          enum:
            - creator
            - brand
        priceCents:
          type:
            - integer
            - 'null'
        currency:
          type:
            - string
            - 'null'
        packageName:
          type: string
        comment:
          type: string
        placements:
          type: array
          items:
            $ref: '#/components/schemas/ProposalPlacement'
    Error:
      type: object
      additionalProperties: false
      required:
        - error
      properties:
        error:
          type: string
    ProposalPlacement:
      type: object
      required:
        - date
        - postType
        - platform
      properties:
        date:
          type: string
          format: date-time
        postType:
          type:
            - string
            - 'null'
        platform:
          type:
            - string
            - 'null'
  headers:
    RetryAfter:
      description: Seconds to wait before retrying.
      schema:
        type: integer
        minimum: 1
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Passionfroot API key
      description: Create an API key from Settings → API in an approved Partner workspace.

````