Skip to main content
POST
/
job
/
{job_id}
/
deployed
Report the final deployed URL
curl --request POST \
  --url https://{host}/api/sharesame/job/{job_id}/deployed \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "deployment_id": "deploy_123",
  "deploy_url": "https://forcesale.example.com"
}
'
{
  "ok": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

job_id
string
required

Body

application/json
deployment_id
string

Optional deployment identifier from your own system

deploy_url
string

Final public URL for the deployed website

Response

200 - application/json

Report accepted

ok
boolean
required