Skip to main content
PATCH
/
sequences
/
{sequenceId}
/
steps
/
{stepId}
Edit a single sequence step's copy (subject/body)
curl --request PATCH \
  --url https://origami.chat/api/v2/sequences/{sequenceId}/steps/{stepId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "subject": "<string>",
  "body": "<string>"
}
'

Authorizations

Authorization
string
header
required

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

Path Parameters

sequenceId
string<uuid>
required
stepId
string<uuid>
required

Body

application/json
subject
string
body
string

Response

{ stepId, subject, body, status, updatedAt }.