Adds a card to an iteration. The card must be active and belong to the primary board of the space. Cards can be added to planned and active iterations only.
| Name | Type | Reference |
|---|---|---|
| space_uidrequired | string | Space UID |
| iteration_idrequired | string | Iteration ID |
| Name | Value |
|---|---|
| Authorization | Bearer <token> |
| Content-Type | application/json |
| Name | Type | Constraints | Description |
|---|---|---|---|
card_uid required | string | minLength: 1 | UID of the card to add to the iteration |
| Description | Response type | Example |
|---|---|---|
| Success | Object |
| Name | Type | Description |
|---|---|---|
| iteration_id | string | ID of the iteration (UUID) |
| card_uid | string | UID of the card |
| added_by_uid | string | UID of the user who added the card to the iteration |
| removed_at | string | Timestamp when the card was removed from the iteration, null if still active |
| removed_by_uid | string | UID of the user who removed the card from the iteration |
| sort_order | number | Sort order of the card within the iteration |
| created | string | Creation timestamp |
| updated | string | Last update timestamp |
| Description | Response type | Example |
|---|---|---|
| Validation error or the card cannot be added to the iteration | Object |
| Name | Type | Description |
|---|---|---|
| message | string | Error message |
| Description | Response type | Example |
|---|---|---|
| Invalid token | String |
A schema has not been defined for this response code.
| Description | Response type | Example |
|---|---|---|
| Forbidden | Response body does not exist |
A schema has not been defined for this response code.
| Description | Response type | Example |
|---|---|---|
| Iteration or card not found | Response body does not exist |
A schema has not been defined for this response code.
Path Parameters
1 curl --request POST \
2 --url 'https://example.kaiten.ru/api/latest/spaces/{space_uid}/iterations/{iteration_id}/cards' \
3 --header 'Accept: application/json' \
4 --header 'Content-Type: application/json'
5 Response
ClickTry It!to start a request and see the response here!