PUT
/
beta
/
cards
/
{cardId}
Update card
curl --request PUT \
  --url https://api.vistaly.com/beta/cards/{cardId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "cardTitle": "Improve customer onboarding flow",
  "cardDetails": "We need to streamline the onboarding process to reduce drop-off rates"
}'
{
  "cardId": "<string>",
  "cardUrl": "<string>",
  "message": "Card updated successfully"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

cardId
string
required

The unique identifier for the card

Body

application/json
cardTitle
string

The updated title of the card

Example:

"Improve customer onboarding flow"

cardDetails
string

The updated detailed description of the card

Example:

"We need to streamline the onboarding process to reduce drop-off rates"

Response

Card updated successfully

cardId
string
required

The unique identifier of the updated card

cardUrl
string
required

The url of the updated card

message
string
required

Success message

Example:

"Card updated successfully"