Skip to main content
POST
/
aptlet
/
{boardId}
Create or update a card
curl --request POST \
  --url https://app.getaptly.com/api/aptlet/{boardId} \
  --header 'Content-Type: application/json' \
  --header 'x-token: <x-token>' \
  --data '
{
  "name": "Widget Adapter",
  "stage": "To Do"
}
'
{
  "_id": "JShpBxEFgRmZnivTf"
}

Headers

x-token
string
required

Your Aptly API Token. Available in the Aptly UI under Card Sources > API.

Path Parameters

boardId
string
required

The unique ID of the board.

Body

application/json
name
string
required

The name of the card.

Example:

"Widget Adapter"

_id
string

If provided, updates the existing card with this ID.

Example:

"JShpBxEFgRmZnivTf"

stage
string

The stage of the card.

Example:

"To Do"

{key}
string

Any custom field value keyed by the field name.

Response

Item created or updated successfully

_id
string
Example:

"JShpBxEFgRmZnivTf"