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

Response

200
application/json

Card updated successfully

The response is of type object.