Issue API
Move issue to team
API reference
- Overview & Authentication
- Issue API
- Action API
- AI Requests
- Issue Comments
- Issue Relation
- Labels
- Linked Issue
- Users
- Views
- Teams
Issue API
Move issue to team
POST
/
api
/
v1
/
issues
/
{issueId}
/
move
curl --request POST \
--url https://app.tegon.ai/api/v1/issues/{issueId}/move \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"teamId": "<string>"
}'
{
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"deleted": "2023-11-07T05:31:56Z",
"title": "<string>",
"number": 123,
"description": "<string>",
"priority": 123,
"dueDate": "2023-11-07T05:31:56Z",
"sortOrder": 123,
"subIssueSortOrder": 123,
"estimate": 123,
"sourceMetadata": {},
"isBidirectional": true,
"teamId": "<string>",
"createdById": "<string>",
"updatedById": "<string>",
"subscriberIds": [
"<string>"
],
"assigneeId": "<string>",
"labelIds": [
"<string>"
],
"stateId": "<string>",
"parentId": "<string>",
"attachments": [
"<string>"
],
"issueSuggestionId": "<string>"
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/json
Response
200
application/json
Successful response
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://app.tegon.ai/api/v1/issues/{issueId}/move \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"teamId": "<string>"
}'
{
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"deleted": "2023-11-07T05:31:56Z",
"title": "<string>",
"number": 123,
"description": "<string>",
"priority": 123,
"dueDate": "2023-11-07T05:31:56Z",
"sortOrder": 123,
"subIssueSortOrder": 123,
"estimate": 123,
"sourceMetadata": {},
"isBidirectional": true,
"teamId": "<string>",
"createdById": "<string>",
"updatedById": "<string>",
"subscriberIds": [
"<string>"
],
"assigneeId": "<string>",
"labelIds": [
"<string>"
],
"stateId": "<string>",
"parentId": "<string>",
"attachments": [
"<string>"
],
"issueSuggestionId": "<string>"
}