Skip to main content
POST
/
api
/
v1
/
component
/
{componentId}
/
save
Save component.
curl --request POST \
  --url https://api.revong.com/api/v1/component/{componentId}/save \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '[
  {
    "key": "<string>",
    "timeout": 123,
    "desc": "<string>",
    "details": "<string>",
    "hidden": true,
    "order": 123
  }
]'

Authorizations

Authorization
string
header
required

Bearer token with Platform JWT token or API Key.

Path Parameters

componentId
string
required

Body

application/json · object[]
key
string
required

Unique key of the element.

details
string
required

Details.

hidden
boolean
required

Element hidden from results.

order
number
required

Order of the element (must be unique).

timeout
number

Timeout of the element.

desc
string

Representation description e.g. swagger spec details.

Response

OK.