Creates a new post on a board. Returns a post object.
API keyYou will need to include your API key found here.
Please include the key in your header.
{"X-API-KEY": <api_key>}
Authorization requiredThis endpoint requires admin access to the board. You must be an admin or owner of the board to access its data.
An example of a basic request body is displayed below. It follows the JSON:API specification.
{
"data": {
"type": "post",
"attributes": {
"content": {
"subject": "Test post",
"body": "Created using the API!",
"attachment": {
"url": "http://example.com",
"caption": "Example website"
}
},
"color": "red",
"customFields": {
"field_abc123": "High Priority",
"field_def456": "Project Alpha"
}
},
"relationships": {
"section": {
"data": {
"id": "abcd1234efgh5678"
}
}
}
}
}
Body parameters
*
required
**
affects posts in certain formats
Properties | Type | Description |
---|---|---|
|
| Type should be set to |
|
| Content object holding subject, body and attachment information.
One of subject, body or attachment is required to make a successful post request. |
|
| Color of the post. Allowed values are |
|
| Sets the position of the post relative to the post that comes before it.
|
|
| Map properties of a post. Only affects posts in boards of map format.
Both latitude and longitude must be present to use |
|
| Canvas property of a post. Only affects posts in boards of canvas format.
All 3 are needed to use |
|
| Custom field values for this post. Keys should be the custom field IDs configured for the board, and values should be the field values. Custom field IDs can be obtained from the board's |
|
| The section which the post belongs to.
|