Skip to main content
PUT
/
flows
/
{org}
/
{flow_name}
/
rename
Rename flow
curl --request PUT \
  --url https://app.kosli.com/api/v2/flows/{org}/{flow_name}/rename \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "new_name": "<string>"
}
'
{
  "message": "<string>",
  "errors": {}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

flow_name
string
required
org
string
required

Body

application/json
new_name
string
required

Response

Successful flow rename

Last modified on April 9, 2026