Skip to main content
POST
/
api
/
prompts
/
reassign
Reassign contacts and conversations from one prompt to another
curl --request POST \
  --url https://your-instance.example.com/api/prompts/reassign \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "promptId": "<string>",
  "targetPromptId": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

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

Body

application/json
promptId
string
required
targetPromptId
string
required

Response

Successfully reassigned and deleted prompt

Generic response envelope. Endpoint-specific fields are intentionally open.