POST
/
beta
/
cards
Create a new card
curl --request POST \
  --url https://api.vistaly.com/beta/cards \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "cardTitle": "Improve customer onboarding",
  "cardDetails": "We need to streamline the onboarding process to reduce drop-off rates",
  "cardType": "assumption",
  "parentId": "<string>",
  "parentType": "backlog"
}'
{
  "cardId": "<string>",
  "cardUrl": "<string>",
  "message": "Card created successfully"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
cardTitle
string
required

The title of the card

Example:

"Improve customer onboarding"

parentId
string
required

The ID of the parent to associate this card

parentType
enum<string>
required

The type of the parent

Available options:
backlog,
card
cardDetails
string

The detailed description of the card

Example:

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

cardType
enum<string>
Available options:
assumption,
experiment,
kpi,
objective,
opportunity,
outcome,
problem,
product,
solution

Response

Card created successfully

cardId
string
required

The unique identifier of the created card

cardUrl
string
required

The url of the created card

message
string
required

Success message

Example:

"Card created successfully"