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

# Update post-acceptance status



## OpenAPI

````yaml /openapi-manager.yaml post /general-leads-communications/{communicationId}/post-acceptance-status-update
openapi: 3.0.3
info:
  title: RenovationFind Manager API
  description: >
    Internal REST API for RenovationFind manager operations.


    ## Authentication

    All endpoints require a Bearer token in the `Authorization` header.

    Tokens are issued from the RenovationFind Manager Portal.


    ```

    Authorization: Bearer <your_jwt_token>

    ```


    ## Rate Limiting

    API requests are rate-limited to **250 requests per 5 minutes** per manager.

    When exceeded, the API returns `429 Too Many Requests` with a `Retry-After`
    header.


    ## Response Format

    All responses follow a consistent envelope:

    ```json

    {
      "success": true,
      "data": { ... },
      "message": "Optional message"
    }

    ```

    On error:

    ```json

    {
      "success": false,
      "error": "Error description"
    }

    ```


    ## Partial Updates

    All PATCH endpoints accept partial payloads. Only provided (non-null) fields
    are applied;

    omitted fields remain unchanged. Date fields use `dd/MM/yyyy` format.
  version: 1.0.0
  contact:
    name: RenovationFind
    url: https://www.renovationfind.com
servers:
  - url: https://www.renovationfind.com/rest-manager-api-v1
    description: Production
security:
  - BearerAuth: []
paths:
  /general-leads-communications/{communicationId}/post-acceptance-status-update:
    post:
      tags:
        - General Lead Communications
      summary: Update post-acceptance status
      operationId: postAcceptanceStatusUpdate
      parameters:
        - name: communicationId
          in: path
          required: true
          schema:
            type: integer
            format: int64
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                status:
                  type: string
                  enum:
                    - NO_RESPONSE
                    - HOMEOWNER_CONTACTED
                    - MEETUP_SCHEDULED
                    - QUOTE_SENT
                    - JOB_PENDING_DECISION
                    - JOB_WON
                    - JOB_LOST
                    - JOB_POSTPONED_OR_CANCELLED
                    - NO_RESPONSE_FROM_HOMEOWNER
                    - OTHER
                    - REACHED_OUT_TO_HOMEOWNER
                    - MULTIPLE_ATTEMPTS_NO_RESPONSE
                    - CONTACT_MADE
                    - ESTIMATE_PROVIDED
                    - LEAD_WON
                    - LEAD_LOST
                reason:
                  type: string
                  maxLength: 500
                  description: Notes/reason text
                meetingScheduledDate:
                  type: string
                  format: date
                jobAmount:
                  type: number
                  format: double
                contactMethod:
                  type: string
                  enum:
                    - PHONE_CALL
                    - TEXT
                    - EMAIL
                    - IN_PERSON_MEETING
                estimateType:
                  type: string
                  enum:
                    - IN_PERSON_ESTIMATE
                    - EMAILED_ESTIMATE
                    - VERBAL_ESTIMATE
                    - PORTAL_ATTACHMENT_ESTIMATE
                    - OTHER
                lostReason:
                  type: string
                  enum:
                    - PRICE
                    - TIMING
                    - OTHER
                estimatedProjectStartDate:
                  type: string
                  format: date
                estimatedCompletionDate:
                  type: string
                  format: date
                startDateTbd:
                  type: boolean
                completionDateTbd:
                  type: boolean
      responses:
        '200':
          description: Status updated
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                  data:
                    type: boolean
                  message:
                    type: string
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT token issued from the RenovationFind Manager Portal

````