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

# Report deployment

> Tell ShareSame where the website ended up after you deploy the returned files.



## OpenAPI

````yaml POST /job/{job_id}/deployed
openapi: 3.1.0
info:
  title: ShareSame API
  description: >-
    Build and remix websites from your own AI using ShareSame's job-based
    generation API.
  version: '2026-03-13'
servers:
  - url: https://{host}/api/sharesame
    variables:
      host:
        default: your-base-url-from-sharesame
        description: Base URL ShareSame gives your team when API access is enabled
security:
  - bearerAuth: []
paths:
  /job/{job_id}/deployed:
    post:
      summary: Report the final deployed URL
      description: >-
        Tell ShareSame where the website ended up after you deploy the returned
        files.
      parameters:
        - name: job_id
          in: path
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ReportDeploymentRequest'
            examples:
              default:
                value:
                  deployment_id: deploy_123
                  deploy_url: https://forcesale.example.com
      responses:
        '200':
          description: Report accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OkResponse'
components:
  schemas:
    ReportDeploymentRequest:
      type: object
      properties:
        deployment_id:
          type: string
          description: Optional deployment identifier from your own system
        deploy_url:
          type: string
          description: Final public URL for the deployed website
    OkResponse:
      type: object
      required:
        - ok
      properties:
        ok:
          type: boolean
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````