Skip to main content
POST
/
api
/
board
/
{boardId}
Create a card
curl --request POST \
  --url https://core-api.getaptly.com/api/board/{boardId} \
  --header 'Content-Type: application/json' \
  --header 'x-token: <api-key>' \
  --data '
{
  "name": "John Smith",
  "abc123": "john@example.com",
  "ghi789": 1500
}
'
{
  "data": {
    "_id": "<string>"
  }
}

Authorizations

x-token
string
header
required

Path Parameters

boardId
string
required

Body

application/json
name
string

Card title (also accepted as title).

{key}
any

Any board field UUID as key, with the field's value.

Response

Card created.

data
object