Download OpenAPI specification:
Complete API documentation for Aha! generated from actual test responses
Account backups let you create a complete off-site backup of your Aha! account. They can be created, listed, and downloaded via the API.
An account backup may only be created once every 24 hours.
The backup file contains a representation of all of the data in the Aha! account, including all relationships. It does not contain user authentication data or integration secrets. The backup does not include any uploaded files.
Account backups are an Enterprise+ exclusive feature.
{- "account_backups": [
- {
- "id": "1",
- "status_code": 2,
- "status_description": "Completed",
- "created_at": "2019-01-01T00:00:00.000Z",
- "file_size": "",
}, - {
- "id": "2",
- "status_code": 2,
- "status_description": "Completed",
- "created_at": "2019-01-01T00:00:00.000Z",
- "file_size": "",
}
]
}The backup may take some time to generate (as long as ten minutes in a large account). You should poll the GET endpoint to see when the backup is complete. You should not poll more frequently than once every twenty seconds. Returns an HTTP status of 429 if a backup was already created within the last 24 hours.
{- "account_backup": {
- "id": "6776881149498172525",
- "status_code": 0,
- "status_description": "In Queue",
- "created_at": "2019-01-01T00:00:00.000Z"
}
}The status field indicates whether the backup is ready. The possible values are: 0 (queued), 1 (in progress), 2 (completed), 3 (error).
| id required | string Id identifier |
{- "account_backup": {
- "id": "6776881149499462668",
- "status_code": 3,
- "status_description": "Error",
- "created_at": "2019-01-01T00:00:00.000Z"
}
}Account backups let you create a complete off-site backup of your Aha! account. They can be created, listed, and downloaded via the API.
An account backup may only be created once every 24 hours.
The backup file contains a representation of all of the data in the Aha! account, including all relationships. It does not contain user authentication data or integration secrets. The backup does not include any uploaded files.
Account backups are an Enterprise+ exclusive feature.
| id required | string Id identifier |
Uploads a file attachment to a comment using multipart/form-data
| comment_id required | string CommentId identifier |
| attachment[data] | string <binary> File to upload |
{- "attachment": {
- "id": "6776881149496969408",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 0,
- "content_type": "text/html",
- "file_name": "home_page.html",
- "file_size": 0
}
}Files can be uploaded to Aha! as a sub-resource on any resource that supports them. These resources support attachments:
The format of an attachment is either a multipart/form-data upload with
the input name attachment[data] or a JSON payload pointing to an URL link:
{
"attachment": {
"file_url": "http://www.aha.io/",
"content_type": "text/html",
"file_name": "home_page.html"
}
}
| idea_comment_id required | string IdeaCommentId identifier |
| attachment[data] | string <binary> File to upload |
{- "attachment": {
- "id": "6776881149499676024",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 0,
- "content_type": "text/html",
- "file_name": "home_page.html",
- "file_size": 0
}
}Files can be uploaded to Aha! as a sub-resource on any resource that supports them. These resources support attachments:
The format of an attachment is either a multipart/form-data upload with
the input name attachment[data] or a JSON payload pointing to an URL link:
{
"attachment": {
"file_url": "http://www.aha.io/",
"content_type": "text/html",
"file_name": "home_page.html"
}
}
| task_id required | string TaskId identifier |
| attachment[data] | string <binary> File to upload |
{- "attachment": {
- "id": "6776881149492544916",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 0,
- "content_type": "text/html",
- "file_name": "home_page.html",
- "file_size": 0
}
}Files can be uploaded to Aha! as a sub-resource on any resource that supports them. These resources support attachments:
The format of an attachment is either a multipart/form-data upload with
the input name attachment[data] or a JSON payload pointing to an URL link:
{
"attachment": {
"file_url": "http://www.aha.io/",
"content_type": "text/html",
"file_name": "home_page.html"
}
}
| custom_field_id required | string CustomFieldId identifier |
| attachment[data] | string <binary> File to upload |
{- "attachment": {
- "id": "6776881149491054206",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 0,
- "content_type": "text/html",
- "file_name": "home_page.html",
- "file_size": 0
}
}Files can be uploaded to Aha! as a sub-resource on any resource that supports them. These resources support attachments:
The format of an attachment is either a multipart/form-data upload with
the input name attachment[data] or a JSON payload pointing to an URL link:
{
"attachment": {
"file_url": "http://www.aha.io/",
"content_type": "text/html",
"file_name": "home_page.html"
}
}
| custom_field_value_id required | string CustomFieldValueId identifier |
| attachment[data] | string <binary> File to upload |
{- "attachment": {
- "id": "6776881149499253955",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 0,
- "content_type": "text/html",
- "file_name": "home_page.html",
- "file_size": 0
}
}Many records throughout Aha! have an associated description: features, requirements, ideas, etc. You can find the ID of a record's description within the description attribute returned by any record show endpoint. You can then use that description ID to create an attachment on the record by providing it as the note_id URL parameter for this endpoint.
| note_id required | string NoteId identifier |
| attachment[data] | string <binary> File to upload |
{- "attachment": {
- "id": "6776881149488245716",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 0,
- "content_type": "text/html",
- "file_name": "home_page.html",
- "file_size": 0
}
}Files can be uploaded to Aha! as a sub-resource on any resource that supports them. These resources support attachments:
The format of an attachment is either a multipart/form-data upload with
the input name attachment[data] or a JSON payload pointing to an URL link:
{
"attachment": {
"file_url": "http://www.aha.io/",
"content_type": "text/html",
"file_name": "home_page.html"
}
}
| attachment_id required | string AttachmentId identifier |
Audit records describe historical changes to records in Aha! and are created automatically when a record is created, updated, or deleted. Audits are immutable and cannot be modified or deleted.
Audits are stored not only for first-class objects such as Features or Release, but also for secondary objects attached to those records such as custom field values, equation field values, descriptions, and record links.
Audit records are only available for the last 12 calendar months. After that, they must be accessed using the Historical Audits endpoint.
The performance of the Audits API can be improved by judicious use of the created_since and created_before parameters. Since this is high-volume timeseries data, these parameters should be used when attempting to scan through record activity, and the after_id parameter should be used in lieu of pagination.
| associated_id | string Example: associated_id=1007868956 |
| associated_type | string Example: associated_type=Feature |
| auditable_type | string Example: auditable_type=Note |
{- "audits": [ ],
- "pagination": {
- "total_records": 0,
- "total_pages": 0,
- "current_page": 1
}
}The historical audits endpoint is similar to the the Audits endpoint, but searches for audit records generated more than 12 calendar months ago. For searches of more recent data, the much more performant Audits API should be used.
The historical index should first be used to identify time-periods of interest, and then a search can be conducted to fetch the full details of the audit records from that period.
There are three important caveats to using this API:
user_id, auditable_type, and audit_action will decrease the token cost.X-Historical-Tokens-Available header, present on every response to these resources.| created_since | string Example: created_since=2019-01-01T00:00:00Z |
| created_before | string Example: created_before=2019-01-01T00:00:00Z |
| auditable_type | string Example: auditable_type=Feature |
| user_id | string Example: user_id=1049303076 |
{- "historical_audits": [
- {
- "auditable_id": 1007868956,
- "auditable_type": "Feature",
- "id": "1049303076",
- "name": "George Gently",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "dates_active": [
- "2019-01-01",
- "2019-01-01",
- "2019-01-01",
- "2019-01-01"
]
}, - {
- "auditable_id": 1007868956,
- "auditable_type": "Feature",
- "id": "1049303076",
- "name": "George Gently",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "dates_active": [
- "2019-01-01",
- "2019-01-01",
- "2019-01-01",
- "2019-01-01"
]
}, - {
- "auditable_id": 1007868956,
- "auditable_type": "Feature",
- "id": "1049303076",
- "name": "George Gently",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "dates_active": [
- "2019-01-01",
- "2019-01-01",
- "2019-01-01",
- "2019-01-01"
]
}
], - "pagination": {
- "total_records": 3,
- "total_pages": 1,
- "current_page": 1
}
}The historical audits endpoint is similar to the the Audits endpoint, but searches for audit records generated more than 12 calendar months ago. For searches of more recent data, the much more performant Audits API should be used.
The historical index should first be used to identify time-periods of interest, and then a search can be conducted to fetch the full details of the audit records from that period.
There are three important caveats to using this API:
user_id, auditable_type, and audit_action will decrease the token cost.X-Historical-Tokens-Available header, present on every response to these resources.object |
{- "search": {
- "created_since": "2019-01-01T00:00:00Z",
- "created_before": "2019-01-01T00:00:00Z",
- "auditable_type": "Feature",
- "auditable_id": 1007868956
}
}{- "search_id": "6776881149486782892"
}| initiative_id required | string InitiativeId identifier |
object |
{- "capacity_investment": {
- "start_date": "2019-01-01",
- "end_date": "2019-01-01",
- "date_source": "manual_dates",
- "estimate_source": "epics"
}
}{- "capacity_investment": {
- "id": "6776881149484188557",
- "capacity_scenario_id": "997808419",
- "total": 0,
- "estimate_source": "epics",
- "date_source": "manual_dates",
- "start_date": "2019-01-01",
- "end_date": "2019-01-01",
- "initiative": {
- "id": "1042392694",
- "reference_num": "PL1-S-1",
- "name": "Workspace line initiative 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - "estimate_values": [
- {
- "id": "6776881149486881903",
- "team_id": null,
- "team_membership_id": null,
- "period_start": null,
- "total": 0,
- "computed": true,
- "ignored": false
}
], - "custom_fields": [ ]
}
}| initiative_id required | string InitiativeId identifier |
| {} | string |
{- "capacity_investments": [
- {
- "id": "756888381",
- "capacity_scenario_id": "997808419",
- "total": null
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}| epic_id required | string EpicId identifier |
object |
{- "capacity_investment": {
- "start_date": "2019-01-01",
- "end_date": "2019-01-01",
- "date_source": "manual_dates",
- "estimate_source": "features"
}
}{- "capacity_investment": {
- "id": "6776881149493463903",
- "capacity_scenario_id": "997808419",
- "total": 0,
- "estimate_source": "features",
- "date_source": "manual_dates",
- "start_date": "2019-01-01",
- "end_date": "2019-01-01",
- "master_feature": {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - "epic": {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - "estimate_values": [
- {
- "id": "6776881149496741502",
- "team_id": null,
- "team_membership_id": null,
- "period_start": null,
- "total": 0,
- "computed": true,
- "ignored": false
}
], - "custom_fields": [ ]
}
}| epic_id required | string EpicId identifier |
| {} | string |
{- "capacity_investments": [
- {
- "id": "6776881149495109598",
- "capacity_scenario_id": "997808419",
- "total": null
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}| feature_id required | string FeatureId identifier |
object |
{- "capacity_investment": {
- "start_date": "2019-01-01",
- "end_date": "2019-01-01",
- "date_source": "manual_dates",
- "custom_fields": {
- "priority": "P3"
}
}
}{- "capacity_investment": {
- "id": "6776881149497074336",
- "capacity_scenario_id": "997808419",
- "total": null,
- "estimate_source": "manual_estimate",
- "date_source": "manual_dates",
- "start_date": "2019-01-01",
- "end_date": "2019-01-01",
- "feature": {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "estimate_values": [ ],
- "custom_fields": [ ]
}
}| feature_id required | string FeatureId identifier |
| {} | string |
{- "capacity_investments": [
- {
- "id": "6776881149498957294",
- "capacity_scenario_id": "997808419",
- "total": null
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}| product_id required | string ProductId identifier |
| {} | string |
{- "capacity_investments": [
- {
- "id": "756888381",
- "capacity_scenario_id": "997808419",
- "total": null
}, - {
- "id": "873751177",
- "capacity_scenario_id": "997808419",
- "total": 100
}
], - "pagination": {
- "total_records": 2,
- "total_pages": 1,
- "current_page": 1
}
}| id required | string Id identifier |
| {} | string |
{- "capacity_investment": {
- "id": "6776881149492244248",
- "capacity_scenario_id": "997808419",
- "total": 50,
- "estimate_source": "manual_estimate",
- "date_source": "capacity_plannable",
- "start_date": "2019-01-01",
- "end_date": "2019-01-01",
- "feature": {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "estimate_values": [
- {
- "id": "6776881149484177228",
- "team_id": null,
- "team_membership_id": null,
- "period_start": "2019-01-01",
- "total": 20,
- "computed": true,
- "ignored": false
}, - {
- "id": "6776881149485556219",
- "team_id": null,
- "team_membership_id": null,
- "period_start": "2019-01-01",
- "total": 5,
- "computed": true,
- "ignored": false
}, - {
- "id": "6776881149487389839",
- "team_id": null,
- "team_membership_id": null,
- "period_start": "2019-01-01",
- "total": 25,
- "computed": true,
- "ignored": false
}, - {
- "id": "6776881149489538211",
- "team_id": 949295028,
- "team_membership_id": null,
- "period_start": "2019-01-01",
- "total": 5,
- "computed": false,
- "ignored": false
}, - {
- "id": "6776881149491485839",
- "team_id": 563889676,
- "team_membership_id": null,
- "period_start": null,
- "total": 35,
- "computed": true,
- "ignored": false
}, - {
- "id": "6776881149492682136",
- "team_id": 949295028,
- "team_membership_id": null,
- "period_start": null,
- "total": 15,
- "computed": true,
- "ignored": false
}, - {
- "id": "6776881149493180575",
- "team_id": 949295028,
- "team_membership_id": null,
- "period_start": "2019-01-01",
- "total": 10,
- "computed": false,
- "ignored": false
}, - {
- "id": "6776881149496397024",
- "team_id": null,
- "team_membership_id": null,
- "period_start": null,
- "total": 50,
- "computed": true,
- "ignored": false
}, - {
- "id": "6776881149497562730",
- "team_id": 563889676,
- "team_membership_id": null,
- "period_start": "2019-01-01",
- "total": 20,
- "computed": false,
- "ignored": false
}, - {
- "id": "6776881149499233465",
- "team_id": 563889676,
- "team_membership_id": null,
- "period_start": "2019-01-01",
- "total": 15,
- "computed": false,
- "ignored": false
}
], - "custom_fields": [
- {
- "id": 424324947,
- "key": "text_field",
- "name": "TextField",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "Acme Corp",
- "type": "string"
}
]
}
}| id required | string Id identifier |
object |
{- "capacity_investment": {
- "start_date": "2019-01-01",
- "end_date": "2019-01-01",
- "date_source": "manual_dates",
- "custom_fields": {
- "priority": "P3"
}
}
}{- "capacity_investment": {
- "id": "756888381",
- "capacity_scenario_id": "997808419",
- "total": null,
- "estimate_source": "manual_estimate",
- "date_source": "manual_dates",
- "start_date": "2019-01-01",
- "end_date": "2019-01-01",
- "initiative": {
- "id": "423077122",
- "reference_num": "PRJ1-S-1",
- "name": "Initiative 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - "estimate_values": [ ],
- "custom_fields": [ ]
}
}{- "capacity_scenarios": [
- {
- "id": 16603097,
- "name": "Custom test scenario",
- "planning_interval": "month",
- "planning_start_date": "2019-01-01",
- "planning_end_date": "2019-01-01",
- "estimate_value_layout": "team_by_time",
- "data_entry_units": "custom",
- "archived": false
}, - {
- "id": 454855257,
- "name": "Second test scenario",
- "planning_interval": "month",
- "planning_start_date": "2019-01-01",
- "planning_end_date": "2019-01-01",
- "estimate_value_layout": "team_by_time",
- "data_entry_units": "headcount",
- "archived": false
}, - {
- "id": 997808419,
- "name": "Default test scenario",
- "planning_interval": "month",
- "planning_start_date": "2019-01-01",
- "planning_end_date": "2019-01-01",
- "estimate_value_layout": "team_by_time",
- "data_entry_units": "headcount",
- "archived": false
}
], - "pagination": {
- "total_records": 3,
- "total_pages": 1,
- "current_page": 1
}
}| id required | string Id identifier |
| {} | string |
{- "capacity_scenario": {
- "id": 997808419,
- "name": "Default test scenario",
- "planning_interval": "month",
- "planning_start_date": "2019-01-01",
- "planning_end_date": "2019-01-01",
- "estimate_value_layout": "team_by_time",
- "data_entry_units": "headcount",
- "archived": false
}
}Comments can be added to and listed as a sub-resource on any resource that supports them. These resources support comments:
They can be listed product-wide, or retrieved from anywhere in the system using the root comments resource.
| feature_id required | string FeatureId identifier |
object |
{- "comment": {
- "body": "<p>This is the comment body for a feature.</p>"
}
}{- "comment": {
- "id": "6776881149488625529",
- "body": "<p>This is the comment body for a feature.</p>",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Feature",
- "id": "1007868956",
- "product_id": "131414752",
}
}
}Comments can be added to and listed as a sub-resource on any resource that supports them. These resources support comments:
They can be listed product-wide, or retrieved from anywhere in the system using the root comments resource.
| feature_id required | string FeatureId identifier |
{- "comments": [
- {
- "id": "781701978",
- "body": "Comment on feature",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [
- {
- "id": "180276963",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 123,
- "content_type": "text/plain",
- "file_name": "uploaded_file_name.txt",
- "file_size": 123
}, - {
- "id": "822785180",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 123,
- "content_type": "text/plain",
- "file_name": "uploaded_file_name.txt",
- "file_size": 123
}
], - "commentable": {
- "type": "Feature",
- "id": "1007868956",
- "product_id": "131414752",
}
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}Comments can be added to and listed as a sub-resource on any resource that supports them. These resources support comments:
They can be listed product-wide, or retrieved from anywhere in the system using the root comments resource.
| epic_id required | string EpicId identifier |
object |
{- "comment": {
- "body": "<p>This is the comment body for an epic.</p>"
}
}{- "comment": {
- "id": "6776881149490456459",
- "body": "<p>This is the comment body for an epic.</p>",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Epic",
- "id": "999605892",
- "product_id": "131414752",
}
}
}Comments can be added to and listed as a sub-resource on any resource that supports them. These resources support comments:
They can be listed product-wide, or retrieved from anywhere in the system using the root comments resource.
| epic_id required | string EpicId identifier |
{- "comments": [
- {
- "id": "465979716",
- "body": "This is an epic comment",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Epic",
- "id": "999605892",
- "product_id": "131414752",
}
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}Comments can be added to and listed as a sub-resource on any resource that supports them. These resources support comments:
They can be listed product-wide, or retrieved from anywhere in the system using the root comments resource.
| requirement_id required | string RequirementId identifier |
object |
{- "comment": {
- "body": "<p>This is the comment body for a requirement.</p>"
}
}{- "comment": {
- "id": "6776881149487246030",
- "body": "<p>This is the comment body for a requirement.</p>",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Requirement",
- "id": "483368544",
- "product_id": "131414752",
}
}
}Comments can be added to and listed as a sub-resource on any resource that supports them. These resources support comments:
They can be listed product-wide, or retrieved from anywhere in the system using the root comments resource.
| requirement_id required | string RequirementId identifier |
{- "comments": [
- {
- "id": "971503243",
- "body": "This is a requirement comment",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Requirement",
- "id": "483368544",
- "product_id": "131414752",
}
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}Comments can be added to and listed as a sub-resource on any resource that supports them. These resources support comments:
They can be listed product-wide, or retrieved from anywhere in the system using the root comments resource.
| page_id required | string PageId identifier |
object |
{- "comment": {
- "body": "<p>This is the comment body for a note.</p>"
}
}{- "comment": {
- "id": "6776881149494267635",
- "body": "<p>This is the comment body for a note.</p>",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Page",
- "id": "1051981226",
- "product_id": "131414752",
}
}
}Comments can be added to and listed as a sub-resource on any resource that supports them. These resources support comments:
They can be listed product-wide, or retrieved from anywhere in the system using the root comments resource.
| page_id required | string PageId identifier |
{- "comments": [ ],
- "pagination": {
- "total_records": 0,
- "total_pages": 0,
- "current_page": 1
}
}Comments can be added to and listed as a sub-resource on any resource that supports them. These resources support comments:
They can be listed product-wide, or retrieved from anywhere in the system using the root comments resource.
| idea_id required | string IdeaId identifier |
object |
{- "comment": {
- "body": "<p>This is the comment body for an idea.</p>"
}
}{- "comment": {
- "id": "6776881149495437410",
- "body": "<p>This is the comment body for an idea.</p>",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Ideas::Idea",
- "id": "58056975",
- "product_id": "131414752",
}
}
}Comments can be added to and listed as a sub-resource on any resource that supports them. These resources support comments:
They can be listed product-wide, or retrieved from anywhere in the system using the root comments resource.
| idea_id required | string IdeaId identifier |
{- "comments": [ ],
- "pagination": {
- "total_records": 0,
- "total_pages": 0,
- "current_page": 1
}
}Comments can be added to and listed as a sub-resource on any resource that supports them. These resources support comments:
They can be listed product-wide, or retrieved from anywhere in the system using the root comments resource.
| initiative_id required | string InitiativeId identifier |
object |
{- "comment": {
- "body": "<p>This is the comment body for an initiative.</p>"
}
}{- "comment": {
- "id": "6776881149497068301",
- "body": "<p>This is the comment body for an initiative.</p>",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Initiative",
- "id": "423077122",
- "product_id": "131414752",
}
}
}Comments can be added to and listed as a sub-resource on any resource that supports them. These resources support comments:
They can be listed product-wide, or retrieved from anywhere in the system using the root comments resource.
| initiative_id required | string InitiativeId identifier |
{- "comments": [
- {
- "id": "133461614",
- "body": "Comment on initiative",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "601067208",
- "name": "Jeremy Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Initiative",
- "id": "423077122",
- "product_id": "131414752",
}
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}Comments can be added to and listed as a sub-resource on any resource that supports them. These resources support comments:
They can be listed product-wide, or retrieved from anywhere in the system using the root comments resource.
| goal_id required | string GoalId identifier |
object |
{- "comment": {
- "body": "<p>This is the comment body for a goal.</p>"
}
}{- "comment": {
- "id": "6776881149486535140",
- "body": "<p>This is the comment body for a goal.</p>",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "StrategicImperative",
- "id": "602095703",
- "product_id": "131414752",
}
}
}Comments can be added to and listed as a sub-resource on any resource that supports them. These resources support comments:
They can be listed product-wide, or retrieved from anywhere in the system using the root comments resource.
| goal_id required | string GoalId identifier |
{- "comments": [
- {
- "id": "821249787",
- "body": "Comment on goal",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "601067208",
- "name": "Jeremy Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "StrategicImperative",
- "id": "602095703",
- "product_id": "131414752",
}
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}Comments can be added to and listed as a sub-resource on any resource that supports them. These resources support comments:
They can be listed product-wide, or retrieved from anywhere in the system using the root comments resource.
| release_id required | string ReleaseId identifier |
object |
{- "comment": {
- "body": "<p>This is the comment body for a release.</p>"
}
}{- "comment": {
- "id": "6776881149487602359",
- "body": "<p>This is the comment body for a release.</p>",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Release",
- "id": "278327321",
- "product_id": "131414752",
}
}
}Comments can be added to and listed as a sub-resource on any resource that supports them. These resources support comments:
They can be listed product-wide, or retrieved from anywhere in the system using the root comments resource.
| release_id required | string ReleaseId identifier |
{- "comments": [
- {
- "id": "428925905",
- "body": "Comment on release",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "601067208",
- "name": "Jeremy Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Release",
- "id": "278327321",
- "product_id": "131414752",
}
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}Comments can be added to and listed as a sub-resource on any resource that supports them. These resources support comments:
They can be listed product-wide, or retrieved from anywhere in the system using the root comments resource.
| release_phase_id required | string ReleasePhaseId identifier |
object |
{- "comment": {
- "body": "<p>This is the comment body for a release phase.</p>"
}
}{- "comment": {
- "id": "6776881149489627713",
- "body": "<p>This is the comment body for a release phase.</p>",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "ReleasePhase",
- "id": "20526005",
}
}
}Comments can be added to and listed as a sub-resource on any resource that supports them. These resources support comments:
They can be listed product-wide, or retrieved from anywhere in the system using the root comments resource.
| release_phase_id required | string ReleasePhaseId identifier |
{- "comments": [ ],
- "pagination": {
- "total_records": 0,
- "total_pages": 0,
- "current_page": 1
}
}Comments can be added to and listed as a sub-resource on any resource that supports them. These resources support comments:
They can be listed product-wide, or retrieved from anywhere in the system using the root comments resource.
| task_id required | string TaskId identifier |
object |
{- "comment": {
- "body": "<p>This is the comment body for a to-do.</p>"
}
}{- "comment": {
- "id": "6776881149487788674",
- "body": "<p>This is the comment body for a to-do.</p>",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Task",
- "id": "748715293",
- "product_id": "131414752",
}
}
}Comments can be added to and listed as a sub-resource on any resource that supports them. These resources support comments:
They can be listed product-wide, or retrieved from anywhere in the system using the root comments resource.
| task_id required | string TaskId identifier |
{- "comments": [
- {
- "id": "55160124",
- "body": "Comment on project",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Task",
- "id": "748715293",
- "product_id": "131414752",
}
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}Comments can be added to and listed as a sub-resource on any resource that supports them. These resources support comments:
They can be listed product-wide, or retrieved from anywhere in the system using the root comments resource.
| id required | string Id identifier |
{- "comment": {
- "id": "781701978",
- "body": "Comment on feature",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [
- {
- "id": "180276963",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 123,
- "content_type": "text/plain",
- "file_name": "uploaded_file_name.txt",
- "file_size": 123
}, - {
- "id": "822785180",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 123,
- "content_type": "text/plain",
- "file_name": "uploaded_file_name.txt",
- "file_size": 123
}
], - "commentable": {
- "type": "Feature",
- "id": "1007868956",
- "product_id": "131414752",
}
}
}Comments can be added to and listed as a sub-resource on any resource that supports them. These resources support comments:
They can be listed product-wide, or retrieved from anywhere in the system using the root comments resource.
| id required | string Id identifier |
object |
{- "comment": {
- "body": "<p>Updated comment body.</p>"
}
}{- "comment": {
- "id": "781701978",
- "body": "<p>Updated comment body.</p>",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [
- {
- "id": "180276963",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 123,
- "content_type": "text/plain",
- "file_name": "uploaded_file_name.txt",
- "file_size": 123
}, - {
- "id": "822785180",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 123,
- "content_type": "text/plain",
- "file_name": "uploaded_file_name.txt",
- "file_size": 123
}
], - "commentable": {
- "type": "Feature",
- "id": "1007868956",
- "product_id": "131414752",
}
}
}Comments can be added to and listed as a sub-resource on any resource that supports them. These resources support comments:
They can be listed product-wide, or retrieved from anywhere in the system using the root comments resource.
| id required | string Id identifier |
Comments can be added to and listed as a sub-resource on any resource that supports them. These resources support comments:
They can be listed product-wide, or retrieved from anywhere in the system using the root comments resource.
| project_id required | string ProjectId identifier |
{- "comments": [
- {
- "id": "428925905",
- "body": "Comment on release",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "601067208",
- "name": "Jeremy Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Release",
- "id": "278327321",
- "product_id": "131414752",
}
}, - {
- "id": "133461614",
- "body": "Comment on initiative",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "601067208",
- "name": "Jeremy Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Initiative",
- "id": "423077122",
- "product_id": "131414752",
}
}, - {
- "id": "821249787",
- "body": "Comment on goal",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "601067208",
- "name": "Jeremy Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "StrategicImperative",
- "id": "602095703",
- "product_id": "131414752",
}
}, - {
- "id": "102125331",
- "body": "Comment 5",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Feature",
- "id": "622562724",
- "product_id": "131414752",
}
}, - {
- "id": "522133163",
- "body": "Comment 6",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Feature",
- "id": "622562724",
- "product_id": "131414752",
}
}, - {
- "id": "672673340",
- "body": "Comment 7",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Feature",
- "id": "622562724",
- "product_id": "131414752",
}
}, - {
- "id": "950481839",
- "body": "Comment 8",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Feature",
- "id": "622562724",
- "product_id": "131414752",
}
}, - {
- "id": "262144830",
- "body": "Comment 9",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Feature",
- "id": "622562724",
- "product_id": "131414752",
}
}, - {
- "id": "231087120",
- "body": "Comment 10",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Feature",
- "id": "622562724",
- "product_id": "131414752",
}
}, - {
- "id": "985738395",
- "body": "Comment 11",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Feature",
- "id": "622562724",
- "product_id": "131414752",
}
}, - {
- "id": "600341795",
- "body": "Comment 12",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Feature",
- "id": "622562724",
- "product_id": "131414752",
}
}, - {
- "id": "349130164",
- "body": "Comment 13",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Feature",
- "id": "622562724",
- "product_id": "131414752",
}
}, - {
- "id": "179034137",
- "body": "Comment 14",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Feature",
- "id": "622562724",
- "product_id": "131414752",
}
}, - {
- "id": "1034741892",
- "body": "Comment 15",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Feature",
- "id": "622562724",
- "product_id": "131414752",
}
}, - {
- "id": "614840636",
- "body": "Comment 16",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Feature",
- "id": "622562724",
- "product_id": "131414752",
}
}, - {
- "id": "329419181",
- "body": "Comment 17",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Feature",
- "id": "622562724",
- "product_id": "131414752",
}
}, - {
- "id": "52270142",
- "body": "Comment 18",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Feature",
- "id": "622562724",
- "product_id": "131414752",
}
}, - {
- "id": "823230344",
- "body": "Comment 4",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Feature",
- "id": "622562724",
- "product_id": "131414752",
}
}, - {
- "id": "796256805",
- "body": "Comment 3",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Feature",
- "id": "622562724",
- "product_id": "131414752",
}
}, - {
- "id": "410180276",
- "body": "Comment 2",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Feature",
- "id": "622562724",
- "product_id": "131414752",
}
}, - {
- "id": "24873740",
- "body": "Comment 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Feature",
- "id": "622562724",
- "product_id": "131414752",
}
}, - {
- "id": "213086058",
- "body": "An annotation comment",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Annotation",
- "id": "541632378",
}
}, - {
- "id": "971503243",
- "body": "This is a requirement comment",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Requirement",
- "id": "483368544",
- "product_id": "131414752",
}
}, - {
- "id": "340318108",
- "body": "This feature is integrated",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Feature",
- "id": "303873333",
- "product_id": "131414752",
}
}, - {
- "id": "110125740",
- "body": "Comment on competitor 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Competitor",
- "id": "892399625",
- "product_id": "131414752",
}
}, - {
- "id": "781701978",
- "body": "Comment on feature",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [
- {
- "id": "180276963",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 123,
- "content_type": "text/plain",
- "file_name": "uploaded_file_name.txt",
- "file_size": 123
}, - {
- "id": "822785180",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 123,
- "content_type": "text/plain",
- "file_name": "uploaded_file_name.txt",
- "file_size": 123
}
], - "commentable": {
- "type": "Feature",
- "id": "1007868956",
- "product_id": "131414752",
}
}, - {
- "id": "933135074",
- "body": "Comment on project",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [
- {
- "id": "109125418",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 67794,
- "content_type": "application/pdf",
- "file_name": "google_doc.pdf",
- "file_size": 67794
}, - {
- "id": "221084308",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 123,
- "content_type": "image/png",
- "file_name": "Mockup.png",
- "file_size": 123
}, - {
- "id": "229957526",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 123,
- "content_type": "image/png",
- "file_name": "not-a-mockup.png",
- "file_size": 123
}, - {
- "id": "744925247",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 123,
- "content_type": "text/plain",
- "file_name": "uploaded_file_name.txt",
- "file_size": 123
}
], - "commentable": {
- "type": "Project",
- "id": "131414752",
}
}, - {
- "id": "55160124",
- "body": "Comment on project",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Task",
- "id": "748715293",
- "product_id": "131414752",
}
}, - {
- "id": "779056158",
- "body": "An annotation comment",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "1049303076",
- "name": "George Gently",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Annotation",
- "id": "594874923",
}
}, - {
- "id": "714777635",
- "body": "An annotation comment",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "1049303076",
- "name": "George Gently",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "commentable": {
- "type": "Annotation",
- "id": "345680906",
}
}
], - "pagination": {
- "total_records": 69,
- "total_pages": 3,
- "current_page": 1
}
}| product_id required | string ProductId identifier |
{- "competitors": [
- {
- "id": "457085224",
- "name": "TrackFast",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "741974453",
- "name": "Road Racer",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "892399625",
- "name": "360 Tracker",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "pagination": {
- "total_records": 3,
- "total_pages": 1,
- "current_page": 1
}
}| product_id required | string ProductId identifier |
object |
{- "competitor": {
- "name": "Plan-a-lot",
- "color": 29647
}
}{- "competitor": {
- "id": "6776881149490638099",
- "name": "Plan-a-lot",
- "color": 29647,
- "subtitle": null,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "custom_fields": [ ],
- "comments_count": 0
}
}| id required | string Id identifier |
{- "competitor": {
- "id": "892399625",
- "name": "360 Tracker",
- "color": 29647,
- "subtitle": null,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "custom_fields": [
- {
- "id": 415795050,
- "key": "revenue",
- "name": "Revenue",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "300.0",
- "type": "number"
}
], - "comments_count": 1
}
}| product_id required | string ProductId identifier |
| id required | string Id identifier |
object |
{- "competitor": {
- "name": "Plan-a-lot"
}
}{- "competitor": {
- "id": "892399625",
- "name": "Plan-a-lot",
- "color": 29647,
- "subtitle": null,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "custom_fields": [
- {
- "id": 415795050,
- "key": "revenue",
- "name": "Revenue",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "300.0",
- "type": "number"
}
], - "comments_count": 1
}
}| product_id required | string ProductId identifier |
object |
{- "creative_brief": {
- "name": "April launch"
}
}{- "creative_brief": {
- "id": "6776881149490547091",
- "name": "April launch",
- "color": 13421772,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "custom_fields": [ ],
- "comments_count": 0
}
}| product_id required | string ProductId identifier |
{- "creative_briefs": [
- {
- "id": "91171755",
- "name": "May launch",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "476477971",
- "name": "April launch",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "982259096",
- "name": "June launch",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "pagination": {
- "total_records": 3,
- "total_pages": 1,
- "current_page": 1
}
}| id required | string Id identifier |
{- "creative_brief": {
- "id": "476477971",
- "name": "April launch",
- "color": 13421772,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "custom_fields": [ ],
- "comments_count": 0
}
}| product_id required | string ProductId identifier |
| id required | string Id identifier |
object |
{- "creative_brief": {
- "name": "December launch"
}
}{- "creative_brief": {
- "id": "476477971",
- "name": "December launch",
- "color": 13421772,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "custom_fields": [ ],
- "comments_count": 0
}
}Custom fields are defined by record type, and are shared across all workspaces across the account. Fields must be added to a layout before they will appear on a record.
For custom fields that include options, (e.g. tags, choice lists), you can also load the list of all available options.
{- "custom_field_definitions": [
- {
- "name": "Priority",
- "id": "581360680",
- "key": "priority",
- "type": "CustomFieldDefinitions::SelectConstant",
- "custom_fieldable_type": "Feature",
- "internal_name": null
}
]
}Custom fields are defined by record type, and are shared across all workspaces across the account. Fields must be added to a layout before they will appear on a record.
For custom fields that include options, (e.g. tags, choice lists), you can also load the list of all available options.
| custom_field_definition_id required | string CustomFieldDefinitionId identifier |
{- "options": [
- {
- "text": "P1",
- "value": "486420793",
- "meta": {
- "color": "#666666"
}
}, - {
- "text": "P2",
- "value": "100098181",
- "meta": {
- "color": "#666666"
}
}, - {
- "text": "P3",
- "value": "854609942",
- "meta": {
- "color": "#666666"
}
}, - {
- "text": "P4",
- "value": "747947447",
- "meta": {
- "color": "#666666"
}
}, - {
- "text": "P5",
- "value": "462681378",
- "meta": {
- "color": "#666666"
}
}
]
}| custom_field_definition_id required | string CustomFieldDefinitionId identifier |
{- "custom_field_options": [
- {
- "id": "100098181",
- "value": "P2",
- "color": 6710886,
- "hidden": false
}, - {
- "id": "462681378",
- "value": "P5",
- "color": 6710886,
- "hidden": false
}, - {
- "id": "486420793",
- "value": "P1",
- "color": 6710886,
- "hidden": false
}, - {
- "id": "747947447",
- "value": "P4",
- "color": 6710886,
- "hidden": false
}, - {
- "id": "854609942",
- "value": "P3",
- "color": 6710886,
- "hidden": false
}
]
}| custom_field_definition_id required | string CustomFieldDefinitionId identifier |
{- "custom_field_option": {
- "value": "New option"
}
}{- "id": "6776881149485179355",
- "value": "New option",
- "color": 6710886,
- "hidden": false
}| custom_field_definition_id required | string CustomFieldDefinitionId identifier |
| id required | string Id identifier |
{- "custom_field_option": {
- "value": "New option2"
}
}{- "id": "486420793",
- "value": "New option2",
- "color": 6710886,
- "hidden": false
}| custom_field_definition_id required | string CustomFieldDefinitionId identifier |
| id required | string Id identifier |
{ }{- "id": "486420793",
- "value": "P1",
- "color": 6710886,
- "hidden": false
}Resources that can be linked to records from a custom table (called custom objects in the API) can be manipulated in a bulk ID-list format. To use custom table record links you must first add a many-to-many custom field definition to the resource. When you pass the IDs of custom table records to link to the feature, the existing list of links will be replaced.
Examples of linking custom objects to resources with a many-to-many customer field:
Custom tables are an Enterprise+ exclusive feature.
| id required | string Id identifier |
object |
{- "product": {
- "custom_object_links": {
- "customers": [
- "640362830"
]
}
}
}{- "product": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Two Products",
- "product_line": false,
- "product_line_type": null,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "21164619",
- "body": "",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "children": [ ],
- "custom_fields": [
- {
- "id": 33687638,
- "key": "release_count",
- "name": "Release count",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": {
- "values": {
- "6809377296730243716": {
- "value": 6,
- "name": "Release count",
- "display_value": "6.0"
}
}
}, - "type": "equation_sheet"
}
], - "screen_definition_ids": {
- "Approval": 475481209,
- "Competitor": 826556567,
- "Epic": 908690576,
- "Feature": 19837977,
- "Ideas::Idea": 405267877,
- "Ideas::IdeaPortal": 790680888,
- "Initiative": 838774462,
- "Page": 26499634,
- "Project": 524951996,
- "Release": 647403809,
- "Requirement": 687341318,
- "StrategicImperative": 117022249
}, - "screen_definitions": [
- {
- "id": 19837977,
- "screenable_type": "Feature",
- "name": "Screen Definition 6",
- "custom_field_definitions": [
- {
- "id": 839883647,
- "key": "custom_scorecard_definition",
- "position": 3,
- "name": "Some custom scorecard definition",
- "type": "CustomFieldDefinitions::ScorecardField",
- "api_type": "scorecard",
- "required": false
}, - {
- "id": 182007396,
- "key": "custom_table",
- "position": 7,
- "name": "Custom Table",
- "type": "CustomFieldDefinitions::LinkMasterDetail",
- "api_type": "array",
- "required": false
}, - {
- "id": 20549131,
- "key": "customer",
- "position": 2,
- "name": "Customer",
- "type": "CustomFieldDefinitions::SelectEditable",
- "api_type": "string",
- "configuration_display": null,
- "required": false,
- "options": [
- {
- "id": 106870231,
- "label": "cust1"
}, - {
- "id": 525853807,
- "label": "cust2"
}, - {
- "id": 676386040,
- "label": "cust3"
}
]
}, - {
- "id": 141558949,
- "key": "customers_table",
- "position": 1,
- "name": "Customers for custom table",
- "type": "CustomFieldDefinitions::LinkMany",
- "api_type": "array",
- "required": false
}, - {
- "id": 384804762,
- "key": "product_managers",
- "position": 7,
- "name": "Product Managers",
- "type": "CustomFieldDefinitions::Records::UsersField",
- "api_type": "array",
- "required": false
}
]
}, - {
- "id": 26499634,
- "screenable_type": "Page",
- "name": "Screen Definition 7",
- "custom_field_definitions": [
- {
- "id": 529933329,
- "key": "review_date",
- "position": 1,
- "name": "Review date",
- "type": "CustomFieldDefinitions::DateField",
- "api_type": "date",
- "required": false
}
]
}, - {
- "id": 117022249,
- "screenable_type": "StrategicImperative",
- "name": "Screen Definition 13",
- "custom_field_definitions": [ ]
}, - {
- "id": 405267877,
- "screenable_type": "Ideas::Idea",
- "name": "Screen Definition 5",
- "custom_field_definitions": [
- {
- "id": 711072024,
- "key": "customers_table",
- "position": 1,
- "name": "Customers for custom table",
- "type": "CustomFieldDefinitions::LinkMany",
- "api_type": "array",
- "required": false
}
]
}, - {
- "id": 475481209,
- "screenable_type": "Task",
- "name": "Approvals custom layout",
- "custom_field_definitions": [ ]
}, - {
- "id": 524951996,
- "screenable_type": "Project",
- "name": "Screen Definition 1",
- "custom_field_definitions": [
- {
- "id": 807801664,
- "key": "name",
- "position": 1,
- "name": "Name",
- "type": "CustomFieldDefinitions::TextField",
- "api_type": "string",
- "required": false
}, - {
- "id": 221120583,
- "key": "website",
- "position": 2,
- "name": "Website",
- "type": "CustomFieldDefinitions::UrlField",
- "api_type": "url",
- "required": false
}
]
}, - {
- "id": 647403809,
- "screenable_type": "Release",
- "name": "Screen Definition 8",
- "custom_field_definitions": [
- {
- "id": 3228193,
- "key": "release_custom_date",
- "position": 1,
- "name": "Release custom date",
- "type": "CustomFieldDefinitions::DateField",
- "api_type": "date",
- "required": false
}
]
}, - {
- "id": 687341318,
- "screenable_type": "Requirement",
- "name": "Screen Definition 11",
- "custom_field_definitions": [
- {
- "id": 85990596,
- "key": "priority",
- "position": 3,
- "name": "Priority",
- "type": "CustomFieldDefinitions::SelectConstant",
- "api_type": "string",
- "configuration_display": null,
- "required": false,
- "options": [
- {
- "id": 135354995,
- "label": "P4"
}, - {
- "id": 376819668,
- "label": "P3"
}, - {
- "id": 561184585,
- "label": "P2"
}, - {
- "id": 947629821,
- "label": "P1"
}, - {
- "id": 1058433764,
- "label": "P5"
}
]
}, - {
- "id": 867049992,
- "key": "requested_by",
- "position": 2,
- "name": "Requested By",
- "type": "CustomFieldDefinitions::TextField",
- "api_type": "string",
- "required": false
}
]
}, - {
- "id": 790680888,
- "screenable_type": "Ideas::IdeaPortal",
- "name": "Screen Definition 4",
- "custom_field_definitions": [
- {
- "id": 807801664,
- "key": "name",
- "position": 1,
- "name": "Name",
- "type": "CustomFieldDefinitions::TextField",
- "api_type": "string",
- "required": false
}
]
}, - {
- "id": 826556567,
- "screenable_type": "Competitor",
- "name": "Screen Definition 3",
- "custom_field_definitions": [ ]
}, - {
- "id": 838774462,
- "screenable_type": "Initiative",
- "name": "Screen Definition 12",
- "custom_field_definitions": [
- {
- "id": 250383571,
- "key": "customers",
- "position": 1,
- "name": "Customers",
- "type": "CustomFieldDefinitions::LinkMany",
- "api_type": "array",
- "required": false
}, - {
- "id": 688549069,
- "key": "initiative_custom_date",
- "position": 3,
- "name": "Initiative custom date",
- "type": "CustomFieldDefinitions::DateField",
- "api_type": "date",
- "required": false
}
]
}, - {
- "id": 908690576,
- "screenable_type": "Epic",
- "name": "Screen Definition 7",
- "custom_field_definitions": [
- {
- "id": 919440521,
- "key": "epic_custom_date",
- "position": 1,
- "name": "Epic custom date",
- "type": "CustomFieldDefinitions::DateField",
- "api_type": "date",
- "required": false
}
]
}
], - "has_ideas": true,
- "has_master_features": false,
- "has_epics": false,
- "release_workflow": {
- "id": 717623509,
- "name": "Account product release workflow",
- "statusable_type": "Release",
- "workflow_type": "release"
}, - "requirement_workflow": {
- "id": 499195972,
- "name": "Account product feature workflow",
- "statusable_type": "Feature",
- "workflow_type": "requirement"
}, - "feature_workflow": {
- "id": 499195972,
- "name": "Account product feature workflow",
- "statusable_type": "Feature",
- "workflow_type": "feature"
}, - "initiative_workflow": {
- "id": 61191651,
- "name": "Account initiative workflow",
- "statusable_type": "Initiative",
- "workflow_type": "initiative"
}, - "epic_workflow": {
- "id": 499195972,
- "name": "Account product feature workflow",
- "statusable_type": "Feature",
- "workflow_type": "epic"
}, - "idea_workflow": {
- "id": 80245244,
- "name": "Account product idea workflow",
- "statusable_type": "Idea",
- "workflow_type": "idea"
}, - "strategic_imperative_workflow": {
- "id": 883066232,
- "name": "Account goal workflow",
- "statusable_type": "StrategicImperative",
- "workflow_type": "strategic_imperative"
}, - "page_workflow": {
- "id": 934299270,
- "name": "Account document workflow",
- "statusable_type": "Page",
- "workflow_type": "page"
}, - "key_result_workflow": {
- "id": 1024772447,
- "name": "Account product key result workflow",
- "statusable_type": "KeyResult",
- "workflow_type": "key_result"
}, - "capacity_planning_enabled": false,
- "default_capacity_units": 10,
- "enhanced_capacity_planning_enabled": false,
- "workspace_type": "product_workspace"
}
}Custom Tables are an Enterprise+ exclusive feature.
| id required | string Id identifier |
object |
{- "release": {
- "custom_object_links": {
- "customers": [
- "640362830"
]
}
}
}{- "release": {
- "id": "278327321",
- "product_id": "131414752",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "end_date": null,
- "development_started_on": "2019-01-01",
- "release_date": "2019-01-01",
- "external_release_date": "2019-01-01",
- "external_release_date_description": "Sep 11, 2025",
- "external_date_resolution": "exact",
- "released": false,
- "parking_lot": false,
- "master_release": false,
- "released_on": null,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "position": null,
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "status_changed_on": null,
- "theme": {
- "id": "522610666",
- "body": "Theme of the release",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "custom_fields": [
- {
- "id": "432637490",
- "key": "note",
- "name": "Note",
- "updatedAt": "2019-01-01T00:00:00Z",
- "body": "<p>sample text</p>",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ],
- "value": "<p>sample text</p>",
- "type": "note"
}, - {
- "id": 424324947,
- "key": "text_field",
- "name": "TextField",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "Acme Corp",
- "type": "string"
}
], - "custom_object_links": [
- {
- "key": "customers",
- "name": "Customers",
- "record_type": "CustomObjectRecord",
- "record_ids": [
- 640362830
]
}
], - "comments_count": 1,
- "workflow_status": {
- "id": "738862546",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "goals": [
- {
- "id": "602095703",
- "name": "Goal 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "166463080",
- "body": "Description of goal 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}
], - "initiatives": [
- {
- "id": "423077122",
- "reference_num": "PRJ1-S-1",
- "name": "Initiative 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "673273729",
- "body": "Description of initiative 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "integration_fields": [
- {
- "id": "546711007",
- "name": "id",
- "value": "9913333",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "966751335",
- "name": "key",
- "value": "JRA-987222",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
]
}
], - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "created_by_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}
}Resources that can be linked to records from a custom table (called custom objects in the API) can be manipulated in a bulk ID-list format. To use custom table record links you must first add a many-to-many custom field definition to the resource. When you pass the IDs of custom table records to link to the feature, the existing list of links will be replaced.
Examples of linking custom objects to resources with a many-to-many customer field:
Custom tables are an Enterprise+ exclusive feature.
| id required | string Id identifier |
object |
{- "feature": {
- "custom_object_links": {
- "customers": [
- "640362830"
]
}
}
}{- "feature": {
- "id": "1007868956",
- "name": "Feature 1",
- "reference_num": "PRJ1-1",
- "initiative_reference_num": "PRJ1-S-1",
- "release_reference_num": "PRJ1-R-1",
- "epic_reference_num": "PRJ1-E-1",
- "position": 1,
- "score": 3,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "start_date": "2019-01-01",
- "due_date": "2019-01-01",
- "product_id": "131414752",
- "progress": 25,
- "progress_source": "progress_manual",
- "status_changed_on": null,
- "created_by_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_kind": {
- "id": "98484309",
- "name": "New"
}, - "workflow_status": {
- "id": "934242751",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "description": {
- "id": "793547626",
- "body": "Body of note 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [
- {
- "id": "630489833",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 123,
- "content_type": "application/excel",
- "file_name": "spreadsheet_file.xlsx",
- "file_size": 123
}, - {
- "id": "724655692",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 123,
- "content_type": "text/plain",
- "file_name": "uploaded_file_name.txt",
- "file_size": 123
}
]
}, - "attachments": [ ],
- "integration_fields": [
- {
- "id": "92040219",
- "name": "url",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "728894778",
- "name": "key",
- "value": "JRA-123",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "846945422",
- "name": "id",
- "value": "435",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "release": {
- "id": "278327321",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - "master_feature": {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - "belongs_to_release_phase": {
- "id": "20526005",
- "name": "Alpha",
- "start_on": "2019-01-01",
- "end_on": "2019-01-01",
- "type": "phase",
- "release_id": 278327321,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "description": {
- "id": "243384959",
- "body": "Description of release phase 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}, - "epic": {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "requirements": [
- {
- "id": "96915428",
- "name": "Body of requirement 2",
- "reference_num": "PRJ1-1-2",
- "position": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "release_id": 278327321,
- "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_status": {
- "id": "1025247908",
- "name": "Shipped",
- "position": 5,
- "complete": true,
- "color": "#ecdd8f"
}, - "description": {
- "id": "6776881149484139005",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "feature": {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "attachments": [ ],
- "tags": [ ],
- "full_tags": [ ],
- "custom_fields": [ ],
- "integration_fields": [ ],
- "comments_count": 0
}, - {
- "id": "483368544",
- "name": "Body of requirement 1",
- "reference_num": "PRJ1-1-1",
- "position": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "release_id": 278327321,
- "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_status": {
- "id": "934242751",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "910541534",
- "body": "Body of requirement 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "feature": {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "attachments": [ ],
- "tags": [ ],
- "full_tags": [ ],
- "custom_fields": [
- {
- "id": 848810602,
- "key": "expected_completion_date",
- "name": "Expected completion date",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "2019-01-01",
- "type": "date"
}, - {
- "id": 731808726,
- "key": "requested_by",
- "name": "Requested By",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "TK",
- "type": "string"
}
], - "integration_fields": [
- {
- "id": "32487847",
- "name": "key",
- "value": "JRA-987",
- "integration_id": 342659513,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "417785887",
- "name": "id",
- "value": "991",
- "integration_id": 342659513,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "803330186",
- "name": "aha::remote_entity",
- "value": "issue_10100",
- "integration_id": 342659513,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "comments_count": 1
}, - {
- "id": "851574643",
- "name": "Body of requirement 3",
- "reference_num": "PRJ1-1-3",
- "position": 3,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "release_id": 278327321,
- "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_status": {
- "id": "922838743",
- "name": "Not started",
- "position": 8,
- "complete": false,
- "color": "#dce790"
}, - "description": {
- "id": "6776881149490636026",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "feature": {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "attachments": [ ],
- "tags": [ ],
- "full_tags": [ ],
- "custom_fields": [ ],
- "integration_fields": [ ],
- "comments_count": 0
}
], - "initiative": {
- "id": "423077122",
- "reference_num": "PRJ1-S-1",
- "name": "Initiative 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "673273729",
- "body": "Description of initiative 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "integration_fields": [
- {
- "id": "546711007",
- "name": "id",
- "value": "9913333",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "966751335",
- "name": "key",
- "value": "JRA-987222",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
]
}, - "goals": [
- {
- "id": "602095703",
- "name": "Goal 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "166463080",
- "body": "Description of goal 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}
], - "key_results": [
- {
- "id": "631791848",
- "name": "KR 1",
- "reference_num": "DEMOENT-G-1-KR-1",
- "position": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "target_metric": "100%",
- "starting_metric": "5%",
- "current_metric": "20%"
}
], - "comments_count": 1,
- "score_facts": [
- {
- "id": "728895917",
- "value": 1,
- "name": "Effort"
}, - {
- "id": "846938137",
- "value": 2,
- "name": "Benefit"
}
], - "tags": [
- "Engineering",
- "Infrastructure"
], - "full_tags": [
- {
- "id": 3412727,
- "name": "Engineering",
- "color": "#e09052"
}, - {
- "id": 775582684,
- "name": "Infrastructure",
- "color": "#7552e0"
}
], - "custom_fields": [
- {
- "id": 1051489895,
- "key": "equation_specs_field",
- "name": "Equation specs field",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": {
- "values": {
- "123": {
- "value": 10,
- "name": "a",
- "display_value": "10.0"
}, - "456": {
- "value": "Foobar",
- "name": "b",
- "display_value": "Foobar"
}, - "789": {
- "value": null,
- "name": "789",
- "display_value": null
}
}
}, - "type": "equation_sheet"
}, - {
- "id": 621325984,
- "key": "expected_completion_date",
- "name": "Expected completion date",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "2019-01-01",
- "type": "date"
}, - {
- "id": 694694494,
- "key": "negative_scorecard",
- "name": "Negative custom scorecard",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": 31,
- "type": "scorecard",
- "score_facts": [
- {
- "id": "462102328",
- "value": 6,
- "name": "Negative default value"
}
]
}, - {
- "id": 736691743,
- "key": "upload",
- "name": "Upload",
- "updatedAt": "2019-01-01T00:00:00Z",
- "attachments": [
- {
- "id": "471688235",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 123,
- "content_type": "text/plain",
- "file_name": "uploaded_file_name.txt",
- "file_size": 123
}
], - "type": "attachment"
}
], - "feature_links": [
- {
- "link_type": "Depends on",
- "link_type_id": 20,
- "created_at": "2019-01-01T00:00:00.000Z",
- "parent_record": {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "child_record": {
- "id": "622562724",
- "reference_num": "PRJ1-2",
- "name": "Another Feature",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
}
], - "feature_only_original_estimate": null,
- "feature_only_remaining_estimate": null,
- "feature_only_work_done": null
}
}Resources that can be linked to records from a custom table (called custom objects in the API) can be manipulated in a bulk ID-list format. To use custom table record links you must first add a many-to-many custom field definition to the resource. When you pass the IDs of custom table records to link to the feature, the existing list of links will be replaced.
Examples of linking custom objects to resources with a many-to-many customer field:
Custom tables are an Enterprise+ exclusive feature.
| id required | string Id identifier |
object |
{- "requirement": {
- "custom_object_links": {
- "customers": [
- "640362830"
]
}
}
}{- "requirement": {
- "id": "483368544",
- "name": "Body of requirement 1",
- "reference_num": "PRJ1-1-1",
- "position": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "release_id": 278327321,
- "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_status": {
- "id": "934242751",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "910541534",
- "body": "Body of requirement 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "feature": {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "attachments": [ ],
- "tags": [ ],
- "full_tags": [ ],
- "custom_fields": [
- {
- "id": 848810602,
- "key": "expected_completion_date",
- "name": "Expected completion date",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "2019-01-01",
- "type": "date"
}, - {
- "id": "6776881149484105050",
- "key": "priority",
- "name": "Priority",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "P3",
- "type": "string"
}, - {
- "id": 731808726,
- "key": "requested_by",
- "name": "Requested By",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "TK",
- "type": "string"
}
], - "integration_fields": [
- {
- "id": "32487847",
- "name": "key",
- "value": "JRA-987",
- "integration_id": 342659513,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "417785887",
- "name": "id",
- "value": "991",
- "integration_id": 342659513,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "803330186",
- "name": "aha::remote_entity",
- "value": "issue_10100",
- "integration_id": 342659513,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "comments_count": 1
}
}Resources that can be linked to records from a custom table (called custom objects in the API) can be manipulated in a bulk ID-list format. To use custom table record links you must first add a many-to-many custom field definition to the resource. When you pass the IDs of custom table records to link to the feature, the existing list of links will be replaced.
Examples of linking custom objects to resources with a many-to-many customer field:
Custom tables are an Enterprise+ exclusive feature.
| id required | string Id identifier |
object |
{- "idea": {
- "custom_object_links": {
- "customers": [
- "640362830"
]
}
}
}{- "idea": {
- "id": "849214356",
- "name": "Idea 1 project 2",
- "reference_num": "PRJ2-I-1",
- "score": 15,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "votes": 0,
- "initial_votes": 0,
- "status_changed_at": null,
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "5445688",
- "body": "Description of idea 1 project2",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "visibility": "Visible to all ideas portal users",
- "product": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "assigned_to_user": null,
- "endorsements_count": 1,
- "comments_count": 0,
- "score_facts": [ ],
- "tags": [ ],
- "full_tags": [ ],
- "categories": [ ],
- "custom_fields": [
- {
- "id": 549257455,
- "key": "text_field1",
- "name": "TextField1",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "Marrakech",
- "type": "string"
}, - {
- "id": 968118615,
- "key": "text_field2",
- "name": "TextField2",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "Lyon",
- "type": "string"
}
], - "integration_fields": [ ]
}
}Resources that can be linked to records from a custom table (called custom objects in the API) can be manipulated in a bulk ID-list format. To use custom table record links you must first add a many-to-many custom field definition to the resource. When you pass the IDs of custom table records to link to the feature, the existing list of links will be replaced.
Examples of linking custom objects to resources with a many-to-many customer field:
Custom tables are an Enterprise+ exclusive feature.
| id required | string Id identifier |
object |
{- "initiative": {
- "custom_object_links": {
- "customers": [
- "640362830"
]
}
}
}{- "initiative": {
- "id": "423077122",
- "name": "Initiative 1",
- "reference_num": "PRJ1-S-1",
- "status": "not_started",
- "effort": 30,
- "value": 50,
- "presented": true,
- "color": "#bada55",
- "start_date": null,
- "end_date": null,
- "position": 1,
- "score": 4,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "workflow_status": {
- "id": "53968949",
- "name": "Not Started",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "673273729",
- "body": "Description of initiative 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "attachments": [ ],
- "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "comments_count": 1,
- "goals": [
- {
- "id": "602095703",
- "name": "Goal 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "166463080",
- "body": "Description of goal 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}
], - "score_facts": [ ],
- "features": [
- {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
], - "master_features": [
- {
- "id": "269219656",
- "reference_num": "PRJ3-E-3",
- "name": "A different project epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "362457003",
- "reference_num": "PRJ1-E-3",
- "name": "And a third",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "580753216",
- "reference_num": "PRJ1-E-2",
- "name": "Here's another epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}
], - "epic": [
- {
- "id": "269219656",
- "reference_num": "PRJ3-E-3",
- "name": "A different project epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "362457003",
- "reference_num": "PRJ1-E-3",
- "name": "And a third",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "580753216",
- "reference_num": "PRJ1-E-2",
- "name": "Here's another epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}
], - "releases": [
- {
- "id": "161456549",
- "reference_num": "PRJ1-R-2",
- "name": "Release 2",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [ ],
- "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - {
- "id": "278327321",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}
], - "integration_fields": [
- {
- "id": "546711007",
- "name": "id",
- "value": "9913333",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "966751335",
- "name": "key",
- "value": "JRA-987222",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "custom_fields": [
- {
- "id": 973371762,
- "key": "initiative_custom_date",
- "name": "Initiative custom date",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "2019-01-01",
- "type": "date"
}, - {
- "id": 1073063442,
- "key": "initiative_priority",
- "name": "Initiative priority",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "P2",
- "type": "string"
}
], - "custom_object_links": [
- {
- "key": "customers",
- "name": "Customers",
- "record_type": "CustomObjectRecord",
- "record_ids": [
- 640362830
]
}
], - "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}
}Resources that can be linked to records from a custom table (called custom objects in the API) can be manipulated in a bulk ID-list format. To use custom table record links you must first add a many-to-many custom field definition to the resource. When you pass the IDs of custom table records to link to the feature, the existing list of links will be replaced.
Examples of linking custom objects to resources with a many-to-many customer field:
Custom tables are an Enterprise+ exclusive feature.
| id required | string Id identifier |
object |
{- "goal": {
- "custom_object_links": {
- "customers": [
- "640362830"
]
}
}
}{- "goal": {
- "id": "602095703",
- "name": "Goal 1",
- "reference_num": "DEMOENT-G-1",
- "effort": 10,
- "value": 70,
- "color": "#bada55",
- "position": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "description": {
- "id": "166463080",
- "body": "Description of goal 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "success_metric": {
- "name": "Metric 1",
- "description": {
- "id": "546284368",
- "body": "Description of goal 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "workflow_status": {
- "id": "396368932",
- "name": "On Track",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "initiatives": [
- {
- "id": "423077122",
- "reference_num": "PRJ1-S-1",
- "name": "Initiative 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "673273729",
- "body": "Description of initiative 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "integration_fields": [
- {
- "id": "546711007",
- "name": "id",
- "value": "9913333",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "966751335",
- "name": "key",
- "value": "JRA-987222",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
]
}
], - "comments_count": 1,
- "features": [
- {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
], - "releases": [
- {
- "id": "278327321",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}
], - "custom_fields": [ ],
- "custom_object_links": [
- {
- "key": "customers",
- "name": "Customers",
- "record_type": "CustomObjectRecord",
- "record_ids": [
- 640362830
]
}
]
}
}Resources that can be linked to records from a custom table (called custom objects in the API) can be manipulated in a bulk ID-list format. To use custom table record links you must first add a many-to-many custom field definition to the resource. When you pass the IDs of custom table records to link to the feature, the existing list of links will be replaced.
Examples of linking custom objects to resources with a many-to-many customer field:
Custom tables are an Enterprise+ exclusive feature.
| id required | string Id identifier |
object |
{- "custom_object_record": {
- "custom_object_links": {
- "custom_table_name_submitters": [
- 136661093
]
}
}
}{- "custom_object_record": {
- "id": "640362830",
- "product_id": "131414752",
- "key": "customers",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "custom_fields": [
- {
- "id": 262515157,
- "key": "name",
- "name": "Name",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "Acme parent corp",
- "type": "string"
}, - {
- "id": 883926222,
- "key": "website",
- "name": "Website",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "www.acmeparent.com",
- "type": "url"
}
], - "custom_object_links": [ ],
- "linked_records": [
- {
- "key": "customers",
- "name": "Customers",
- "record_type": "Ideas::Idea",
- "record_id": 162120796
}, - {
- "key": "revenue",
- "name": "Revenue",
- "record_type": "Ideas::Idea",
- "record_id": 58056975
}, - {
- "key": "submitters",
- "name": "Submitters",
- "record_type": "Ideas::Idea",
- "record_id": 58056975
}
], - "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}
}| id required | string Id identifier |
{- "product": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "product_line_type": null,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "21164619",
- "body": "",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "children": [ ],
- "custom_fields": [
- {
- "id": 33687638,
- "key": "release_count",
- "name": "Release count",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": {
- "values": {
- "6809377296730243716": {
- "value": 6,
- "name": "Release count",
- "display_value": "6.0"
}
}
}, - "type": "equation_sheet"
}
], - "screen_definition_ids": {
- "Approval": 475481209,
- "Competitor": 826556567,
- "Epic": 908690576,
- "Feature": 19837977,
- "Ideas::Idea": 405267877,
- "Ideas::IdeaPortal": 790680888,
- "Initiative": 838774462,
- "Page": 26499634,
- "Project": 524951996,
- "Release": 647403809,
- "Requirement": 687341318,
- "StrategicImperative": 117022249
}, - "screen_definitions": [
- {
- "id": 19837977,
- "screenable_type": "Feature",
- "name": "Screen Definition 6",
- "custom_field_definitions": [
- {
- "id": 839883647,
- "key": "custom_scorecard_definition",
- "position": 3,
- "name": "Some custom scorecard definition",
- "type": "CustomFieldDefinitions::ScorecardField",
- "api_type": "scorecard",
- "required": false
}, - {
- "id": 182007396,
- "key": "custom_table",
- "position": 7,
- "name": "Custom Table",
- "type": "CustomFieldDefinitions::LinkMasterDetail",
- "api_type": "array",
- "required": false
}, - {
- "id": 20549131,
- "key": "customer",
- "position": 2,
- "name": "Customer",
- "type": "CustomFieldDefinitions::SelectEditable",
- "api_type": "string",
- "configuration_display": null,
- "required": false,
- "options": [
- {
- "id": 106870231,
- "label": "cust1"
}, - {
- "id": 525853807,
- "label": "cust2"
}, - {
- "id": 676386040,
- "label": "cust3"
}
]
}, - {
- "id": 141558949,
- "key": "customers_table",
- "position": 1,
- "name": "Customers for custom table",
- "type": "CustomFieldDefinitions::LinkMany",
- "api_type": "array",
- "required": false
}, - {
- "id": 384804762,
- "key": "product_managers",
- "position": 7,
- "name": "Product Managers",
- "type": "CustomFieldDefinitions::Records::UsersField",
- "api_type": "array",
- "required": false
}
]
}, - {
- "id": 26499634,
- "screenable_type": "Page",
- "name": "Screen Definition 7",
- "custom_field_definitions": [
- {
- "id": 529933329,
- "key": "review_date",
- "position": 1,
- "name": "Review date",
- "type": "CustomFieldDefinitions::DateField",
- "api_type": "date",
- "required": false
}
]
}, - {
- "id": 117022249,
- "screenable_type": "StrategicImperative",
- "name": "Screen Definition 13",
- "custom_field_definitions": [ ]
}, - {
- "id": 405267877,
- "screenable_type": "Ideas::Idea",
- "name": "Screen Definition 5",
- "custom_field_definitions": [
- {
- "id": 711072024,
- "key": "customers_table",
- "position": 1,
- "name": "Customers for custom table",
- "type": "CustomFieldDefinitions::LinkMany",
- "api_type": "array",
- "required": false
}
]
}, - {
- "id": 475481209,
- "screenable_type": "Task",
- "name": "Approvals custom layout",
- "custom_field_definitions": [ ]
}, - {
- "id": 524951996,
- "screenable_type": "Project",
- "name": "Screen Definition 1",
- "custom_field_definitions": [
- {
- "id": 807801664,
- "key": "name",
- "position": 1,
- "name": "Name",
- "type": "CustomFieldDefinitions::TextField",
- "api_type": "string",
- "required": false
}, - {
- "id": 221120583,
- "key": "website",
- "position": 2,
- "name": "Website",
- "type": "CustomFieldDefinitions::UrlField",
- "api_type": "url",
- "required": false
}
]
}, - {
- "id": 647403809,
- "screenable_type": "Release",
- "name": "Screen Definition 8",
- "custom_field_definitions": [
- {
- "id": 3228193,
- "key": "release_custom_date",
- "position": 1,
- "name": "Release custom date",
- "type": "CustomFieldDefinitions::DateField",
- "api_type": "date",
- "required": false
}
]
}, - {
- "id": 687341318,
- "screenable_type": "Requirement",
- "name": "Screen Definition 11",
- "custom_field_definitions": [
- {
- "id": 85990596,
- "key": "priority",
- "position": 3,
- "name": "Priority",
- "type": "CustomFieldDefinitions::SelectConstant",
- "api_type": "string",
- "configuration_display": null,
- "required": false,
- "options": [
- {
- "id": 135354995,
- "label": "P4"
}, - {
- "id": 376819668,
- "label": "P3"
}, - {
- "id": 561184585,
- "label": "P2"
}, - {
- "id": 947629821,
- "label": "P1"
}, - {
- "id": 1058433764,
- "label": "P5"
}
]
}, - {
- "id": 867049992,
- "key": "requested_by",
- "position": 2,
- "name": "Requested By",
- "type": "CustomFieldDefinitions::TextField",
- "api_type": "string",
- "required": false
}
]
}, - {
- "id": 790680888,
- "screenable_type": "Ideas::IdeaPortal",
- "name": "Screen Definition 4",
- "custom_field_definitions": [
- {
- "id": 807801664,
- "key": "name",
- "position": 1,
- "name": "Name",
- "type": "CustomFieldDefinitions::TextField",
- "api_type": "string",
- "required": false
}
]
}, - {
- "id": 826556567,
- "screenable_type": "Competitor",
- "name": "Screen Definition 3",
- "custom_field_definitions": [ ]
}, - {
- "id": 838774462,
- "screenable_type": "Initiative",
- "name": "Screen Definition 12",
- "custom_field_definitions": [
- {
- "id": 250383571,
- "key": "customers",
- "position": 1,
- "name": "Customers",
- "type": "CustomFieldDefinitions::LinkMany",
- "api_type": "array",
- "required": false
}, - {
- "id": 688549069,
- "key": "initiative_custom_date",
- "position": 3,
- "name": "Initiative custom date",
- "type": "CustomFieldDefinitions::DateField",
- "api_type": "date",
- "required": false
}
]
}, - {
- "id": 908690576,
- "screenable_type": "Epic",
- "name": "Screen Definition 7",
- "custom_field_definitions": [
- {
- "id": 919440521,
- "key": "epic_custom_date",
- "position": 1,
- "name": "Epic custom date",
- "type": "CustomFieldDefinitions::DateField",
- "api_type": "date",
- "required": false
}
]
}
], - "has_ideas": true,
- "has_master_features": false,
- "has_epics": false,
- "release_workflow": {
- "id": 717623509,
- "name": "Account product release workflow",
- "statusable_type": "Release",
- "workflow_type": "release"
}, - "requirement_workflow": {
- "id": 499195972,
- "name": "Account product feature workflow",
- "statusable_type": "Feature",
- "workflow_type": "requirement"
}, - "feature_workflow": {
- "id": 499195972,
- "name": "Account product feature workflow",
- "statusable_type": "Feature",
- "workflow_type": "feature"
}, - "initiative_workflow": {
- "id": 61191651,
- "name": "Account initiative workflow",
- "statusable_type": "Initiative",
- "workflow_type": "initiative"
}, - "epic_workflow": {
- "id": 499195972,
- "name": "Account product feature workflow",
- "statusable_type": "Feature",
- "workflow_type": "epic"
}, - "idea_workflow": {
- "id": 80245244,
- "name": "Account product idea workflow",
- "statusable_type": "Idea",
- "workflow_type": "idea"
}, - "strategic_imperative_workflow": {
- "id": 883066232,
- "name": "Account goal workflow",
- "statusable_type": "StrategicImperative",
- "workflow_type": "strategic_imperative"
}, - "page_workflow": {
- "id": 934299270,
- "name": "Account document workflow",
- "statusable_type": "Page",
- "workflow_type": "page"
}, - "key_result_workflow": {
- "id": 1024772447,
- "name": "Account product key result workflow",
- "statusable_type": "KeyResult",
- "workflow_type": "key_result"
}, - "capacity_planning_enabled": false,
- "default_capacity_units": 10,
- "enhanced_capacity_planning_enabled": false,
- "workspace_type": "product_workspace"
}
}object |
{- "product": {
- "name": "New Product",
- "description": "An amazing new product",
- "prefix": "NEWPRODUCT"
}
}{- "product": {
- "id": "6776881149497073946",
- "reference_prefix": "NEWPRODUCT",
- "name": "New Product Line",
- "product_line": true,
- "product_line_type": "a new product line type",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "6776881149488051949",
- "body": "An amazing new product line",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "children": [ ],
- "custom_fields": [ ],
- "screen_definition_ids": { },
- "screen_definitions": [ ],
- "has_ideas": false,
- "has_master_features": true,
- "has_epics": true,
- "release_workflow": {
- "id": 717623509,
- "name": "Account product release workflow",
- "statusable_type": "Release",
- "workflow_type": "release"
}, - "requirement_workflow": {
- "id": 845522269,
- "name": "Example product feature workflow",
- "statusable_type": "Feature",
- "workflow_type": "requirement"
}, - "feature_workflow": {
- "id": 845522269,
- "name": "Example product feature workflow",
- "statusable_type": "Feature",
- "workflow_type": "feature"
}, - "initiative_workflow": {
- "id": 61191651,
- "name": "Account initiative workflow",
- "statusable_type": "Initiative",
- "workflow_type": "initiative"
}, - "epic_workflow": {
- "id": 845522269,
- "name": "Example product feature workflow",
- "statusable_type": "Feature",
- "workflow_type": "epic"
}, - "idea_workflow": {
- "id": 80245244,
- "name": "Account product idea workflow",
- "statusable_type": "Idea",
- "workflow_type": "idea"
}, - "strategic_imperative_workflow": {
- "id": 883066232,
- "name": "Account goal workflow",
- "statusable_type": "StrategicImperative",
- "workflow_type": "strategic_imperative"
}, - "page_workflow": {
- "id": 934299270,
- "name": "Account document workflow",
- "statusable_type": "Page",
- "workflow_type": "page"
}, - "key_result_workflow": {
- "id": 883066232,
- "name": "Account goal workflow",
- "statusable_type": "StrategicImperative",
- "workflow_type": "key_result"
}, - "capacity_planning_enabled": false,
- "default_capacity_units": 10,
- "enhanced_capacity_planning_enabled": false,
- "workspace_type": "product_workspace"
}
}| include_teams | string Example: include_teams=true |
| with_idea_portals | string Example: with_idea_portals=true |
{- "products": [
- {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - {
- "id": "517761884",
- "reference_prefix": "PRJ2",
- "name": "Project 2",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - {
- "id": "702241743",
- "reference_prefix": "PRJ3",
- "name": "Project 3",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
], - "pagination": {
- "total_records": 3,
- "total_pages": 1,
- "current_page": 1
}
}| id required | string Id identifier |
{- "release": {
- "id": "278327321",
- "product_id": "131414752",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "end_date": null,
- "development_started_on": "2019-01-01",
- "release_date": "2019-01-01",
- "external_release_date": "2019-01-01",
- "external_release_date_description": "Sep 11, 2025",
- "external_date_resolution": "exact",
- "released": false,
- "parking_lot": false,
- "master_release": false,
- "released_on": "2019-01-01",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "position": null,
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "status_changed_on": null,
- "theme": {
- "id": "522610666",
- "body": "Theme of the release",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "custom_fields": [
- {
- "id": "432637490",
- "key": "note",
- "name": "Note",
- "updatedAt": "2019-01-01T00:00:00Z",
- "body": "<p>sample text</p>",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ],
- "value": "<p>sample text</p>",
- "type": "note"
}, - {
- "id": 424324947,
- "key": "text_field",
- "name": "TextField",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "Acme Corp",
- "type": "string"
}
], - "comments_count": 1,
- "workflow_status": {
- "id": "738862546",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "goals": [
- {
- "id": "602095703",
- "name": "Goal 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "166463080",
- "body": "Description of goal 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}
], - "key_results": [ ],
- "initiatives": [
- {
- "id": "423077122",
- "reference_num": "PRJ1-S-1",
- "name": "Initiative 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "673273729",
- "body": "Description of initiative 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "integration_fields": [
- {
- "id": "546711007",
- "name": "id",
- "value": "9913333",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "966751335",
- "name": "key",
- "value": "JRA-987222",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
]
}
], - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "created_by_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}
}| product_id required | string ProductId identifier |
object |
{- "release": {
- "owner": "no-reply@aha.io",
- "initiatives": "Initiative 1",
- "name": "Release 3",
- "status": "New",
- "theme": "Our first big release",
- "external_date_resolution": "month"
}
}{- "release": {
- "id": "6776881149495764123",
- "product_id": "131414752",
- "reference_num": "PRJ1-R-5",
- "name": "Release 3",
- "start_date": null,
- "end_date": null,
- "development_started_on": null,
- "release_date": "2019-01-01",
- "external_release_date": "2019-01-01",
- "external_release_date_description": "Oct 4, 2025",
- "external_date_resolution": "sync",
- "released": false,
- "parking_lot": false,
- "master_release": false,
- "released_on": null,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "position": 1,
- "progress": 0,
- "progress_source": "progress_from_features_completed",
- "duration_source": "duration_manual",
- "status_changed_on": "2019-01-01",
- "theme": {
- "id": "6776881149493840411",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "integration_fields": [ ],
- "custom_fields": [ ],
- "comments_count": 0,
- "workflow_status": {
- "id": "738862546",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "owner": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "goals": [ ],
- "key_results": [ ],
- "initiatives": [
- {
- "id": "4125886",
- "reference_num": "PRJ1-S-2",
- "name": "Initiative 2",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "824706757",
- "body": "Description of initiative 2",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "integration_fields": [ ]
}, - {
- "id": "423077122",
- "reference_num": "PRJ1-S-1",
- "name": "Initiative 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "673273729",
- "body": "Description of initiative 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "integration_fields": [
- {
- "id": "546711007",
- "name": "id",
- "value": "9913333",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "966751335",
- "name": "key",
- "value": "JRA-987222",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
]
}
], - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "workflow_status_times": [
- {
- "status_id": "738862546",
- "status_name": "New",
- "started_at": "2019-01-01T00:00:00.000Z",
- "ended_at": null
}
], - "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}
}| product_id required | string ProductId identifier |
{- "releases": [
- {
- "id": "141021264",
- "reference_num": "PRJ1-MR-2",
- "name": "Roll-up Release 2",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [ ],
- "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - {
- "id": "161456549",
- "reference_num": "PRJ1-R-2",
- "name": "Release 2",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [ ],
- "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - {
- "id": "278327321",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - {
- "id": "292454904",
- "reference_num": "PRJ1-MR-1",
- "name": "Roll-up Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [ ],
- "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - {
- "id": "325518644",
- "reference_num": "PRJ1-R-4",
- "name": "Sub release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [ ],
- "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "parent": {
- "id": "141021264",
- "reference_num": "PRJ1-MR-2",
- "name": "Roll-up Release 2",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "created_at": "2019-01-01T00:00:00.000Z",
}
}, - {
- "id": "1050186040",
- "reference_num": "PRJ1-R-3",
- "name": "Release 3",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "453734818",
- "name": "id",
- "value": "4221",
- "integration_id": 342659513,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}
], - "pagination": {
- "total_records": 6,
- "total_pages": 1,
- "current_page": 1
}
}| goal_id required | string GoalId identifier |
{- "releases": [
- {
- "id": "278327321",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}| initiative_id required | string InitiativeId identifier |
{- "releases": [
- {
- "id": "161456549",
- "reference_num": "PRJ1-R-2",
- "name": "Release 2",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [ ],
- "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - {
- "id": "278327321",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}
], - "pagination": {
- "total_records": 2,
- "total_pages": 1,
- "current_page": 1
}
}| release_id required | string ReleaseId identifier |
{- "releases": [
- {
- "id": "325518644",
- "reference_num": "PRJ1-R-4",
- "name": "Sub release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [ ],
- "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "parent": {
- "id": "141021264",
- "reference_num": "PRJ1-MR-2",
- "name": "Roll-up Release 2",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "created_at": "2019-01-01T00:00:00.000Z",
}
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}| release_id required | string ReleaseId identifier |
{- "releases": [
- {
- "id": "85510963",
- "reference_num": "PRJ4-R-4",
- "name": "Parking lot for Project 4",
- "parking_lot": true,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "935317104",
- "integration_fields": [ ],
- "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "935317104",
- "reference_prefix": "PRJ4",
- "name": "Project 4",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - {
- "id": "141021264",
- "reference_num": "PRJ1-MR-2",
- "name": "Roll-up Release 2",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [ ],
- "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - {
- "id": "161456549",
- "reference_num": "PRJ1-R-2",
- "name": "Release 2",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [ ],
- "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - {
- "id": "278327321",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - {
- "id": "292454904",
- "reference_num": "PRJ1-MR-1",
- "name": "Roll-up Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [ ],
- "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - {
- "id": "325518644",
- "reference_num": "PRJ1-R-4",
- "name": "Sub release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [ ],
- "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "parent": {
- "id": "141021264",
- "reference_num": "PRJ1-MR-2",
- "name": "Roll-up Release 2",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "created_at": "2019-01-01T00:00:00.000Z",
}
}, - {
- "id": "342040612",
- "reference_num": "PRJ3-R-1",
- "name": "Release 3 Project 3",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "702241743",
- "integration_fields": [ ],
- "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "702241743",
- "reference_prefix": "PRJ3",
- "name": "Project 3",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - {
- "id": "414276209",
- "reference_num": "PRJ4-R-3",
- "name": "Release month old (shipped)",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "935317104",
- "integration_fields": [ ],
- "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "935317104",
- "reference_prefix": "PRJ4",
- "name": "Project 4",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - {
- "id": "637342960",
- "reference_num": "PRJ2-R-2",
- "name": "Parking lot for Project 2",
- "parking_lot": true,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "517761884",
- "integration_fields": [ ],
- "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "517761884",
- "reference_prefix": "PRJ2",
- "name": "Project 2",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - {
- "id": "800484072",
- "reference_num": "PRJ4-R-2",
- "name": "Release week old (shipped)",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "935317104",
- "integration_fields": [ ],
- "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "935317104",
- "reference_prefix": "PRJ4",
- "name": "Project 4",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - {
- "id": "918502240",
- "reference_num": "PRJ4-R-1",
- "name": "Release 4",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "935317104",
- "integration_fields": [ ],
- "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "935317104",
- "reference_prefix": "PRJ4",
- "name": "Project 4",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - {
- "id": "946589036",
- "reference_num": "PRJe-R-4",
- "name": "Parking lot",
- "parking_lot": true,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "702241743",
- "integration_fields": [ ],
- "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "702241743",
- "reference_prefix": "PRJ3",
- "name": "Project 3",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - {
- "id": "1000426269",
- "reference_num": "PRJ2-R-1",
- "name": "Release 2",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "517761884",
- "integration_fields": [ ],
- "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "517761884",
- "reference_prefix": "PRJ2",
- "name": "Project 2",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - {
- "id": "1050186040",
- "reference_num": "PRJ1-R-3",
- "name": "Release 3",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "453734818",
- "name": "id",
- "value": "4221",
- "integration_id": 342659513,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}
], - "pagination": {
- "total_records": 14,
- "total_pages": 1,
- "current_page": 1
}
}| product_id required | string ProductId identifier |
| id required | string Id identifier |
object |
{- "release": {
- "initiatives": [ ],
- "name": "Smarter release"
}
}{- "release": {
- "id": "278327321",
- "product_id": "131414752",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "end_date": null,
- "development_started_on": "2019-01-01",
- "release_date": "2019-01-01",
- "external_release_date": "2019-01-01",
- "external_release_date_description": "Sep 11, 2025",
- "external_date_resolution": "exact",
- "released": false,
- "parking_lot": false,
- "master_release": false,
- "released_on": null,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "position": null,
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "status_changed_on": null,
- "theme": {
- "id": "522610666",
- "body": "Theme of the release",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "custom_fields": [
- {
- "id": "432637490",
- "key": "note",
- "name": "Note",
- "updatedAt": "2019-01-01T00:00:00Z",
- "body": "<p>sample text</p>",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ],
- "value": "<p>sample text</p>",
- "type": "note"
}, - {
- "id": 424324947,
- "key": "text_field",
- "name": "TextField",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "Acme Corp",
- "type": "string"
}
], - "comments_count": 1,
- "workflow_status": {
- "id": "738862546",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "goals": [
- {
- "id": "602095703",
- "name": "Goal 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "166463080",
- "body": "Description of goal 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}
], - "key_results": [ ],
- "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "parent": {
- "id": "292454904",
- "reference_num": "PRJ1-MR-1",
- "name": "Roll-up Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - "created_by_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}
}Features belong to releases. This means that if you want to create one then you must scope it to a release.
You can return a result set which is unfiltered, or filter by release , product , or epic. All these means of listing features can be further filtered by specific criteria like name, modification date, tag, or assignee.
Once you have the id of a specific feature, you can inspect, modify, or delete them on the root features resource.
| id required | string Id identifier |
{- "feature": {
- "id": "1007868956",
- "name": "Feature 1",
- "reference_num": "PRJ1-1",
- "initiative_reference_num": "PRJ1-S-1",
- "release_reference_num": "PRJ1-R-1",
- "epic_reference_num": "PRJ1-E-1",
- "position": 1,
- "score": 3,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "start_date": "2019-01-01",
- "due_date": "2019-01-01",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "status_changed_on": null,
- "created_by_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_kind": {
- "id": "98484309",
- "name": "New"
}, - "workflow_status": {
- "id": "934242751",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "description": {
- "id": "793547626",
- "body": "Body of note 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [
- {
- "id": "630489833",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 123,
- "content_type": "application/excel",
- "file_name": "spreadsheet_file.xlsx",
- "file_size": 123
}, - {
- "id": "724655692",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 123,
- "content_type": "text/plain",
- "file_name": "uploaded_file_name.txt",
- "file_size": 123
}
]
}, - "attachments": [ ],
- "integration_fields": [
- {
- "id": "92040219",
- "name": "url",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "728894778",
- "name": "key",
- "value": "JRA-123",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "846945422",
- "name": "id",
- "value": "435",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "release": {
- "id": "278327321",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - "master_feature": {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - "belongs_to_release_phase": {
- "id": "20526005",
- "name": "Alpha",
- "start_on": "2019-01-01",
- "end_on": "2019-01-01",
- "type": "phase",
- "release_id": 278327321,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "description": {
- "id": "243384959",
- "body": "Description of release phase 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}, - "epic": {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "requirements": [
- {
- "id": "96915428",
- "name": "Body of requirement 2",
- "reference_num": "PRJ1-1-2",
- "position": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "release_id": 278327321,
- "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_status": {
- "id": "1025247908",
- "name": "Shipped",
- "position": 5,
- "complete": true,
- "color": "#ecdd8f"
}, - "description": {
- "id": "6776881149487303525",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "feature": {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "attachments": [ ],
- "tags": [ ],
- "full_tags": [ ],
- "custom_fields": [ ],
- "integration_fields": [ ],
- "comments_count": 0
}, - {
- "id": "483368544",
- "name": "Body of requirement 1",
- "reference_num": "PRJ1-1-1",
- "position": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "release_id": 278327321,
- "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_status": {
- "id": "934242751",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "910541534",
- "body": "Body of requirement 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "feature": {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "attachments": [ ],
- "tags": [ ],
- "full_tags": [ ],
- "custom_fields": [
- {
- "id": 848810602,
- "key": "expected_completion_date",
- "name": "Expected completion date",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "2019-01-01",
- "type": "date"
}, - {
- "id": 731808726,
- "key": "requested_by",
- "name": "Requested By",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "TK",
- "type": "string"
}
], - "integration_fields": [
- {
- "id": "32487847",
- "name": "key",
- "value": "JRA-987",
- "integration_id": 342659513,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "417785887",
- "name": "id",
- "value": "991",
- "integration_id": 342659513,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "803330186",
- "name": "aha::remote_entity",
- "value": "issue_10100",
- "integration_id": 342659513,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "comments_count": 1
}, - {
- "id": "851574643",
- "name": "Body of requirement 3",
- "reference_num": "PRJ1-1-3",
- "position": 3,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "release_id": 278327321,
- "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_status": {
- "id": "922838743",
- "name": "Not started",
- "position": 8,
- "complete": false,
- "color": "#dce790"
}, - "description": {
- "id": "6776881149485217306",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "feature": {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "attachments": [ ],
- "tags": [ ],
- "full_tags": [ ],
- "custom_fields": [ ],
- "integration_fields": [ ],
- "comments_count": 0
}
], - "initiative": {
- "id": "423077122",
- "reference_num": "PRJ1-S-1",
- "name": "Initiative 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "673273729",
- "body": "Description of initiative 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "integration_fields": [
- {
- "id": "546711007",
- "name": "id",
- "value": "9913333",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "966751335",
- "name": "key",
- "value": "JRA-987222",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
]
}, - "goals": [
- {
- "id": "602095703",
- "name": "Goal 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "166463080",
- "body": "Description of goal 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}
], - "key_results": [
- {
- "id": "631791848",
- "name": "KR 1",
- "reference_num": "DEMOENT-G-1-KR-1",
- "position": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "target_metric": "100%",
- "starting_metric": "5%",
- "current_metric": "20%"
}
], - "comments_count": 1,
- "score_facts": [
- {
- "id": "728895917",
- "value": 1,
- "name": "Effort"
}, - {
- "id": "846938137",
- "value": 2,
- "name": "Benefit"
}
], - "tags": [
- "Engineering",
- "Infrastructure"
], - "full_tags": [
- {
- "id": 3412727,
- "name": "Engineering",
- "color": "#e09052"
}, - {
- "id": 775582684,
- "name": "Infrastructure",
- "color": "#7552e0"
}
], - "custom_fields": [
- {
- "id": 1051489895,
- "key": "equation_specs_field",
- "name": "Equation specs field",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": {
- "values": {
- "123": {
- "value": 10,
- "name": "a",
- "display_value": "10.0"
}, - "456": {
- "value": "Foobar",
- "name": "b",
- "display_value": "Foobar"
}, - "789": {
- "value": null,
- "name": "789",
- "display_value": null
}
}
}, - "type": "equation_sheet"
}, - {
- "id": 621325984,
- "key": "expected_completion_date",
- "name": "Expected completion date",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "2019-01-01",
- "type": "date"
}, - {
- "id": 694694494,
- "key": "negative_scorecard",
- "name": "Negative custom scorecard",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": 31,
- "type": "scorecard",
- "score_facts": [
- {
- "id": "462102328",
- "value": 6,
- "name": "Negative default value"
}
]
}, - {
- "id": 736691743,
- "key": "upload",
- "name": "Upload",
- "updatedAt": "2019-01-01T00:00:00Z",
- "attachments": [
- {
- "id": "471688235",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 123,
- "content_type": "text/plain",
- "file_name": "uploaded_file_name.txt",
- "file_size": 123
}
], - "type": "attachment"
}
], - "feature_links": [
- {
- "link_type": "Depends on",
- "link_type_id": 20,
- "created_at": "2019-01-01T00:00:00.000Z",
- "parent_record": {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "child_record": {
- "id": "622562724",
- "reference_num": "PRJ1-2",
- "name": "Another Feature",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
}
], - "feature_only_original_estimate": null,
- "feature_only_remaining_estimate": null,
- "feature_only_work_done": null
}
}Features belong to releases. This means that if you want to create one then you must scope it to a release.
You can return a result set which is unfiltered, or filter by release , product , or epic. All these means of listing features can be further filtered by specific criteria like name, modification date, tag, or assignee.
Once you have the id of a specific feature, you can inspect, modify, or delete them on the root features resource.
| id required | string Id identifier |
Creates a new feature in a release with full details including assignee and description
| release_id required | string ReleaseId identifier |
object |
{- "feature": {
- "name": "New name",
- "workflow_kind": "new",
- "workflow_status": {
- "name": "Designed"
}, - "description": "<p>This is the description</p>",
- "assigned_to_user": {
- "email": "no-reply@aha.io"
}
}
}{- "feature": {
- "id": "6776881149496854993",
- "name": "New feature",
- "reference_num": "PRJ1-251",
- "initiative_reference_num": null,
- "release_reference_num": "PRJ1-R-1",
- "epic_reference_num": null,
- "position": 1,
- "score": 13,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "start_date": null,
- "due_date": null,
- "product_id": "131414752",
- "progress": 0,
- "progress_source": "progress_manual",
- "status_changed_on": "2019-01-01",
- "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_kind": {
- "id": "98484309",
- "name": "New"
}, - "workflow_status": {
- "id": "962984386",
- "name": "Designed",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "description": {
- "id": "6776881149494125544",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "attachments": [ ],
- "integration_fields": [ ],
- "release": {
- "id": "278327321",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - "assigned_to_user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": true
}, - "requirements": [ ],
- "goals": [ ],
- "key_results": [ ],
- "comments_count": 0,
- "score_facts": [
- {
- "id": "6776881149484679393",
- "value": 3,
- "name": "Effort"
}, - {
- "id": "6776881149490073185",
- "value": 10,
- "name": "Benefit"
}
], - "tags": [ ],
- "full_tags": [ ],
- "custom_fields": [ ],
- "feature_links": [ ],
- "workflow_status_times": [
- {
- "status_id": "962984386",
- "status_name": "Designed",
- "started_at": "2019-01-01T00:00:00.000Z",
- "ended_at": null
}
], - "feature_only_original_estimate": null,
- "feature_only_remaining_estimate": null,
- "feature_only_work_done": null
}
}Features belong to releases. This means that if you want to create one then you must scope it to a release.
You can return a result set which is unfiltered, or filter by release , product , or epic. All these means of listing features can be further filtered by specific criteria like name, modification date, tag, or assignee.
Once you have the id of a specific feature, you can inspect, modify, or delete them on the root features resource.
| release_id required | string ReleaseId identifier |
{- "features": [
- {
- "id": "209201304",
- "reference_num": "PRJ1-4",
- "name": "Another Fourth Feature",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - {
- "id": "303873333",
- "reference_num": "PRJ1-3",
- "name": "Another Third Feature",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - {
- "id": "622562724",
- "reference_num": "PRJ1-2",
- "name": "Another Feature",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - {
- "id": "998184963",
- "reference_num": "PRJ1-5",
- "name": "Another Fifth Feature",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
], - "pagination": {
- "total_records": 5,
- "total_pages": 1,
- "current_page": 1
}
}Retrieves a paginated list of all features across the account with optional filtering and field selection
{- "features": [
- {
- "id": "101074039",
- "reference_num": "PRJ2-1",
- "name": "A feature in project 2",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "517761884"
}, - {
- "id": "209201304",
- "reference_num": "PRJ1-4",
- "name": "Another Fourth Feature",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - {
- "id": "229579240",
- "reference_num": "PRJ3-1",
- "name": "Feature without Requirements",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "702241743"
}, - {
- "id": "303873333",
- "reference_num": "PRJ1-3",
- "name": "Another Third Feature",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - {
- "id": "622562724",
- "reference_num": "PRJ1-2",
- "name": "Another Feature",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - {
- "id": "959120953",
- "reference_num": "PRJ3-2",
- "name": "A third Feature",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "702241743"
}, - {
- "id": "998184963",
- "reference_num": "PRJ1-5",
- "name": "Another Fifth Feature",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
], - "pagination": {
- "total_records": 8,
- "total_pages": 1,
- "current_page": 1
}
}Features belong to releases. This means that if you want to create one then you must scope it to a release.
You can return a result set which is unfiltered, or filter by release , product , or epic. All these means of listing features can be further filtered by specific criteria like name, modification date, tag, or assignee.
Once you have the id of a specific feature, you can inspect, modify, or delete them on the root features resource.
| epic_id required | string EpicId identifier |
{- "features": [
- {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}Features belong to releases. This means that if you want to create one then you must scope it to a release.
You can return a result set which is unfiltered, or filter by release , product , or epic. All these means of listing features can be further filtered by specific criteria like name, modification date, tag, or assignee.
Once you have the id of a specific feature, you can inspect, modify, or delete them on the root features resource.
| product_id required | string ProductId identifier |
{- "features": [
- {
- "id": "209201304",
- "reference_num": "PRJ1-4",
- "name": "Another Fourth Feature",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - {
- "id": "303873333",
- "reference_num": "PRJ1-3",
- "name": "Another Third Feature",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - {
- "id": "622562724",
- "reference_num": "PRJ1-2",
- "name": "Another Feature",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - {
- "id": "998184963",
- "reference_num": "PRJ1-5",
- "name": "Another Fifth Feature",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
], - "pagination": {
- "total_records": 5,
- "total_pages": 1,
- "current_page": 1
}
}Features belong to releases. This means that if you want to create one then you must scope it to a release.
You can return a result set which is unfiltered, or filter by release , product , or epic. All these means of listing features can be further filtered by specific criteria like name, modification date, tag, or assignee.
Once you have the id of a specific feature, you can inspect, modify, or delete them on the root features resource.
| goal_id required | string GoalId identifier |
{- "features": [
- {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}Features belong to releases. This means that if you want to create one then you must scope it to a release.
You can return a result set which is unfiltered, or filter by release , product , or epic. All these means of listing features can be further filtered by specific criteria like name, modification date, tag, or assignee.
Once you have the id of a specific feature, you can inspect, modify, or delete them on the root features resource.
| initiative_id required | string InitiativeId identifier |
{- "features": [
- {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}Converts an existing feature into an epic, maintaining all relationships and data
| id required | string Id identifier |
{- "": {
- "id": "6776881149483859492",
- "name": "A feature in project 2",
- "reference_num": "PRJ2-E-251",
- "initiative_reference_num": null,
- "position": 1000,
- "score": 0,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "start_date": null,
- "due_date": null,
- "product_id": "517761884",
- "progress": 0,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "status_changed_on": "2019-01-01",
- "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_status": {
- "id": "962984386",
- "name": "Designed",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}, - "project": {
- "id": "517761884",
- "reference_prefix": "PRJ2",
- "name": "Project 2",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "description": {
- "id": "6776881149487582254",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "attachments": [ ],
- "integration_fields": [ ],
- "release": {
- "id": "1000426269",
- "reference_num": "PRJ2-R-1",
- "name": "Release 2",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "517761884",
- "integration_fields": [ ],
- "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "517761884",
- "reference_prefix": "PRJ2",
- "name": "Project 2",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "features": [ ],
- "goals": [ ],
- "key_results": [ ],
- "comments_count": 0,
- "score_facts": [ ],
- "tags": [ ],
- "full_tags": [ ],
- "custom_fields": [ ],
- "workflow_status_times": [
- {
- "status_id": "962984386",
- "status_name": "Designed",
- "started_at": "2019-01-01T00:00:00.000Z",
- "ended_at": null
}
], - "_links": [ ],
- "master_feature_only_original_estimate": null,
- "master_feature_only_remaining_estimate": null,
- "master_feature_only_work_done": null,
- "epic_only_original_estimate": null,
- "epic_only_remaining_estimate": null,
- "epic_only_work_done": null
}
}| id required | string Id identifier |
{- "requirement": {
- "id": "483368544",
- "name": "Body of requirement 1",
- "reference_num": "PRJ1-1-1",
- "position": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "release_id": 278327321,
- "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_status": {
- "id": "934242751",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "910541534",
- "body": "Body of requirement 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "feature": {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "attachments": [ ],
- "tags": [ ],
- "full_tags": [ ],
- "custom_fields": [
- {
- "id": 848810602,
- "key": "expected_completion_date",
- "name": "Expected completion date",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "2019-01-01",
- "type": "date"
}, - {
- "id": 731808726,
- "key": "requested_by",
- "name": "Requested By",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "TK",
- "type": "string"
}
], - "integration_fields": [
- {
- "id": "32487847",
- "name": "key",
- "value": "JRA-987",
- "integration_id": 342659513,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "417785887",
- "name": "id",
- "value": "991",
- "integration_id": 342659513,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "803330186",
- "name": "aha::remote_entity",
- "value": "issue_10100",
- "integration_id": 342659513,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "comments_count": 1
}
}| feature_id required | string FeatureId identifier |
| updated_since | string Example: updated_since=2019-01-01T00:00:00Z |
{- "requirements": [
- {
- "id": "96915428",
- "name": "Body of requirement 2",
- "reference_num": "PRJ1-1-2",
- "position": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "release_id": 278327321,
- "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_status": {
- "id": "1025247908",
- "name": "Shipped",
- "position": 5,
- "complete": true,
- "color": "#ecdd8f"
}, - "description": {
- "id": "6776881149488866340",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "feature": {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "attachments": [ ],
- "tags": [ ],
- "full_tags": [ ],
- "custom_fields": [ ],
- "integration_fields": [ ],
- "comments_count": 0
}, - {
- "id": "851574643",
- "name": "Body of requirement 3",
- "reference_num": "PRJ1-1-3",
- "position": 3,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "release_id": 278327321,
- "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_status": {
- "id": "922838743",
- "name": "Not started",
- "position": 8,
- "complete": false,
- "color": "#dce790"
}, - "description": {
- "id": "6776881149498326874",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "feature": {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "attachments": [ ],
- "tags": [ ],
- "full_tags": [ ],
- "custom_fields": [ ],
- "integration_fields": [ ],
- "comments_count": 0
}
], - "pagination": {
- "total_records": 2,
- "total_pages": 1,
- "current_page": 1
}
}| feature_id required | string FeatureId identifier |
object |
{- "requirement": {
- "name": "New name",
- "workflow_status": {
- "name": "Designed"
}, - "description": "<p>This is the description</p>",
- "assigned_to_user": {
- "email": "no-reply@aha.io"
}
}
}{- "requirement": {
- "id": "6776881149495309190",
- "name": "New name",
- "reference_num": "PRJ1-1-4",
- "position": 4,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "release_id": 278327321,
- "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_status": {
- "id": "962984386",
- "name": "Designed",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}, - "description": {
- "id": "6776881149498089069",
- "body": "<p>This is the description</p>",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "feature": {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "assigned_to_user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "attachments": [ ],
- "tags": [ ],
- "full_tags": [ ],
- "custom_fields": [ ],
- "integration_fields": [ ],
- "comments_count": 0,
- "workflow_status_times": [
- {
- "status_id": "962984386",
- "status_name": "Designed",
- "started_at": "2019-01-01T00:00:00.000Z",
- "ended_at": null
}
]
}
}| id required | string Id identifier |
{- "feature": {
- "id": "6776881149487717549",
- "name": "Body of requirement 1",
- "reference_num": "PRJ1-251",
- "initiative_reference_num": null,
- "release_reference_num": "PRJ1-R-1",
- "epic_reference_num": null,
- "position": 1,
- "score": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "start_date": null,
- "due_date": null,
- "product_id": "131414752",
- "progress": 0,
- "progress_source": "progress_manual",
- "status_changed_on": "2019-01-01",
- "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_kind": {
- "id": "98484309",
- "name": "New"
}, - "workflow_status": {
- "id": "934242751",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "description": {
- "id": "910541534",
- "body": "Body of requirement 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "attachments": [ ],
- "integration_fields": [ ],
- "release": {
- "id": "278327321",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "requirements": [ ],
- "goals": [ ],
- "comments_count": 1,
- "score_facts": [ ],
- "tags": [ ],
- "full_tags": [ ],
- "custom_fields": [
- {
- "id": "6776881149495350529",
- "key": "expected_completion_date",
- "name": "Expected completion date",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "2019-01-01",
- "type": "date"
}
], - "feature_links": [
- {
- "link_type": "Relates to",
- "link_type_id": 10,
- "created_at": "2019-01-01T00:00:00.000Z",
- "parent_record": {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "child_record": {
- "id": "6776881149487717549",
- "reference_num": "PRJ1-251",
- "name": "Body of requirement 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
}
], - "workflow_status_times": [
- {
- "status_id": "934242751",
- "status_name": "New",
- "started_at": "2019-01-01T00:00:00.000Z",
- "ended_at": null
}
], - "feature_only_original_estimate": null,
- "feature_only_remaining_estimate": null,
- "feature_only_work_done": null
}
}When creating an idea where the creator is an idea user we strongly suggest
to provide the submitted_idea_portal_id attribute to the idea
to ensure that the idea is created in the correct ideas portal and the user
gets access to the portal.
If you don't want the idea to be submitted to any portal, you can skip this
by setting skip_portal: true in the request body.
| id required | string Id identifier |
{- "idea": {
- "id": "1055237874",
- "name": "Idea 3 Merged",
- "reference_num": "PRJ1-I-3",
- "score": 0,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "votes": 2,
- "initial_votes": 2,
- "status_changed_at": null,
- "workflow_status": {
- "id": "1009437757",
- "name": "In progress",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}, - "description": {
- "id": "506957205",
- "body": "Description of idea 3",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "visibility": "Visible to all ideas portal users",
- "duplicate_of": {
- "id": "444379319",
- "reference_num": "PRJ1-I-2",
- "name": "Idea 2",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "1009437757",
- "name": "In progress",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}, - "description": {
- "id": "378547141",
- "body": "Description of idea 2",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}, - "product": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "created_by_portal_user": {
- "id": "646391926",
- "name": "John Long",
- "email": "john@long.com",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - "created_by_idea_user": {
- "id": "1056507375",
- "name": "John Long",
- "email": "john@long.com",
- "created_at": "2019-01-01T00:00:00.000Z",
- "title": null
}, - "assigned_to_user": null,
- "feature": {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "endorsements_count": 0,
- "comments_count": 0,
- "score_facts": [ ],
- "tags": [ ],
- "full_tags": [ ],
- "categories": [ ],
- "custom_fields": [ ],
- "integration_fields": [ ]
}
}When creating an idea where the creator is an idea user we strongly suggest
to provide the submitted_idea_portal_id attribute to the idea
to ensure that the idea is created in the correct ideas portal and the user
gets access to the portal.
If you don't want the idea to be submitted to any portal, you can skip this
by setting skip_portal: true in the request body.
| id required | string Id identifier |
Creates a new idea with basic details including initial vote count
| product_id required | string ProductId identifier |
| promotable_type | string |
| release_id | integer |
{- "idea": {
- "name": "New idea",
- "description": "<p>This is the description</p>",
- "initial_votes": 3
}
}{- "idea": {
- "id": "6776881149487483845",
- "name": "Comprehensive Feature Request",
- "reference_num": "PRJ1-I-10",
- "score": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "votes": 15,
- "initial_votes": 15,
- "status_changed_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "6776881149489364397",
- "body": "<h1>Problem Statement</h1><p>Users need better mobile experience</p><h2>Proposed Solution</h2><p>Native mobile app with offline capabilities</p>",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "visibility": "Visible to all ideas portal users",
- "admin_response": {
- "id": "6776881149492320383",
- "body": "Great idea! This aligns with our mobile strategy roadmap. We'll evaluate this for Q3 implementation.",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ],
- "responded_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}, - "product": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "created_by_portal_user": {
- "id": "384687358",
- "name": "Sammy Smith",
- "email": "sammy@smith.com",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - "created_by_idea_user": {
- "id": "244576613",
- "name": "Sammy Smith",
- "email": "sammy@smith.com",
- "created_at": "2019-01-01T00:00:00.000Z",
- "title": null
}, - "assigned_to_user": null,
- "endorsements_count": 0,
- "comments_count": 0,
- "score_facts": [ ],
- "tags": [
- "mobile",
- "offline",
- "performance",
- "UX"
], - "full_tags": [
- {
- "id": "6776881149483567678",
- "name": "performance",
- "color": "#e05298"
}, - {
- "id": "6776881149486951248",
- "name": "UX",
- "color": "#a952e0"
}, - {
- "id": "6776881149488941674",
- "name": "mobile",
- "color": "#bae052"
}, - {
- "id": "6776881149490298781",
- "name": "offline",
- "color": "#9ae052"
}
], - "categories": [
- {
- "id": "552935478",
- "name": "Storage",
- "parent_id": null,
- "project_id": 131414752,
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "custom_fields": [ ],
- "workflow_status_times": [
- {
- "status_id": "3259216",
- "status_name": "New",
- "started_at": "2019-01-01T00:00:00.000Z",
- "ended_at": null
}
], - "integration_fields": [ ]
}
}When creating an idea where the creator is an idea user we strongly suggest
to provide the submitted_idea_portal_id attribute to the idea
to ensure that the idea is created in the correct ideas portal and the user
gets access to the portal.
If you don't want the idea to be submitted to any portal, you can skip this
by setting skip_portal: true in the request body.
| product_id required | string ProductId identifier |
{- "ideas": [
- {
- "id": "58056975",
- "reference_num": "PRJ1-I-1",
- "name": "Idea 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "103757394",
- "body": "Description of idea 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}, - {
- "id": "68691224",
- "reference_num": "PRJ1-I-12",
- "name": "Idea 5",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "6776881149495843340",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}, - {
- "id": "162120796",
- "reference_num": "PRJ1-I-5",
- "name": "Idea 4",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "478357480",
- "body": "Description of idea custom tables",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}, - {
- "id": "444379319",
- "reference_num": "PRJ1-I-2",
- "name": "Idea 2",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "1009437757",
- "name": "In progress",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}, - "description": {
- "id": "378547141",
- "body": "Description of idea 2",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}, - {
- "id": "857675141",
- "reference_num": "PRJ1-I-11",
- "name": "Idea 004",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "6776881149485861297",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}, - {
- "id": "1055237874",
- "reference_num": "PRJ1-I-3",
- "name": "Idea 3 Merged",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "1009437757",
- "name": "In progress",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}, - "description": {
- "id": "506957205",
- "body": "Description of idea 3",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}
], - "pagination": {
- "total_records": 6,
- "total_pages": 1,
- "current_page": 1
}
}When creating an idea where the creator is an idea user we strongly suggest
to provide the submitted_idea_portal_id attribute to the idea
to ensure that the idea is created in the correct ideas portal and the user
gets access to the portal.
If you don't want the idea to be submitted to any portal, you can skip this
by setting skip_portal: true in the request body.
{- "ideas": [
- {
- "id": "58056975",
- "reference_num": "PRJ1-I-1",
- "name": "Idea 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "103757394",
- "body": "Description of idea 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}, - {
- "id": "68691224",
- "reference_num": "PRJ1-I-12",
- "name": "Idea 5",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "6776881149484500966",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}, - {
- "id": "140490859",
- "reference_num": "PRJ1-I-8",
- "name": "Some idea name 3",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "6776881149490665511",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}, - {
- "id": "162120796",
- "reference_num": "PRJ1-I-5",
- "name": "Idea 4",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "478357480",
- "body": "Description of idea custom tables",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}, - {
- "id": "245519441",
- "reference_num": "PRJ1-I-7",
- "name": "Some idea name 2",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "716451363",
- "body": "Description of idea endorsement 2",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}, - {
- "id": "290908627",
- "reference_num": "PRJ1-I-9",
- "name": "Some idea name 4",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "6776881149497367311",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}, - {
- "id": "397084149",
- "reference_num": "PRJ1-I-6",
- "name": "Some idea name 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "868056987",
- "body": "Description of idea endorsement 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}, - {
- "id": "444379319",
- "reference_num": "PRJ1-I-2",
- "name": "Idea 2",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "1009437757",
- "name": "In progress",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}, - "description": {
- "id": "378547141",
- "body": "Description of idea 2",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}, - {
- "id": "731163180",
- "reference_num": "PRJ2-I-2",
- "name": "Idea 2 project 2",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "928262307",
- "body": "Description of idea 2 project2",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}, - {
- "id": "849214356",
- "reference_num": "PRJ2-I-1",
- "name": "Idea 1 project 2",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "5445688",
- "body": "Description of idea 1 project2",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}, - {
- "id": "857675141",
- "reference_num": "PRJ1-I-11",
- "name": "Idea 004",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "6776881149494084357",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}, - {
- "id": "926598431",
- "reference_num": "PRJ5-I-1",
- "name": "Idea 1 Project 5",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "1009437757",
- "name": "In progress",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}, - "description": {
- "id": "6776881149487190134",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}, - {
- "id": "1055237874",
- "reference_num": "PRJ1-I-3",
- "name": "Idea 3 Merged",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "1009437757",
- "name": "In progress",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}, - "description": {
- "id": "506957205",
- "body": "Description of idea 3",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}
], - "pagination": {
- "total_records": 13,
- "total_pages": 1,
- "current_page": 1
}
}When creating an idea where the creator is an idea user we strongly suggest
to provide the submitted_idea_portal_id attribute to the idea
to ensure that the idea is created in the correct ideas portal and the user
gets access to the portal.
If you don't want the idea to be submitted to any portal, you can skip this
by setting skip_portal: true in the request body.
| id required | string Id identifier |
| fields | string Example: fields=description,plain_text_body |
{- "idea": {
- "id": "58056975",
- "product_id": "131414752",
- "description": {
- "id": "103757394",
- "body": "<p>Description of idea 1</p>",
- "plain_text_body": "Description of idea 1"
}
}
}When creating an idea where the creator is an idea user we strongly suggest
to provide the submitted_idea_portal_id attribute to the idea
to ensure that the idea is created in the correct ideas portal and the user
gets access to the portal.
If you don't want the idea to be submitted to any portal, you can skip this
by setting skip_portal: true in the request body.
| id required | string Id identifier |
| promotable_type | string |
| release_id | integer |
{- "promotable_type": "feature",
- "release_id": 278327321
}{- "idea": {
- "id": "58056975",
- "name": "Idea 1",
- "reference_num": "PRJ1-I-1",
- "score": 15,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "votes": 1,
- "initial_votes": 0,
- "status_changed_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "1009437757",
- "name": "In progress",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}, - "description": {
- "id": "103757394",
- "body": "Description of idea 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "visibility": "Visible to all ideas portal users",
- "product": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "assigned_to_user": null,
- "feature": {
- "id": "6776881149492554846",
- "reference_num": "PRJ1-251",
- "name": "Idea 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "endorsements_count": 1,
- "comments_count": 0,
- "score_facts": [
- {
- "id": "244026645",
- "value": 10,
- "name": "Effort"
}, - {
- "id": "394452137",
- "value": 5,
- "name": "Benefit"
}
], - "tags": [
- "Infrastructure"
], - "full_tags": [
- {
- "id": 775582684,
- "name": "Infrastructure",
- "color": "#7552e0"
}
], - "categories": [
- {
- "id": "972845454",
- "name": "Hard disk drive",
- "parent_id": 552935478,
- "project_id": 131414752,
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "custom_fields": [
- {
- "id": 585340588,
- "key": "component",
- "name": "Component",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": [
- "web"
], - "type": "array"
}, - {
- "id": 267687015,
- "key": "custom_scorecard_definition",
- "name": "Some custom scorecard definition",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": 11,
- "type": "scorecard",
- "score_facts": [ ]
}, - {
- "id": 193641455,
- "key": "text_field1",
- "name": "TextField1",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "Cairo",
- "type": "string"
}, - {
- "id": 310635095,
- "key": "text_field2",
- "name": "TextField2",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "Rennes",
- "type": "string"
}, - {
- "id": 800380718,
- "key": "upload",
- "name": "Upload",
- "updatedAt": "2019-01-01T00:00:00Z",
- "attachments": [ ],
- "type": "attachment"
}
], - "custom_object_links": [
- {
- "key": "revenue",
- "name": "Revenue",
- "record_type": "CustomObjectRecord",
- "record_ids": [
- 640362830
]
}, - {
- "key": "submitters",
- "name": "Submitters",
- "record_type": "CustomObjectRecord",
- "record_ids": [
- 640362830
]
}
], - "workflow_status_times": [
- {
- "status_id": "1009437757",
- "status_name": "In progress",
- "started_at": "2019-01-01T00:00:00.000Z",
- "ended_at": null
}
], - "integration_fields": [ ]
}
}| id required | string Id identifier |
{- "initiative": {
- "id": "423077122",
- "name": "Initiative 1",
- "reference_num": "PRJ1-S-1",
- "status": "not_started",
- "effort": 30,
- "value": 50,
- "presented": true,
- "color": "#bada55",
- "start_date": null,
- "end_date": null,
- "position": 1,
- "score": 4,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "workflow_status": {
- "id": "53968949",
- "name": "Not Started",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "673273729",
- "body": "Description of initiative 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "attachments": [ ],
- "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "comments_count": 1,
- "goals": [
- {
- "id": "602095703",
- "name": "Goal 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "166463080",
- "body": "Description of goal 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}
], - "key_results": [ ],
- "score_facts": [ ],
- "features": [
- {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
], - "master_features": [
- {
- "id": "269219656",
- "reference_num": "PRJ3-E-3",
- "name": "A different project epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "362457003",
- "reference_num": "PRJ1-E-3",
- "name": "And a third",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "580753216",
- "reference_num": "PRJ1-E-2",
- "name": "Here's another epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}
], - "epic": [
- {
- "id": "269219656",
- "reference_num": "PRJ3-E-3",
- "name": "A different project epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "362457003",
- "reference_num": "PRJ1-E-3",
- "name": "And a third",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "580753216",
- "reference_num": "PRJ1-E-2",
- "name": "Here's another epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}
], - "releases": [
- {
- "id": "161456549",
- "reference_num": "PRJ1-R-2",
- "name": "Release 2",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [ ],
- "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - {
- "id": "278327321",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}
], - "integration_fields": [
- {
- "id": "546711007",
- "name": "id",
- "value": "9913333",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "966751335",
- "name": "key",
- "value": "JRA-987222",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "custom_fields": [
- {
- "id": 973371762,
- "key": "initiative_custom_date",
- "name": "Initiative custom date",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "2019-01-01",
- "type": "date"
}, - {
- "id": 1073063442,
- "key": "initiative_priority",
- "name": "Initiative priority",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "P2",
- "type": "string"
}
], - "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}
}| product_id required | string ProductId identifier |
object |
{- "initiative": {
- "name": "Initiative 3",
- "workflow_status": {
- "name": "Not Started"
}, - "description": "Our first big initiative",
- "time_frame": {
- "id": 813624702
}, - "effort": 15,
- "value": 5,
- "presented": true
}
}{- "initiative": {
- "id": "6776881149487133341",
- "name": "Assigned Initiative",
- "reference_num": "PRJ1-S-251",
- "status": "not_started",
- "effort": 95,
- "value": 40,
- "presented": true,
- "color": "#397e82",
- "start_date": null,
- "end_date": null,
- "position": 3,
- "score": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": 0,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "workflow_status": {
- "id": "53968949",
- "name": "Not Started",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "6776881149499189237",
- "body": "Initiative with assignee",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "attachments": [ ],
- "assigned_to_user": {
- "id": "1049303076",
- "name": "George Gently",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "comments_count": 0,
- "goals": [ ],
- "key_results": [ ],
- "score_facts": [ ],
- "integration_fields": [ ],
- "workflow_status_times": [
- {
- "status_id": "53968949",
- "status_name": "Not Started",
- "started_at": "2019-01-01T00:00:00.000Z",
- "ended_at": null
}
], - "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}
}| product_id required | string ProductId identifier |
{- "initiatives": [
- {
- "id": "4125886",
- "name": "Initiative 2",
- "reference_num": "PRJ1-S-2",
- "status": "not_started",
- "effort": 40,
- "value": 30,
- "presented": true,
- "color": "#bada55",
- "start_date": null,
- "end_date": null,
- "position": 2,
- "score": 0,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "workflow_status": {
- "id": "53968949",
- "name": "Not Started",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "824706757",
- "body": "Description of initiative 2",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "attachments": [ ],
- "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "comments_count": 0,
- "goals": [ ],
- "key_results": [ ],
- "score_facts": [ ],
- "integration_fields": [ ],
- "created_by_user": {
- "id": "82352673",
- "name": "Bob Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}, - {
- "id": "219956332",
- "name": "Initiative 3",
- "reference_num": "PRJ1-S-3",
- "status": "not_started",
- "effort": 40,
- "value": 30,
- "presented": true,
- "color": "#bada55",
- "start_date": null,
- "end_date": null,
- "position": 2,
- "score": 0,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "workflow_status": {
- "id": "53968949",
- "name": "Not Started",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "338250583",
- "body": "Description of project1_initiative3_no_epoch",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "attachments": [ ],
- "assigned_to_user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": true
}, - "comments_count": 0,
- "goals": [ ],
- "key_results": [ ],
- "score_facts": [ ],
- "integration_fields": [ ]
}, - {
- "id": "259736534",
- "name": "Initiative 5",
- "reference_num": "PRJ1-S-5",
- "status": "not_started",
- "effort": 40,
- "value": 30,
- "presented": true,
- "color": "#bada55",
- "start_date": null,
- "end_date": null,
- "position": 2,
- "score": 0,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "workflow_status": {
- "id": "53968949",
- "name": "Not Started",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "1040636124",
- "body": "Description of project1_initiative5_archived_epoch",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "attachments": [ ],
- "assigned_to_user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": true
}, - "time_frame": {
- "id": 834757622,
- "name": "2018"
}, - "comments_count": 0,
- "goals": [ ],
- "key_results": [ ],
- "score_facts": [ ],
- "integration_fields": [ ]
}, - {
- "id": "330016191",
- "name": "Initiative 4",
- "reference_num": "PRJ1-S-4",
- "status": "not_started",
- "effort": 40,
- "value": 30,
- "presented": true,
- "color": "#bada55",
- "start_date": null,
- "end_date": null,
- "position": 2,
- "score": 0,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "workflow_status": {
- "id": "53968949",
- "name": "Not Started",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "999437064",
- "body": "Description of project1_initiative4_active_epoch",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "attachments": [ ],
- "assigned_to_user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": true
}, - "time_frame": {
- "id": 273422810,
- "name": "2017"
}, - "comments_count": 0,
- "goals": [ ],
- "key_results": [ ],
- "score_facts": [ ],
- "integration_fields": [ ]
}, - {
- "id": "423077122",
- "name": "Initiative 1",
- "reference_num": "PRJ1-S-1",
- "status": "not_started",
- "effort": 30,
- "value": 50,
- "presented": true,
- "color": "#bada55",
- "start_date": null,
- "end_date": null,
- "position": 1,
- "score": 4,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "workflow_status": {
- "id": "53968949",
- "name": "Not Started",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "673273729",
- "body": "Description of initiative 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "attachments": [ ],
- "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "comments_count": 1,
- "goals": [
- {
- "id": "602095703",
- "name": "Goal 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "166463080",
- "body": "Description of goal 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}
], - "key_results": [ ],
- "score_facts": [ ],
- "features": [
- {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
], - "master_features": [
- {
- "id": "269219656",
- "reference_num": "PRJ3-E-3",
- "name": "A different project epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "362457003",
- "reference_num": "PRJ1-E-3",
- "name": "And a third",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "580753216",
- "reference_num": "PRJ1-E-2",
- "name": "Here's another epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}
], - "epic": [
- {
- "id": "269219656",
- "reference_num": "PRJ3-E-3",
- "name": "A different project epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "362457003",
- "reference_num": "PRJ1-E-3",
- "name": "And a third",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "580753216",
- "reference_num": "PRJ1-E-2",
- "name": "Here's another epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}
], - "releases": [
- {
- "id": "161456549",
- "reference_num": "PRJ1-R-2",
- "name": "Release 2",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [ ],
- "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - {
- "id": "278327321",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}
], - "integration_fields": [
- {
- "id": "546711007",
- "name": "id",
- "value": "9913333",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "966751335",
- "name": "key",
- "value": "JRA-987222",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "custom_fields": [
- {
- "id": 973371762,
- "key": "initiative_custom_date",
- "name": "Initiative custom date",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "2019-01-01",
- "type": "date"
}, - {
- "id": 1073063442,
- "key": "initiative_priority",
- "name": "Initiative priority",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "P2",
- "type": "string"
}
], - "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}, - {
- "id": "595848429",
- "name": "Initiative complete",
- "reference_num": "PRJ1-S-11",
- "status": "done",
- "effort": 10,
- "value": 70,
- "presented": true,
- "color": "#bada55",
- "start_date": null,
- "end_date": null,
- "position": 1,
- "score": 0,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "workflow_status": {
- "id": "509459046",
- "name": "Done",
- "position": 4,
- "complete": true,
- "color": "#ecdd8f"
}, - "description": {
- "id": "6776881149492436002",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "attachments": [ ],
- "assigned_to_user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": true
}, - "comments_count": 0,
- "goals": [ ],
- "key_results": [ ],
- "score_facts": [ ],
- "integration_fields": [ ]
}
], - "pagination": {
- "total_records": 6,
- "total_pages": 1,
- "current_page": 1
}
}{- "initiatives": [
- {
- "id": "4125886",
- "name": "Initiative 2",
- "reference_num": "PRJ1-S-2",
- "status": "not_started",
- "effort": 40,
- "value": 30,
- "presented": true,
- "color": "#bada55",
- "start_date": null,
- "end_date": null,
- "position": 2,
- "score": 0,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "workflow_status": {
- "id": "53968949",
- "name": "Not Started",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "824706757",
- "body": "Description of initiative 2",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "attachments": [ ],
- "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "comments_count": 0,
- "goals": [ ],
- "key_results": [ ],
- "score_facts": [ ],
- "integration_fields": [ ],
- "created_by_user": {
- "id": "82352673",
- "name": "Bob Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}, - {
- "id": "219956332",
- "name": "Initiative 3",
- "reference_num": "PRJ1-S-3",
- "status": "not_started",
- "effort": 40,
- "value": 30,
- "presented": true,
- "color": "#bada55",
- "start_date": null,
- "end_date": null,
- "position": 2,
- "score": 0,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "workflow_status": {
- "id": "53968949",
- "name": "Not Started",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "338250583",
- "body": "Description of project1_initiative3_no_epoch",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "attachments": [ ],
- "assigned_to_user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": true
}, - "comments_count": 0,
- "goals": [ ],
- "key_results": [ ],
- "score_facts": [ ],
- "integration_fields": [ ]
}, - {
- "id": "259736534",
- "name": "Initiative 5",
- "reference_num": "PRJ1-S-5",
- "status": "not_started",
- "effort": 40,
- "value": 30,
- "presented": true,
- "color": "#bada55",
- "start_date": null,
- "end_date": null,
- "position": 2,
- "score": 0,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "workflow_status": {
- "id": "53968949",
- "name": "Not Started",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "1040636124",
- "body": "Description of project1_initiative5_archived_epoch",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "attachments": [ ],
- "assigned_to_user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": true
}, - "time_frame": {
- "id": 834757622,
- "name": "2018"
}, - "comments_count": 0,
- "goals": [ ],
- "key_results": [ ],
- "score_facts": [ ],
- "integration_fields": [ ]
}, - {
- "id": "330016191",
- "name": "Initiative 4",
- "reference_num": "PRJ1-S-4",
- "status": "not_started",
- "effort": 40,
- "value": 30,
- "presented": true,
- "color": "#bada55",
- "start_date": null,
- "end_date": null,
- "position": 2,
- "score": 0,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "workflow_status": {
- "id": "53968949",
- "name": "Not Started",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "999437064",
- "body": "Description of project1_initiative4_active_epoch",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "attachments": [ ],
- "assigned_to_user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": true
}, - "time_frame": {
- "id": 273422810,
- "name": "2017"
}, - "comments_count": 0,
- "goals": [ ],
- "key_results": [ ],
- "score_facts": [ ],
- "integration_fields": [ ]
}, - {
- "id": "423077122",
- "name": "Initiative 1",
- "reference_num": "PRJ1-S-1",
- "status": "not_started",
- "effort": 30,
- "value": 50,
- "presented": true,
- "color": "#bada55",
- "start_date": null,
- "end_date": null,
- "position": 1,
- "score": 4,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "workflow_status": {
- "id": "53968949",
- "name": "Not Started",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "673273729",
- "body": "Description of initiative 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "attachments": [ ],
- "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "comments_count": 1,
- "goals": [
- {
- "id": "602095703",
- "name": "Goal 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "166463080",
- "body": "Description of goal 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}
], - "key_results": [ ],
- "score_facts": [ ],
- "features": [
- {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
], - "master_features": [
- {
- "id": "269219656",
- "reference_num": "PRJ3-E-3",
- "name": "A different project epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "362457003",
- "reference_num": "PRJ1-E-3",
- "name": "And a third",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "580753216",
- "reference_num": "PRJ1-E-2",
- "name": "Here's another epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}
], - "epic": [
- {
- "id": "269219656",
- "reference_num": "PRJ3-E-3",
- "name": "A different project epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "362457003",
- "reference_num": "PRJ1-E-3",
- "name": "And a third",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "580753216",
- "reference_num": "PRJ1-E-2",
- "name": "Here's another epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}
], - "releases": [
- {
- "id": "161456549",
- "reference_num": "PRJ1-R-2",
- "name": "Release 2",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [ ],
- "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - {
- "id": "278327321",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}
], - "integration_fields": [
- {
- "id": "546711007",
- "name": "id",
- "value": "9913333",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "966751335",
- "name": "key",
- "value": "JRA-987222",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "custom_fields": [
- {
- "id": 973371762,
- "key": "initiative_custom_date",
- "name": "Initiative custom date",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "2019-01-01",
- "type": "date"
}, - {
- "id": 1073063442,
- "key": "initiative_priority",
- "name": "Initiative priority",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "P2",
- "type": "string"
}
], - "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}, - {
- "id": "595848429",
- "name": "Initiative complete",
- "reference_num": "PRJ1-S-11",
- "status": "done",
- "effort": 10,
- "value": 70,
- "presented": true,
- "color": "#bada55",
- "start_date": null,
- "end_date": null,
- "position": 1,
- "score": 0,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "workflow_status": {
- "id": "509459046",
- "name": "Done",
- "position": 4,
- "complete": true,
- "color": "#ecdd8f"
}, - "description": {
- "id": "6776881149496245106",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "attachments": [ ],
- "assigned_to_user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": true
}, - "comments_count": 0,
- "goals": [ ],
- "key_results": [ ],
- "score_facts": [ ],
- "integration_fields": [ ]
}, - {
- "id": "1042392694",
- "name": "Workspace line initiative 1",
- "reference_num": "PL1-S-1",
- "status": "not_started",
- "effort": 40,
- "value": 30,
- "presented": true,
- "color": "#bada55",
- "start_date": null,
- "end_date": null,
- "position": 1,
- "score": 0,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "610602692",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "project": {
- "id": "610602692",
- "reference_prefix": "PL1",
- "name": "Product Line 1",
- "product_line": true,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "workflow_status": {
- "id": "53968949",
- "name": "Not Started",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "133079347",
- "body": "Description of product_line1_initiative1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "attachments": [ ],
- "assigned_to_user": null,
- "comments_count": 0,
- "goals": [ ],
- "key_results": [ ],
- "score_facts": [ ],
- "integration_fields": [ ]
}
], - "pagination": {
- "total_records": 7,
- "total_pages": 1,
- "current_page": 1
}
}| goal_id required | string GoalId identifier |
{- "initiatives": [
- {
- "id": "423077122",
- "name": "Initiative 1",
- "reference_num": "PRJ1-S-1",
- "status": "not_started",
- "effort": 30,
- "value": 50,
- "presented": true,
- "color": "#bada55",
- "start_date": null,
- "end_date": null,
- "position": 1,
- "score": 4,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "workflow_status": {
- "id": "53968949",
- "name": "Not Started",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "673273729",
- "body": "Description of initiative 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "attachments": [ ],
- "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "comments_count": 1,
- "goals": [
- {
- "id": "602095703",
- "name": "Goal 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "166463080",
- "body": "Description of goal 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}
], - "key_results": [ ],
- "score_facts": [ ],
- "features": [
- {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
], - "master_features": [
- {
- "id": "269219656",
- "reference_num": "PRJ3-E-3",
- "name": "A different project epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "362457003",
- "reference_num": "PRJ1-E-3",
- "name": "And a third",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "580753216",
- "reference_num": "PRJ1-E-2",
- "name": "Here's another epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}
], - "epic": [
- {
- "id": "269219656",
- "reference_num": "PRJ3-E-3",
- "name": "A different project epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "362457003",
- "reference_num": "PRJ1-E-3",
- "name": "And a third",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "580753216",
- "reference_num": "PRJ1-E-2",
- "name": "Here's another epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}
], - "releases": [
- {
- "id": "161456549",
- "reference_num": "PRJ1-R-2",
- "name": "Release 2",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [ ],
- "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - {
- "id": "278327321",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}
], - "integration_fields": [
- {
- "id": "546711007",
- "name": "id",
- "value": "9913333",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "966751335",
- "name": "key",
- "value": "JRA-987222",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "custom_fields": [
- {
- "id": 973371762,
- "key": "initiative_custom_date",
- "name": "Initiative custom date",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "2019-01-01",
- "type": "date"
}, - {
- "id": 1073063442,
- "key": "initiative_priority",
- "name": "Initiative priority",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "P2",
- "type": "string"
}
], - "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}| product_id required | string ProductId identifier |
| id required | string Id identifier |
object |
{- "initiative": {
- "name": "Smarter initiative"
}
}{- "initiative": {
- "id": "423077122",
- "name": "Initiative 1",
- "reference_num": "PRJ1-S-1",
- "status": "not_started",
- "effort": 30,
- "value": 50,
- "presented": true,
- "color": "#bada55",
- "start_date": null,
- "end_date": null,
- "position": 1,
- "score": 4,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": 25,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "workflow_status": {
- "id": "53968949",
- "name": "Not Started",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "673273729",
- "body": "Description of initiative 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "attachments": [ ],
- "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "comments_count": 1,
- "goals": [
- {
- "id": "602095703",
- "name": "Goal 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "166463080",
- "body": "Description of goal 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}
], - "key_results": [ ],
- "score_facts": [ ],
- "features": [
- {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
], - "master_features": [
- {
- "id": "269219656",
- "reference_num": "PRJ3-E-3",
- "name": "A different project epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "362457003",
- "reference_num": "PRJ1-E-3",
- "name": "And a third",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "580753216",
- "reference_num": "PRJ1-E-2",
- "name": "Here's another epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}
], - "epic": [
- {
- "id": "269219656",
- "reference_num": "PRJ3-E-3",
- "name": "A different project epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "362457003",
- "reference_num": "PRJ1-E-3",
- "name": "And a third",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "580753216",
- "reference_num": "PRJ1-E-2",
- "name": "Here's another epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}
], - "releases": [
- {
- "id": "161456549",
- "reference_num": "PRJ1-R-2",
- "name": "Release 2",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [ ],
- "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - {
- "id": "278327321",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}
], - "integration_fields": [
- {
- "id": "546711007",
- "name": "id",
- "value": "9913333",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "966751335",
- "name": "key",
- "value": "JRA-987222",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "custom_fields": [
- {
- "id": 973371762,
- "key": "initiative_custom_date",
- "name": "Initiative custom date",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "2019-01-01",
- "type": "date"
}, - {
- "id": 1073063442,
- "key": "initiative_priority",
- "name": "Initiative priority",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "P2",
- "type": "string"
}
], - "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}
}| id required | string Id identifier |
{- "goal": {
- "id": "6776881149493103487",
- "name": "Goal 001",
- "reference_num": "PRJ3-G-1",
- "effort": 10,
- "value": 70,
- "color": "#397e82",
- "position": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "702241743",
- "progress": 0,
- "progress_source": "progress_manual",
- "description": {
- "id": "6776881149493796208",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "success_metric": {
- "name": "Metric 001",
- "description": {
- "id": "6776881149488589993",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "workflow_status": {
- "id": "396368932",
- "name": "On Track",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}, - "workflow_status_times": [
- {
- "status_id": "396368932",
- "status_name": "On Track",
- "started_at": "2019-01-01T00:00:00.000Z",
- "ended_at": null
}
]
}, - "project": {
- "id": "702241743",
- "reference_prefix": "PRJ3",
- "name": "Project 3",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "parent": {
- "id": "352745835",
- "name": "Product Line Goal 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "79634897",
- "body": "Description of project2_strategic_imperative1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}, - "parents": [
- {
- "id": "352745835",
- "name": "Product Line Goal 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "79634897",
- "body": "Description of project2_strategic_imperative1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}
], - "initiatives": [ ],
- "key_results": [ ],
- "comments_count": 0,
- "features": [ ],
- "releases": [ ],
- "custom_fields": [ ]
}
}| product_id required | string ProductId identifier |
object |
{- "goal": {
- "name": "Goal 3",
- "success_metric": {
- "name": "FooBar",
- "description": "Foo Bar",
- "workflow_status": "Not Started"
}, - "time_frame": {
- "name": "2015"
}, - "description": "Our first big goal",
- "effort": 15,
- "value": 5
}
}{- "goal": {
- "id": "6776881149493942444",
- "name": "Goal 3",
- "reference_num": "PRJ1-G-1",
- "effort": 95,
- "value": 54,
- "color": "#397e82",
- "position": 6,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": 0,
- "progress_source": "progress_manual",
- "description": {
- "id": "6776881149500114967",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "success_metric": {
- "name": "FooBar",
- "description": {
- "id": "6776881149483601587",
- "body": "Foo Bar",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "workflow_status": {
- "id": "412273758",
- "name": "Not Started",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "workflow_status_times": [
- {
- "status_id": "412273758",
- "status_name": "Not Started",
- "started_at": "2019-01-01T00:00:00.000Z",
- "ended_at": null
}
]
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "initiatives": [ ],
- "key_results": [ ],
- "comments_count": 0,
- "features": [ ],
- "releases": [ ],
- "custom_fields": [ ],
- "watchers": [
- {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
]
}
}| product_id required | string ProductId identifier |
{- "goals": [
- {
- "id": "111739083",
- "name": "Goal 5",
- "reference_num": "DEMOENT-G-5",
- "effort": 40,
- "value": 30,
- "color": "#bada55",
- "position": 5,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "description": {
- "id": "996214770",
- "body": "Description of project1_strategic_imperative5_archived_epoch",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "success_metric": {
- "name": "Metric 5",
- "description": {
- "id": "429990377",
- "body": "Description of project1_strategic_imperative5_archived_epoch_strategic_imperative_metric",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "workflow_status": {
- "id": "396368932",
- "name": "On Track",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "time_frame": {
- "id": 834757622,
- "name": "2018"
}, - "initiatives": [ ],
- "key_results": [ ],
- "comments_count": 0,
- "features": [ ],
- "releases": [ ],
- "custom_fields": [ ]
}, - {
- "id": "602095703",
- "name": "Goal 1",
- "reference_num": "DEMOENT-G-1",
- "effort": 10,
- "value": 70,
- "color": "#bada55",
- "position": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "description": {
- "id": "166463080",
- "body": "Description of goal 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "success_metric": {
- "name": "Metric 1",
- "description": {
- "id": "546284368",
- "body": "Description of goal 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "workflow_status": {
- "id": "396368932",
- "name": "On Track",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "initiatives": [
- {
- "id": "423077122",
- "reference_num": "PRJ1-S-1",
- "name": "Initiative 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "673273729",
- "body": "Description of initiative 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "integration_fields": [
- {
- "id": "546711007",
- "name": "id",
- "value": "9913333",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "966751335",
- "name": "key",
- "value": "JRA-987222",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
]
}
], - "key_results": [
- {
- "id": "631791848",
- "name": "KR 1",
- "reference_num": "DEMOENT-G-1-KR-1",
- "position": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "target_metric": "100%",
- "starting_metric": "5%",
- "current_metric": "20%"
}, - {
- "id": "1017196896",
- "name": "KR 2",
- "reference_num": "DEMOENT-G-1-KR-2",
- "position": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "target_metric": null,
- "starting_metric": null,
- "current_metric": null
}
], - "comments_count": 1,
- "features": [
- {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
], - "releases": [
- {
- "id": "278327321",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}
], - "custom_fields": [ ]
}, - {
- "id": "712130641",
- "name": "Goal 3",
- "reference_num": "DEMOENT-G-3",
- "effort": 40,
- "value": 30,
- "color": "#bada55",
- "position": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "description": {
- "id": "568840458",
- "body": "Description of project1_strategic_imperative3_no_epoch",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "success_metric": {
- "name": "Metric 3",
- "description": {
- "id": "668008103",
- "body": "Description of project1_strategic_imperative3_no_epoch_strategic_imperative_metric",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "workflow_status": {
- "id": "396368932",
- "name": "On Track",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "initiatives": [ ],
- "key_results": [ ],
- "comments_count": 0,
- "features": [ ],
- "releases": [ ],
- "custom_fields": [ ]
}, - {
- "id": "926116263",
- "name": "Goal 4",
- "reference_num": "DEMOENT-G-4",
- "effort": 40,
- "value": 30,
- "color": "#bada55",
- "position": 4,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "description": {
- "id": "308494954",
- "body": "Description of project1_strategic_imperative4_active_epoch",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "success_metric": {
- "name": "Metric 4",
- "description": {
- "id": "330355042",
- "body": "Description of project1_strategic_imperative4_active_epoch_strategic_imperative_metric",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "workflow_status": {
- "id": "396368932",
- "name": "On Track",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "time_frame": {
- "id": 273422810,
- "name": "2017"
}, - "initiatives": [ ],
- "key_results": [ ],
- "comments_count": 0,
- "features": [ ],
- "releases": [ ],
- "custom_fields": [ ]
}, - {
- "id": "988418543",
- "name": "Goal 2",
- "reference_num": "DEMOENT-G-2",
- "effort": 40,
- "value": 30,
- "color": "#bada55",
- "position": 3,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "description": {
- "id": "1055602421",
- "body": "Description of goal 2",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "success_metric": {
- "name": "Metric 2",
- "description": {
- "id": "394826695",
- "body": "Description of goal 2",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "workflow_status": {
- "id": "396368932",
- "name": "On Track",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "initiatives": [ ],
- "key_results": [
- {
- "id": "195428809",
- "name": "KR 3",
- "reference_num": "DEMOENT-G-1-KR-3",
- "position": 3,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "target_metric": null,
- "starting_metric": null,
- "current_metric": null
}
], - "comments_count": 0,
- "features": [ ],
- "releases": [ ],
- "custom_fields": [ ]
}
], - "pagination": {
- "total_records": 5,
- "total_pages": 1,
- "current_page": 1
}
}{- "goals": [
- {
- "id": "111739083",
- "name": "Goal 5",
- "reference_num": "DEMOENT-G-5",
- "effort": 40,
- "value": 30,
- "color": "#bada55",
- "position": 5,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "description": {
- "id": "996214770",
- "body": "Description of project1_strategic_imperative5_archived_epoch",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "success_metric": {
- "name": "Metric 5",
- "description": {
- "id": "429990377",
- "body": "Description of project1_strategic_imperative5_archived_epoch_strategic_imperative_metric",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "workflow_status": {
- "id": "396368932",
- "name": "On Track",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "time_frame": {
- "id": 834757622,
- "name": "2018"
}, - "initiatives": [ ],
- "key_results": [ ],
- "comments_count": 0,
- "features": [ ],
- "releases": [ ],
- "custom_fields": [ ]
}, - {
- "id": "242586561",
- "name": "Goal 3",
- "reference_num": "PRJ3-G-1",
- "effort": 40,
- "value": 30,
- "color": "#bada55",
- "position": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "702241743",
- "progress": null,
- "progress_source": "progress_manual",
- "description": {
- "id": "186725916",
- "body": "Description of project3_strategic_imperative1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "success_metric": {
- "name": "Metric 4",
- "description": {
- "id": "646872120",
- "body": "Description of project3_strategic_imperative1_strategic_imperative_metric",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "workflow_status": {
- "id": "396368932",
- "name": "On Track",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}
}, - "project": {
- "id": "702241743",
- "reference_prefix": "PRJ3",
- "name": "Project 3",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "parent": {
- "id": "352745835",
- "name": "Product Line Goal 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "79634897",
- "body": "Description of project2_strategic_imperative1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}, - "parents": [
- {
- "id": "352745835",
- "name": "Product Line Goal 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "79634897",
- "body": "Description of project2_strategic_imperative1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}
], - "initiatives": [ ],
- "key_results": [ ],
- "comments_count": 0,
- "features": [ ],
- "releases": [ ],
- "custom_fields": [ ]
}, - {
- "id": "352745835",
- "name": "Product Line Goal 1",
- "reference_num": "PL1-G-1",
- "effort": 40,
- "value": 30,
- "color": "#bada55",
- "position": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "610602692",
- "progress": null,
- "progress_source": "progress_manual",
- "description": {
- "id": "79634897",
- "body": "Description of project2_strategic_imperative1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "success_metric": {
- "name": "Metric 3",
- "description": {
- "id": "909973229",
- "body": "Description of project2_strategic_imperative1_strategic_imperative_metric",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "workflow_status": {
- "id": "396368932",
- "name": "On Track",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}
}, - "project": {
- "id": "610602692",
- "reference_prefix": "PL1",
- "name": "Product Line 1",
- "product_line": true,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "initiatives": [ ],
- "key_results": [ ],
- "comments_count": 0,
- "features": [ ],
- "releases": [ ],
- "custom_fields": [ ]
}, - {
- "id": "394052101",
- "name": "Goal 4",
- "reference_num": "PRJ3-G-1",
- "effort": 40,
- "value": 30,
- "color": "#bada55",
- "position": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "702241743",
- "progress": null,
- "progress_source": "progress_manual",
- "description": {
- "id": "921393880",
- "body": "Description of project3_strategic_imperative2",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "success_metric": {
- "name": "Metric 5",
- "description": {
- "id": "96979861",
- "body": "Description of project3_strategic_imperative2_strategic_imperative_metric",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "workflow_status": {
- "id": "396368932",
- "name": "On Track",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}
}, - "project": {
- "id": "702241743",
- "reference_prefix": "PRJ3",
- "name": "Project 3",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "initiatives": [ ],
- "key_results": [ ],
- "comments_count": 0,
- "features": [ ],
- "releases": [ ],
- "custom_fields": [ ]
}, - {
- "id": "599777734",
- "name": "Goal 6",
- "reference_num": "PRJ5-G-1",
- "effort": 40,
- "value": 30,
- "color": "#bada55",
- "position": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "12123897",
- "progress": null,
- "progress_source": "progress_manual",
- "description": {
- "id": "133581930",
- "body": "Description of project5_strategic_imperative1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "success_metric": {
- "name": "Metric 7",
- "description": {
- "id": "508822721",
- "body": "Description of project5_strategic_imperative1_strategic_imperative_metric",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "workflow_status": {
- "id": "396368932",
- "name": "On Track",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}
}, - "project": {
- "id": "12123897",
- "reference_prefix": "PRJ5",
- "name": "Project 5",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "parent": {
- "id": "352745835",
- "name": "Product Line Goal 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "79634897",
- "body": "Description of project2_strategic_imperative1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}, - "parents": [
- {
- "id": "352745835",
- "name": "Product Line Goal 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "79634897",
- "body": "Description of project2_strategic_imperative1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}
], - "initiatives": [ ],
- "key_results": [ ],
- "comments_count": 0,
- "features": [ ],
- "releases": [ ],
- "custom_fields": [ ]
}, - {
- "id": "602095703",
- "name": "Goal 1",
- "reference_num": "DEMOENT-G-1",
- "effort": 10,
- "value": 70,
- "color": "#bada55",
- "position": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "description": {
- "id": "166463080",
- "body": "Description of goal 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "success_metric": {
- "name": "Metric 1",
- "description": {
- "id": "546284368",
- "body": "Description of goal 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "workflow_status": {
- "id": "396368932",
- "name": "On Track",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "initiatives": [
- {
- "id": "423077122",
- "reference_num": "PRJ1-S-1",
- "name": "Initiative 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "673273729",
- "body": "Description of initiative 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "integration_fields": [
- {
- "id": "546711007",
- "name": "id",
- "value": "9913333",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "966751335",
- "name": "key",
- "value": "JRA-987222",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
]
}
], - "key_results": [
- {
- "id": "631791848",
- "name": "KR 1",
- "reference_num": "DEMOENT-G-1-KR-1",
- "position": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "target_metric": "100%",
- "starting_metric": "5%",
- "current_metric": "20%"
}, - {
- "id": "1017196896",
- "name": "KR 2",
- "reference_num": "DEMOENT-G-1-KR-2",
- "position": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "target_metric": null,
- "starting_metric": null,
- "current_metric": null
}
], - "comments_count": 1,
- "features": [
- {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
], - "releases": [
- {
- "id": "278327321",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}
], - "custom_fields": [ ]
}, - {
- "id": "712130641",
- "name": "Goal 3",
- "reference_num": "DEMOENT-G-3",
- "effort": 40,
- "value": 30,
- "color": "#bada55",
- "position": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "description": {
- "id": "568840458",
- "body": "Description of project1_strategic_imperative3_no_epoch",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "success_metric": {
- "name": "Metric 3",
- "description": {
- "id": "668008103",
- "body": "Description of project1_strategic_imperative3_no_epoch_strategic_imperative_metric",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "workflow_status": {
- "id": "396368932",
- "name": "On Track",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "initiatives": [ ],
- "key_results": [ ],
- "comments_count": 0,
- "features": [ ],
- "releases": [ ],
- "custom_fields": [ ]
}, - {
- "id": "926116263",
- "name": "Goal 4",
- "reference_num": "DEMOENT-G-4",
- "effort": 40,
- "value": 30,
- "color": "#bada55",
- "position": 4,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "description": {
- "id": "308494954",
- "body": "Description of project1_strategic_imperative4_active_epoch",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "success_metric": {
- "name": "Metric 4",
- "description": {
- "id": "330355042",
- "body": "Description of project1_strategic_imperative4_active_epoch_strategic_imperative_metric",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "workflow_status": {
- "id": "396368932",
- "name": "On Track",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "time_frame": {
- "id": 273422810,
- "name": "2017"
}, - "initiatives": [ ],
- "key_results": [ ],
- "comments_count": 0,
- "features": [ ],
- "releases": [ ],
- "custom_fields": [ ]
}, - {
- "id": "952896276",
- "name": "Goal 5",
- "reference_num": "PRJ4-G-1",
- "effort": 40,
- "value": 30,
- "color": "#bada55",
- "position": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "935317104",
- "progress": null,
- "progress_source": "progress_manual",
- "description": {
- "id": "141056933",
- "body": "Description of project4_strategic_imperative1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "success_metric": {
- "name": "Metric 6",
- "description": {
- "id": "250048102",
- "body": "Description of project4_strategic_imperative1_strategic_imperative_metric",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "workflow_status": {
- "id": "396368932",
- "name": "On Track",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}
}, - "project": {
- "id": "935317104",
- "reference_prefix": "PRJ4",
- "name": "Project 4",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "parent": {
- "id": "352745835",
- "name": "Product Line Goal 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "79634897",
- "body": "Description of project2_strategic_imperative1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}, - "parents": [
- {
- "id": "352745835",
- "name": "Product Line Goal 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "79634897",
- "body": "Description of project2_strategic_imperative1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}
], - "initiatives": [ ],
- "key_results": [ ],
- "comments_count": 0,
- "features": [ ],
- "releases": [ ],
- "custom_fields": [ ]
}, - {
- "id": "988418543",
- "name": "Goal 2",
- "reference_num": "DEMOENT-G-2",
- "effort": 40,
- "value": 30,
- "color": "#bada55",
- "position": 3,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "description": {
- "id": "1055602421",
- "body": "Description of goal 2",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "success_metric": {
- "name": "Metric 2",
- "description": {
- "id": "394826695",
- "body": "Description of goal 2",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "workflow_status": {
- "id": "396368932",
- "name": "On Track",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "initiatives": [ ],
- "key_results": [
- {
- "id": "195428809",
- "name": "KR 3",
- "reference_num": "DEMOENT-G-1-KR-3",
- "position": 3,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "target_metric": null,
- "starting_metric": null,
- "current_metric": null
}
], - "comments_count": 0,
- "features": [ ],
- "releases": [ ],
- "custom_fields": [ ]
}
], - "pagination": {
- "total_records": 10,
- "total_pages": 1,
- "current_page": 1
}
}| initiative_id required | string InitiativeId identifier |
{- "goals": [
- {
- "id": "602095703",
- "name": "Goal 1",
- "reference_num": "DEMOENT-G-1",
- "effort": 10,
- "value": 70,
- "color": "#bada55",
- "position": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "description": {
- "id": "166463080",
- "body": "Description of goal 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "success_metric": {
- "name": "Metric 1",
- "description": {
- "id": "546284368",
- "body": "Description of goal 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "workflow_status": {
- "id": "396368932",
- "name": "On Track",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "initiatives": [
- {
- "id": "423077122",
- "reference_num": "PRJ1-S-1",
- "name": "Initiative 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "673273729",
- "body": "Description of initiative 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "integration_fields": [
- {
- "id": "546711007",
- "name": "id",
- "value": "9913333",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "966751335",
- "name": "key",
- "value": "JRA-987222",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
]
}
], - "key_results": [
- {
- "id": "631791848",
- "name": "KR 1",
- "reference_num": "DEMOENT-G-1-KR-1",
- "position": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "target_metric": "100%",
- "starting_metric": "5%",
- "current_metric": "20%"
}, - {
- "id": "1017196896",
- "name": "KR 2",
- "reference_num": "DEMOENT-G-1-KR-2",
- "position": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "target_metric": null,
- "starting_metric": null,
- "current_metric": null
}
], - "comments_count": 1,
- "features": [
- {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
], - "releases": [
- {
- "id": "278327321",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}
], - "custom_fields": [ ]
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}| product_id required | string ProductId identifier |
| id required | string Id identifier |
object |
{- "goal": {
- "description": "An even smarter goal.",
- "workflow_status": "On Track"
}
}{- "goal": {
- "id": "602095703",
- "name": "Goal 1",
- "reference_num": "DEMOENT-G-1",
- "effort": 10,
- "value": 70,
- "color": "#bada55",
- "position": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "progress": 25,
- "progress_source": "progress_manual",
- "description": {
- "id": "166463080",
- "body": "Description of goal 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "success_metric": {
- "name": "Metric 1",
- "description": {
- "id": "546284368",
- "body": "Description of goal 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "workflow_status": {
- "id": "396368932",
- "name": "On Track",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "initiatives": [
- {
- "id": "423077122",
- "reference_num": "PRJ1-S-1",
- "name": "Initiative 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "673273729",
- "body": "Description of initiative 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "integration_fields": [
- {
- "id": "546711007",
- "name": "id",
- "value": "9913333",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "966751335",
- "name": "key",
- "value": "JRA-987222",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
]
}
], - "key_results": [
- {
- "id": "631791848",
- "name": "KR 1",
- "reference_num": "DEMOENT-G-1-KR-1",
- "position": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "target_metric": "100%",
- "starting_metric": "5%",
- "current_metric": "20%"
}, - {
- "id": "1017196896",
- "name": "KR 2",
- "reference_num": "DEMOENT-G-1-KR-2",
- "position": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "target_metric": null,
- "starting_metric": null,
- "current_metric": null
}
], - "comments_count": 1,
- "features": [
- {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
], - "releases": [
- {
- "id": "278327321",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}
], - "custom_fields": [ ]
}
}Custom tables have a different set of records for each product. This means that if you want to create one or list them you must scope them to a product.
Once you have the ID of a specific custom table record, you can get, modify, or delete them on the root custom table records resource.
Custom tables are an Enterprise+ exclusive feature.
| id required | string Id identifier |
{- "custom_object_record": {
- "id": "640362830",
- "product_id": "131414752",
- "key": "customers",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "custom_fields": [
- {
- "id": 262515157,
- "key": "name",
- "name": "Name",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "Acme Corp",
- "type": "string"
}, - {
- "id": 883926222,
- "key": "website",
- "name": "Website",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "www.acme.com",
- "type": "url"
}
], - "custom_object_links": [
- {
- "key": "custom_table_name_link_many",
- "name": "Custom Table Linked Records",
- "record_type": "CustomObjectRecord",
- "record_ids": [
- 1059223798
]
}, - {
- "key": "custom_table_name_link_many_to_one",
- "name": "Custom Table Many to One Field",
- "record_type": "CustomObjectRecord",
- "record_ids": [ ]
}, - {
- "key": "custom_table_name_submitters",
- "name": "Custom Table Linked Submitters",
- "record_type": "CustomObjectRecord",
- "record_ids": [ ]
}
], - "linked_records": [
- {
- "key": "customers",
- "name": "Customers",
- "record_type": "Ideas::Idea",
- "record_id": 162120796
}, - {
- "key": "revenue",
- "name": "Revenue",
- "record_type": "Ideas::Idea",
- "record_id": 58056975
}, - {
- "key": "submitters",
- "name": "Submitters",
- "record_type": "Ideas::Idea",
- "record_id": 58056975
}
], - "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}
}Custom tables have a different set of records for each product. This means that if you want to create one or list them you must scope them to a product.
Once you have the ID of a specific custom table record, you can get, modify, or delete them on the root custom table records resource.
Custom tables are an Enterprise+ exclusive feature.
| id required | string Id identifier |
Custom tables have a different set of records for each product. This means that if you want to create one or list them you must scope them to a product.
Once you have the ID of a specific custom table record, you can get, modify, or delete them on the root custom table records resource.
Custom tables are an Enterprise+ exclusive feature.
| product_id required | string ProductId identifier |
| key required | string Key identifier |
object |
{- "custom_object_record": {
- "custom_fields": {
- "name": "Major conglomerate",
- "website": "www.conglom.com"
}
}
}{- "custom_object_record": {
- "id": "6776881149486714349",
- "product_id": "131414752",
- "key": "customers",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "custom_fields": [
- {
- "id": "6776881149493312138",
- "key": "name",
- "name": "Name",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "Major conglomerate",
- "type": "string"
}, - {
- "id": "6776881149489312610",
- "key": "website",
- "name": "Website",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "www.conglom.com",
- "type": "url"
}
], - "custom_object_links": [ ],
- "linked_records": [ ],
- "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}
}Custom tables have a different set of records for each product. This means that if you want to create one or list them you must scope them to a product.
Once you have the ID of a specific custom table record, you can get, modify, or delete them on the root custom table records resource.
Custom tables are an Enterprise+ exclusive feature.
| product_id required | string ProductId identifier |
| key required | string Key identifier |
{- "custom_object_records": [
- {
- "id": "8397122",
- "product_id": "131414752",
- "key": "customers",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "custom_fields": [
- {
- "id": 564906240,
- "key": "name",
- "name": "Name",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "Zane Corp",
- "type": "string"
}
], - "custom_object_links": [
- {
- "key": "custom_table_name_link_many",
- "name": "Custom Table Linked Records",
- "record_type": "CustomObjectRecord",
- "record_ids": [ ]
}, - {
- "key": "custom_table_name_link_many_to_one",
- "name": "Custom Table Many to One Field",
- "record_type": "CustomObjectRecord",
- "record_ids": [ ]
}, - {
- "key": "custom_table_name_submitters",
- "name": "Custom Table Linked Submitters",
- "record_type": "CustomObjectRecord",
- "record_ids": [ ]
}
], - "linked_records": [ ],
- "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}, - {
- "id": "640362830",
- "product_id": "131414752",
- "key": "customers",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "custom_fields": [
- {
- "id": 262515157,
- "key": "name",
- "name": "Name",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "Acme Corp",
- "type": "string"
}, - {
- "id": 883926222,
- "key": "website",
- "name": "Website",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "www.acme.com",
- "type": "url"
}
], - "custom_object_links": [
- {
- "key": "custom_table_name_link_many",
- "name": "Custom Table Linked Records",
- "record_type": "CustomObjectRecord",
- "record_ids": [
- 1059223798
]
}, - {
- "key": "custom_table_name_link_many_to_one",
- "name": "Custom Table Many to One Field",
- "record_type": "CustomObjectRecord",
- "record_ids": [ ]
}, - {
- "key": "custom_table_name_submitters",
- "name": "Custom Table Linked Submitters",
- "record_type": "CustomObjectRecord",
- "record_ids": [ ]
}
], - "linked_records": [
- {
- "key": "customers",
- "name": "Customers",
- "record_type": "Ideas::Idea",
- "record_id": 162120796
}, - {
- "key": "revenue",
- "name": "Revenue",
- "record_type": "Ideas::Idea",
- "record_id": 58056975
}, - {
- "key": "submitters",
- "name": "Submitters",
- "record_type": "Ideas::Idea",
- "record_id": 58056975
}
], - "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}
], - "pagination": {
- "total_records": 2,
- "total_pages": 1,
- "current_page": 1
}
}The list view responds with a JSON object with three attributes: pagination, columns, and rows.
The columns attribute is an array of objects that give detailed information about the columns of the list. The objects include the name of the table, the field, and a human readable title attribute.
The rows attribute is an of array of arrays. Each object within the inner array contains the value of that for a specific column. Each object contains attributes for various representations of the data. The fields are:
id: The unique id of the objectplain_value: A string representation of the objecthtml_value: An HTML representation of the object. This is the same HTML that
is used in Aha! to represent the value in our reports.rich_value: If the object is a reference to another object (such as a tag),
the, this will be the object representation. For instance, a tag would be
representated as:{
id: "6013053275679792248",
name: "API"
}
The third attribute is pagination. This works like everywhere else in the Aha! API and is documented here.
| report_id required | string ReportId identifier |
| view | string Example: view=list |
{- "top_level_columns": [
- 1,
- 2,
- 3
], - "columns": {
- "1": {
- "ref": 1,
- "parent_ref": null,
- "child_refs": [ ],
- "id": 131414752,
- "plain_value": "Project 1",
- "html_value": "<a data-drawer-url=\"/projects/PRJ1\" href=\"/projects/PRJ1\"><span class=\"project-name\"><span><i class=\"fa-regular fa-browser\" style=\"display: table-cell; vertical-align: middle; padding-right: 5px; \" data-title=\"Project 1\"></i></span><span>Project 1</span></span></a>",
- "rich_value": "<span class=\"project-name\"><span><i class=\"fa-regular fa-browser\" style=\"display: table-cell; vertical-align: middle; padding-right: 5px; \" data-title=\"Project 1\"></i></span><span>Project 1</span></span>",
- "field_definition_ref": 7
}, - "2": {
- "ref": 2,
- "parent_ref": null,
- "child_refs": [ ],
- "id": 517761884,
- "plain_value": "Project 2",
- "html_value": "<a data-drawer-url=\"/projects/PRJ2\" href=\"/projects/PRJ2\"><span class=\"project-name\"><span><i class=\"fa-regular fa-browser\" style=\"display: table-cell; vertical-align: middle; padding-right: 5px; \" data-title=\"Project 2\"></i></span><span>Project 2</span></span></a>",
- "rich_value": "<span class=\"project-name\"><span><i class=\"fa-regular fa-browser\" style=\"display: table-cell; vertical-align: middle; padding-right: 5px; \" data-title=\"Project 2\"></i></span><span>Project 2</span></span>",
- "field_definition_ref": 7
}, - "3": {
- "ref": 3,
- "parent_ref": null,
- "child_refs": [ ],
- "id": 702241743,
- "plain_value": "Project 3",
- "html_value": "<a data-drawer-url=\"/projects/PRJ3\" href=\"/projects/PRJ3\"><span class=\"project-name\"><span><i class=\"fa-regular fa-browser\" style=\"display: table-cell; vertical-align: middle; padding-right: 5px; \" data-title=\"Project 3\"></i></span><span>Project 3</span></span></a>",
- "rich_value": "<span class=\"project-name\"><span><i class=\"fa-regular fa-browser\" style=\"display: table-cell; vertical-align: middle; padding-right: 5px; \" data-title=\"Project 3\"></i></span><span>Project 3</span></span>",
- "field_definition_ref": 7
}
}, - "top_level_rows": [
- 4,
- 5,
- 6
], - "rows": {
- "4": {
- "ref": 4,
- "parent_ref": null,
- "child_refs": [ ],
- "id": 278327321,
- "plain_value": "Release 1",
- "html_value": "<a data-drawer-url=\"/releases/PRJ1-R-1\" href=\"/releases/PRJ1-R-1\">Release 1</a>",
- "rich_value": "Release 1",
- "field_definition_ref": 8
}, - "5": {
- "ref": 5,
- "parent_ref": null,
- "child_refs": [ ],
- "id": 1000426269,
- "plain_value": "Release 2",
- "html_value": "<a data-drawer-url=\"/releases/PRJ2-R-1\" href=\"/releases/PRJ2-R-1\">Release 2</a>",
- "rich_value": "Release 2",
- "field_definition_ref": 8
}, - "6": {
- "ref": 6,
- "parent_ref": null,
- "child_refs": [ ],
- "id": 342040612,
- "plain_value": "Release 3 Project 3",
- "html_value": "<a data-drawer-url=\"/releases/PRJ3-R-1\" href=\"/releases/PRJ3-R-1\">Release 3 Project 3</a>",
- "rich_value": "Release 3 Project 3",
- "field_definition_ref": 8
}
}, - "cells": [
- [
- [
- [
- {
- "id": 1007868956,
- "plain_value": "PRJ1-1",
- "html_value": "<a data-drawer-url=\"/features/PRJ1-1\" href=\"/features/PRJ1-1\"><aha-record-reference record-type=\"Feature\" size=\"small\" icon-override=\"fa-solid fa-grid-2\">PRJ1-1</aha-record-reference></a>",
- "rich_value": "<aha-record-reference record-type=\"Feature\" size=\"small\" icon-override=\"fa-solid fa-grid-2\">PRJ1-1</aha-record-reference>",
- "row_ref": 4,
- "column_ref": 1,
- "field_definition_ref": 9
}, - {
- "id": 1007868956,
- "plain_value": "Feature 1",
- "html_value": "<a data-drawer-url=\"/features/PRJ1-1\" href=\"/features/PRJ1-1\">Feature 1</a>",
- "rich_value": "Feature 1",
- "row_ref": 4,
- "column_ref": 1,
- "field_definition_ref": 10
}, - {
- "id": 1007868956,
- "plain_value": "New",
- "html_value": "<span class=\"status-pill\" title=\"New\" style=\"color: var(--theme-primary-text); border: none; background-color: #F1F5E8\">New</span>",
- "rich_value": {
- "id": 934242751,
- "name": "New",
- "color": "dce7c6"
}, - "row_ref": 4,
- "column_ref": 1,
- "field_definition_ref": 11
}, - {
- "id": 1055237874,
- "plain_value": "John Long (john@long.com)",
- "html_value": "<a data-drawer-url=\"/ideas/idea_users/1056507375\" href=\"/ideas/idea_users/1056507375\">John Long (john@long.com)</a>",
- "rich_value": {
- "id": 1056507375,
- "name": "John Long (john@long.com)"
}, - "row_ref": 4,
- "column_ref": 1,
- "field_definition_ref": 12
}
], - [
- {
- "id": 1007868956,
- "plain_value": "PRJ1-1",
- "html_value": "<a data-drawer-url=\"/features/PRJ1-1\" href=\"/features/PRJ1-1\"><aha-record-reference record-type=\"Feature\" size=\"small\" icon-override=\"fa-solid fa-grid-2\">PRJ1-1</aha-record-reference></a>",
- "rich_value": "<aha-record-reference record-type=\"Feature\" size=\"small\" icon-override=\"fa-solid fa-grid-2\">PRJ1-1</aha-record-reference>",
- "row_ref": 4,
- "column_ref": 1,
- "field_definition_ref": 9
}, - {
- "id": 1007868956,
- "plain_value": "Feature 1",
- "html_value": "<a data-drawer-url=\"/features/PRJ1-1\" href=\"/features/PRJ1-1\">Feature 1</a>",
- "rich_value": "Feature 1",
- "row_ref": 4,
- "column_ref": 1,
- "field_definition_ref": 10
}, - {
- "id": 1007868956,
- "plain_value": "New",
- "html_value": "<span class=\"status-pill\" title=\"New\" style=\"color: var(--theme-primary-text); border: none; background-color: #F1F5E8\">New</span>",
- "rich_value": {
- "id": 934242751,
- "name": "New",
- "color": "dce7c6"
}, - "row_ref": 4,
- "column_ref": 1,
- "field_definition_ref": 11
}, - {
- "id": 444379319,
- "plain_value": "John Long (john@long.com)",
- "html_value": "<a data-drawer-url=\"/ideas/idea_users/1056507375\" href=\"/ideas/idea_users/1056507375\">John Long (john@long.com)</a>",
- "rich_value": {
- "id": 1056507375,
- "name": "John Long (john@long.com)"
}, - "row_ref": 4,
- "column_ref": 1,
- "field_definition_ref": 12
}
], - [
- {
- "id": 622562724,
- "plain_value": "PRJ1-2",
- "html_value": "<a data-drawer-url=\"/features/PRJ1-2\" href=\"/features/PRJ1-2\"><aha-record-reference record-type=\"Feature\" size=\"small\" icon-override=\"fa-solid fa-grid-2\">PRJ1-2</aha-record-reference></a>",
- "rich_value": "<aha-record-reference record-type=\"Feature\" size=\"small\" icon-override=\"fa-solid fa-grid-2\">PRJ1-2</aha-record-reference>",
- "row_ref": 4,
- "column_ref": 1,
- "field_definition_ref": 9
}, - {
- "id": 622562724,
- "plain_value": "Another Feature",
- "html_value": "<a data-drawer-url=\"/features/PRJ1-2\" href=\"/features/PRJ1-2\">Another Feature</a>",
- "rich_value": "Another Feature",
- "row_ref": 4,
- "column_ref": 1,
- "field_definition_ref": 10
}, - {
- "id": 622562724,
- "plain_value": "Designed",
- "html_value": "<span class=\"status-pill\" title=\"Designed\" style=\"color: var(--theme-primary-text); border: none; background-color: #F7F1D2\">Designed</span>",
- "rich_value": {
- "id": 962984386,
- "name": "Designed",
- "color": "ecdd8f"
}, - "row_ref": 4,
- "column_ref": 1,
- "field_definition_ref": 11
}, - {
- "id": null,
- "plain_value": null,
- "html_value": null,
- "rich_value": null,
- "row_ref": 4,
- "column_ref": 1,
- "field_definition_ref": 12
}
], - [
- {
- "id": 303873333,
- "plain_value": "PRJ1-3",
- "html_value": "<a data-drawer-url=\"/features/PRJ1-3\" href=\"/features/PRJ1-3\"><aha-record-reference record-type=\"Feature\" size=\"small\" icon-override=\"fa-solid fa-grid-2\">PRJ1-3</aha-record-reference></a>",
- "rich_value": "<aha-record-reference record-type=\"Feature\" size=\"small\" icon-override=\"fa-solid fa-grid-2\">PRJ1-3</aha-record-reference>",
- "row_ref": 4,
- "column_ref": 1,
- "field_definition_ref": 9
}, - {
- "id": 303873333,
- "plain_value": "Another Third Feature",
- "html_value": "<a data-drawer-url=\"/features/PRJ1-3\" href=\"/features/PRJ1-3\">Another Third Feature</a>",
- "rich_value": "Another Third Feature",
- "row_ref": 4,
- "column_ref": 1,
- "field_definition_ref": 10
}, - {
- "id": 303873333,
- "plain_value": "Designed",
- "html_value": "<span class=\"status-pill\" title=\"Designed\" style=\"color: var(--theme-primary-text); border: none; background-color: #F7F1D2\">Designed</span>",
- "rich_value": {
- "id": 962984386,
- "name": "Designed",
- "color": "ecdd8f"
}, - "row_ref": 4,
- "column_ref": 1,
- "field_definition_ref": 11
}, - {
- "id": null,
- "plain_value": null,
- "html_value": null,
- "rich_value": null,
- "row_ref": 4,
- "column_ref": 1,
- "field_definition_ref": 12
}
], - [
- {
- "id": 209201304,
- "plain_value": "PRJ1-4",
- "html_value": "<a data-drawer-url=\"/features/PRJ1-4\" href=\"/features/PRJ1-4\"><aha-record-reference record-type=\"Feature\" size=\"small\" icon-override=\"fa-solid fa-grid-2\">PRJ1-4</aha-record-reference></a>",
- "rich_value": "<aha-record-reference record-type=\"Feature\" size=\"small\" icon-override=\"fa-solid fa-grid-2\">PRJ1-4</aha-record-reference>",
- "row_ref": 4,
- "column_ref": 1,
- "field_definition_ref": 9
}, - {
- "id": 209201304,
- "plain_value": "Another Fourth Feature",
- "html_value": "<a data-drawer-url=\"/features/PRJ1-4\" href=\"/features/PRJ1-4\">Another Fourth Feature</a>",
- "rich_value": "Another Fourth Feature",
- "row_ref": 4,
- "column_ref": 1,
- "field_definition_ref": 10
}, - {
- "id": 209201304,
- "plain_value": "Designed",
- "html_value": "<span class=\"status-pill\" title=\"Designed\" style=\"color: var(--theme-primary-text); border: none; background-color: #F7F1D2\">Designed</span>",
- "rich_value": {
- "id": 962984386,
- "name": "Designed",
- "color": "ecdd8f"
}, - "row_ref": 4,
- "column_ref": 1,
- "field_definition_ref": 11
}, - {
- "id": null,
- "plain_value": null,
- "html_value": null,
- "rich_value": null,
- "row_ref": 4,
- "column_ref": 1,
- "field_definition_ref": 12
}
], - [
- {
- "id": 998184963,
- "plain_value": "PRJ1-5",
- "html_value": "<a data-drawer-url=\"/features/PRJ1-5\" href=\"/features/PRJ1-5\"><aha-record-reference record-type=\"Feature\" size=\"small\" icon-override=\"fa-solid fa-grid-2\">PRJ1-5</aha-record-reference></a>",
- "rich_value": "<aha-record-reference record-type=\"Feature\" size=\"small\" icon-override=\"fa-solid fa-grid-2\">PRJ1-5</aha-record-reference>",
- "row_ref": 4,
- "column_ref": 1,
- "field_definition_ref": 9
}, - {
- "id": 998184963,
- "plain_value": "Another Fifth Feature",
- "html_value": "<a data-drawer-url=\"/features/PRJ1-5\" href=\"/features/PRJ1-5\">Another Fifth Feature</a>",
- "rich_value": "Another Fifth Feature",
- "row_ref": 4,
- "column_ref": 1,
- "field_definition_ref": 10
}, - {
- "id": 998184963,
- "plain_value": "Designed",
- "html_value": "<span class=\"status-pill\" title=\"Designed\" style=\"color: var(--theme-primary-text); border: none; background-color: #F7F1D2\">Designed</span>",
- "rich_value": {
- "id": 962984386,
- "name": "Designed",
- "color": "ecdd8f"
}, - "row_ref": 4,
- "column_ref": 1,
- "field_definition_ref": 11
}, - {
- "id": null,
- "plain_value": null,
- "html_value": null,
- "rich_value": null,
- "row_ref": 4,
- "column_ref": 1,
- "field_definition_ref": 12
}
]
], - [ ],
- [ ]
], - [
- [ ],
- [
- [
- {
- "id": 101074039,
- "plain_value": "PRJ2-1",
- "html_value": "<a data-drawer-url=\"/features/PRJ2-1\" href=\"/features/PRJ2-1\"><aha-record-reference record-type=\"Feature\" size=\"small\" icon-override=\"fa-solid fa-grid-2\">PRJ2-1</aha-record-reference></a>",
- "rich_value": "<aha-record-reference record-type=\"Feature\" size=\"small\" icon-override=\"fa-solid fa-grid-2\">PRJ2-1</aha-record-reference>",
- "row_ref": 5,
- "column_ref": 2,
- "field_definition_ref": 9
}, - {
- "id": 101074039,
- "plain_value": "A feature in project 2",
- "html_value": "<a data-drawer-url=\"/features/PRJ2-1\" href=\"/features/PRJ2-1\">A feature in project 2</a>",
- "rich_value": "A feature in project 2",
- "row_ref": 5,
- "column_ref": 2,
- "field_definition_ref": 10
}, - {
- "id": 101074039,
- "plain_value": "Designed",
- "html_value": "<span class=\"status-pill\" title=\"Designed\" style=\"color: var(--theme-primary-text); border: none; background-color: #F7F1D2\">Designed</span>",
- "rich_value": {
- "id": 962984386,
- "name": "Designed",
- "color": "ecdd8f"
}, - "row_ref": 5,
- "column_ref": 2,
- "field_definition_ref": 11
}, - {
- "id": null,
- "plain_value": null,
- "html_value": null,
- "rich_value": null,
- "row_ref": 5,
- "column_ref": 2,
- "field_definition_ref": 12
}
]
], - [ ]
], - [
- [ ],
- [ ],
- [
- [
- {
- "id": 229579240,
- "plain_value": "PRJ3-1",
- "html_value": "<a data-drawer-url=\"/features/PRJ3-1\" href=\"/features/PRJ3-1\"><aha-record-reference record-type=\"Feature\" size=\"small\" icon-override=\"fa-solid fa-grid-2\">PRJ3-1</aha-record-reference></a>",
- "rich_value": "<aha-record-reference record-type=\"Feature\" size=\"small\" icon-override=\"fa-solid fa-grid-2\">PRJ3-1</aha-record-reference>",
- "row_ref": 6,
- "column_ref": 3,
- "field_definition_ref": 9
}, - {
- "id": 229579240,
- "plain_value": "Feature without Requirements",
- "html_value": "<a data-drawer-url=\"/features/PRJ3-1\" href=\"/features/PRJ3-1\">Feature without Requirements</a>",
- "rich_value": "Feature without Requirements",
- "row_ref": 6,
- "column_ref": 3,
- "field_definition_ref": 10
}, - {
- "id": 229579240,
- "plain_value": "New",
- "html_value": "<span class=\"status-pill\" title=\"New\" style=\"color: var(--theme-primary-text); border: none; background-color: #F1F5E8\">New</span>",
- "rich_value": {
- "id": 934242751,
- "name": "New",
- "color": "dce7c6"
}, - "row_ref": 6,
- "column_ref": 3,
- "field_definition_ref": 11
}, - {
- "id": null,
- "plain_value": null,
- "html_value": null,
- "rich_value": null,
- "row_ref": 6,
- "column_ref": 3,
- "field_definition_ref": 12
}
], - [
- {
- "id": 959120953,
- "plain_value": "PRJ3-2",
- "html_value": "<a data-drawer-url=\"/features/PRJ3-2\" href=\"/features/PRJ3-2\"><aha-record-reference record-type=\"Feature\" size=\"small\" icon-override=\"fa-solid fa-grid-2\">PRJ3-2</aha-record-reference></a>",
- "rich_value": "<aha-record-reference record-type=\"Feature\" size=\"small\" icon-override=\"fa-solid fa-grid-2\">PRJ3-2</aha-record-reference>",
- "row_ref": 6,
- "column_ref": 3,
- "field_definition_ref": 9
}, - {
- "id": 959120953,
- "plain_value": "A third Feature",
- "html_value": "<a data-drawer-url=\"/features/PRJ3-2\" href=\"/features/PRJ3-2\">A third Feature</a>",
- "rich_value": "A third Feature",
- "row_ref": 6,
- "column_ref": 3,
- "field_definition_ref": 10
}, - {
- "id": 959120953,
- "plain_value": "Designed",
- "html_value": "<span class=\"status-pill\" title=\"Designed\" style=\"color: var(--theme-primary-text); border: none; background-color: #F7F1D2\">Designed</span>",
- "rich_value": {
- "id": 962984386,
- "name": "Designed",
- "color": "ecdd8f"
}, - "row_ref": 6,
- "column_ref": 3,
- "field_definition_ref": 11
}, - {
- "id": null,
- "plain_value": null,
- "html_value": null,
- "rich_value": null,
- "row_ref": 6,
- "column_ref": 3,
- "field_definition_ref": 12
}
]
]
]
], - "field_definitions": {
- "7": {
- "ref": 7,
- "table": "projects",
- "field": "name",
- "title": "Workspace name"
}, - "8": {
- "ref": 8,
- "table": "releases",
- "field": "name",
- "title": "Release name"
}, - "9": {
- "ref": 9,
- "table": "features",
- "field": "reference_num",
- "title": "Feature reference #"
}, - "10": {
- "ref": 10,
- "table": "features",
- "field": "name",
- "title": "Feature name"
}, - "11": {
- "ref": 11,
- "table": "features",
- "field": "status",
- "title": "Feature status"
}, - "12": {
- "ref": 12,
- "table": "ideas",
- "field": "created_by_user_id",
- "title": "Idea created by"
}
}
}The recycle bin contains recently deleted workspaces, teams, and records. It is possible to restore items up to 7 days after they have been deleted.
{- "deletions": [ ],
- "pagination": {
- "total_records": 0,
- "total_pages": 0,
- "current_page": 1
}
}The recycle bin contains recently deleted workspaces, teams, and records. It is possible to restore items up to 7 days after they have been deleted.
| id required | string Id identifier |
{- "deletion": {
- "status": "restore_in_progress",
- "record": {
- "name": "Feature 1",
- "type": "Feature",
- "reference_num": "PRJ1-1"
}, - "deleted_by": {
- "id": 1049303076,
- "name": "George Gently",
- "email": "no-reply@aha.io"
}, - "id": "6776881149497698683",
- "deleted_at": "2019-01-01T00:00:00.000Z"
}
}Epics belong to releases. This means that if you want to create one then you must scope it to a release.
You can list them all at once, or filter by release or product. All these means of listing epics can be further filtered by specific critera like name, modification date, tag, or assignee.
Once you have the id of a specific epic, you can inspect, modify, or delete them on the root epics resource.
{- "epics": [
- {
- "id": "269219656",
- "reference_num": "PRJ3-E-3",
- "name": "A different project epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "362457003",
- "reference_num": "PRJ1-E-3",
- "name": "And a third",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "531908612",
- "reference_num": "PRJ2-E-1",
- "name": "An epic in project 2",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "580753216",
- "reference_num": "PRJ1-E-2",
- "name": "Here's another epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}
], - "pagination": {
- "total_records": 5,
- "total_pages": 1,
- "current_page": 1
}
}Epics belong to releases. This means that if you want to create one then you must scope it to a release.
You can list them all at once, or filter by release or product. All these means of listing epics can be further filtered by specific critera like name, modification date, tag, or assignee.
Once you have the id of a specific epic, you can inspect, modify, or delete them on the root epics resource.
| release_id required | string ReleaseId identifier |
{- "epics": [
- {
- "id": "362457003",
- "reference_num": "PRJ1-E-3",
- "name": "And a third",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "580753216",
- "reference_num": "PRJ1-E-2",
- "name": "Here's another epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}
], - "pagination": {
- "total_records": 3,
- "total_pages": 1,
- "current_page": 1
}
}Epics belong to releases. This means that if you want to create one then you must scope it to a release.
You can list them all at once, or filter by release or product. All these means of listing epics can be further filtered by specific critera like name, modification date, tag, or assignee.
Once you have the id of a specific epic, you can inspect, modify, or delete them on the root epics resource.
| release_id required | string ReleaseId identifier |
| name | string |
| description | string |
{- "epic": {
- "name": "New name",
- "description": "New description",
- "detailed_estimate_text": "58min"
}
}{- "epic": {
- "id": "6776881149493644653",
- "name": "New epics",
- "reference_num": "PRJ1-E-251",
- "initiative_reference_num": null,
- "position": 1,
- "score": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "start_date": null,
- "due_date": null,
- "product_id": "131414752",
- "progress": 0,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "status_changed_on": "2019-01-01",
- "created_by_user": {
- "id": "601067208",
- "name": "Jeremy Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_status": {
- "id": "934242751",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "description": {
- "id": "6776881149489925368",
- "body": "New description",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "attachments": [ ],
- "integration_fields": [ ],
- "release": {
- "id": "278327321",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - "assigned_to_user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": true
}, - "features": [ ],
- "goals": [ ],
- "key_results": [ ],
- "comments_count": 0,
- "score_facts": [ ],
- "tags": [ ],
- "full_tags": [ ],
- "custom_fields": [ ],
- "workflow_status_times": [
- {
- "status_id": "934242751",
- "status_name": "New",
- "started_at": "2019-01-01T00:00:00.000Z",
- "ended_at": null
}
], - "epic_links": [ ],
- "master_feature_only_original_estimate": 58,
- "master_feature_only_remaining_estimate": 58,
- "master_feature_only_work_done": null,
- "epic_only_original_estimate": 58,
- "epic_only_remaining_estimate": 58,
- "epic_only_work_done": null
}
}Epics belong to releases. This means that if you want to create one then you must scope it to a release.
You can list them all at once, or filter by release or product. All these means of listing epics can be further filtered by specific critera like name, modification date, tag, or assignee.
Once you have the id of a specific epic, you can inspect, modify, or delete them on the root epics resource.
| product_id required | string ProductId identifier |
{- "epics": [
- {
- "id": "362457003",
- "reference_num": "PRJ1-E-3",
- "name": "And a third",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "580753216",
- "reference_num": "PRJ1-E-2",
- "name": "Here's another epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}
], - "pagination": {
- "total_records": 3,
- "total_pages": 1,
- "current_page": 1
}
}Epics belong to releases. This means that if you want to create one then you must scope it to a release.
You can list them all at once, or filter by release or product. All these means of listing epics can be further filtered by specific critera like name, modification date, tag, or assignee.
Once you have the id of a specific epic, you can inspect, modify, or delete them on the root epics resource.
| product_id required | string ProductId identifier |
| name | string |
| description | string |
{- "epic": {
- "name": "New name"
}
}{- "epic": {
- "id": "6776881149485403843",
- "name": "New name",
- "reference_num": "PRJ1-E-251",
- "initiative_reference_num": null,
- "position": 1,
- "score": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "start_date": null,
- "due_date": null,
- "product_id": "131414752",
- "progress": 0,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "status_changed_on": "2019-01-01",
- "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_status": {
- "id": "934242751",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "description": {
- "id": "6776881149495498605",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "attachments": [ ],
- "integration_fields": [ ],
- "release": {
- "id": "278327321",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - "assigned_to_user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": true
}, - "features": [ ],
- "goals": [ ],
- "key_results": [ ],
- "comments_count": 0,
- "score_facts": [ ],
- "tags": [ ],
- "full_tags": [ ],
- "custom_fields": [ ],
- "workflow_status_times": [
- {
- "status_id": "934242751",
- "status_name": "New",
- "started_at": "2019-01-01T00:00:00.000Z",
- "ended_at": null
}
], - "epic_links": [ ],
- "master_feature_only_original_estimate": null,
- "master_feature_only_remaining_estimate": null,
- "master_feature_only_work_done": null,
- "epic_only_original_estimate": null,
- "epic_only_remaining_estimate": null,
- "epic_only_work_done": null
}
}Epics belong to releases. This means that if you want to create one then you must scope it to a release.
You can list them all at once, or filter by release or product. All these means of listing epics can be further filtered by specific critera like name, modification date, tag, or assignee.
Once you have the id of a specific epic, you can inspect, modify, or delete them on the root epics resource.
| goal_id required | string GoalId identifier |
{- "epics": [
- {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}Epics belong to releases. This means that if you want to create one then you must scope it to a release.
You can list them all at once, or filter by release or product. All these means of listing epics can be further filtered by specific critera like name, modification date, tag, or assignee.
Once you have the id of a specific epic, you can inspect, modify, or delete them on the root epics resource.
| initiative_id required | string InitiativeId identifier |
{- "epics": [
- {
- "id": "269219656",
- "reference_num": "PRJ3-E-3",
- "name": "A different project epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "362457003",
- "reference_num": "PRJ1-E-3",
- "name": "And a third",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "580753216",
- "reference_num": "PRJ1-E-2",
- "name": "Here's another epic",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}
], - "pagination": {
- "total_records": 4,
- "total_pages": 1,
- "current_page": 1
}
}Epics belong to releases. This means that if you want to create one then you must scope it to a release.
You can list them all at once, or filter by release or product. All these means of listing epics can be further filtered by specific critera like name, modification date, tag, or assignee.
Once you have the id of a specific epic, you can inspect, modify, or delete them on the root epics resource.
| id required | string Id identifier |
{- "epic": {
- "id": "999605892",
- "name": "Epic 1",
- "reference_num": "PRJ1-E-1",
- "initiative_reference_num": "PRJ1-S-1",
- "position": 1,
- "score": 42,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "start_date": "2019-01-01",
- "due_date": "2019-01-01",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "status_changed_on": null,
- "created_by_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_status": {
- "id": "934242751",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "description": {
- "id": "4321567",
- "body": "Body of Epic Description",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "attachments": [ ],
- "integration_fields": [
- {
- "id": "790422735",
- "name": "id",
- "value": "433333335",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "907392375",
- "name": "key",
- "value": "JRA-1222223",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "release": {
- "id": "278327321",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "features": [
- {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
], - "initiative": {
- "id": "423077122",
- "reference_num": "PRJ1-S-1",
- "name": "Initiative 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "673273729",
- "body": "Description of initiative 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "integration_fields": [
- {
- "id": "546711007",
- "name": "id",
- "value": "9913333",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "966751335",
- "name": "key",
- "value": "JRA-987222",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
]
}, - "goals": [
- {
- "id": "602095703",
- "name": "Goal 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "166463080",
- "body": "Description of goal 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}
], - "key_results": [ ],
- "comments_count": 1,
- "score_facts": [ ],
- "tags": [
- "Infrastructure"
], - "full_tags": [
- {
- "id": 775582684,
- "name": "Infrastructure",
- "color": "#7552e0"
}
], - "custom_fields": [
- {
- "id": 1001163083,
- "key": "epic_custom_date",
- "name": "Epic custom date",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "2019-01-01",
- "type": "date"
}, - {
- "id": 1043080183,
- "key": "priority",
- "name": "Priority",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "P2",
- "type": "string"
}
], - "epic_links": [
- {
- "link_type": "Depends on",
- "link_type_id": 20,
- "created_at": "2019-01-01T00:00:00.000Z",
- "parent_record": {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "child_record": {
- "id": "580753216",
- "reference_num": "PRJ1-E-2",
- "name": "Here's another epic",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
}
], - "master_feature_only_original_estimate": null,
- "master_feature_only_remaining_estimate": null,
- "master_feature_only_work_done": null,
- "epic_only_original_estimate": null,
- "epic_only_remaining_estimate": null,
- "epic_only_work_done": null
}
}Epics belong to releases. This means that if you want to create one then you must scope it to a release.
You can list them all at once, or filter by release or product. All these means of listing epics can be further filtered by specific critera like name, modification date, tag, or assignee.
Once you have the id of a specific epic, you can inspect, modify, or delete them on the root epics resource.
| id required | string Id identifier |
Epics belong to releases. This means that if you want to create one then you must scope it to a release.
You can list them all at once, or filter by release or product. All these means of listing epics can be further filtered by specific critera like name, modification date, tag, or assignee.
Once you have the id of a specific epic, you can inspect, modify, or delete them on the root epics resource.
| id required | string Id identifier |
| name | string |
| description | string |
{- "name": "New name",
- "description": "New description"
}{- "epic": {
- "id": "999605892",
- "name": "Epic 1",
- "reference_num": "PRJ1-E-1",
- "initiative_reference_num": "PRJ1-S-1",
- "position": 1,
- "score": 42,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "start_date": "2019-01-01",
- "due_date": "2019-01-01",
- "product_id": "131414752",
- "progress": 25,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "status_changed_on": null,
- "created_by_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_status": {
- "id": "934242751",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "description": {
- "id": "4321567",
- "body": "Body of Epic Description",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "attachments": [ ],
- "integration_fields": [
- {
- "id": "790422735",
- "name": "id",
- "value": "433333335",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "907392375",
- "name": "key",
- "value": "JRA-1222223",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "release": {
- "id": "278327321",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "features": [
- {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
], - "initiative": {
- "id": "423077122",
- "reference_num": "PRJ1-S-1",
- "name": "Initiative 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "673273729",
- "body": "Description of initiative 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "integration_fields": [
- {
- "id": "546711007",
- "name": "id",
- "value": "9913333",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "966751335",
- "name": "key",
- "value": "JRA-987222",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
]
}, - "goals": [
- {
- "id": "602095703",
- "name": "Goal 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "166463080",
- "body": "Description of goal 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}
], - "key_results": [ ],
- "comments_count": 1,
- "score_facts": [ ],
- "tags": [
- "Infrastructure"
], - "full_tags": [
- {
- "id": 775582684,
- "name": "Infrastructure",
- "color": "#7552e0"
}
], - "custom_fields": [
- {
- "id": 1001163083,
- "key": "epic_custom_date",
- "name": "Epic custom date",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "2019-01-01",
- "type": "date"
}, - {
- "id": 1043080183,
- "key": "priority",
- "name": "Priority",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "P2",
- "type": "string"
}
], - "epic_links": [
- {
- "link_type": "Depends on",
- "link_type_id": 20,
- "created_at": "2019-01-01T00:00:00.000Z",
- "parent_record": {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "child_record": {
- "id": "580753216",
- "reference_num": "PRJ1-E-2",
- "name": "Here's another epic",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
}
], - "master_feature_only_original_estimate": null,
- "master_feature_only_remaining_estimate": null,
- "master_feature_only_work_done": null,
- "epic_only_original_estimate": null,
- "epic_only_remaining_estimate": null,
- "epic_only_work_done": null
}
}Estimate value objects should include the following keys: team_id, period_start, and total. This endpoint uses an "upsert" flow, updating existing records, or creating new ones if they do not exist. Returns all updated and destroyed estimate values, including computed sums and ignored values.
| id required | string Id identifier |
{- "estimate_values": [
- {
- "team_id": 949295028,
- "period_start": "2019-01-01",
- "total": 5
}, - {
- "team_id": 949295028,
- "period_start": "2019-01-01",
- "total": 10
}, - {
- "team_id": 563889676,
- "period_start": "2019-01-01",
- "total": 15
}, - {
- "team_id": 563889676,
- "period_start": "2019-01-01",
- "total": 20
}
]
}{- "updated": [
- {
- "id": "6776881149487632203",
- "team_id": 563889676,
- "team_membership_id": null,
- "period_start": "2019-01-01",
- "total": 15,
- "computed": false,
- "ignored": false
}, - {
- "id": "6776881149489311818",
- "team_id": 563889676,
- "team_membership_id": null,
- "period_start": null,
- "total": 35,
- "computed": true,
- "ignored": false
}, - {
- "id": "6776881149490125878",
- "team_id": null,
- "team_membership_id": null,
- "period_start": null,
- "total": 50,
- "computed": true,
- "ignored": false
}, - {
- "id": "6776881149490529746",
- "team_id": null,
- "team_membership_id": null,
- "period_start": "2019-01-01",
- "total": 25,
- "computed": true,
- "ignored": false
}, - {
- "id": "6776881149490943142",
- "team_id": 949295028,
- "team_membership_id": null,
- "period_start": "2019-01-01",
- "total": 5,
- "computed": false,
- "ignored": false
}, - {
- "id": "6776881149492175407",
- "team_id": null,
- "team_membership_id": null,
- "period_start": "2019-01-01",
- "total": 5,
- "computed": true,
- "ignored": false
}, - {
- "id": "6776881149493726512",
- "team_id": 563889676,
- "team_membership_id": null,
- "period_start": "2019-01-01",
- "total": 20,
- "computed": false,
- "ignored": false
}, - {
- "id": "6776881149494705557",
- "team_id": 949295028,
- "team_membership_id": null,
- "period_start": null,
- "total": 15,
- "computed": true,
- "ignored": false
}, - {
- "id": "6776881149498133135",
- "team_id": 949295028,
- "team_membership_id": null,
- "period_start": "2019-01-01",
- "total": 10,
- "computed": false,
- "ignored": false
}, - {
- "id": "6776881149499236800",
- "team_id": null,
- "team_membership_id": null,
- "period_start": "2019-01-01",
- "total": 20,
- "computed": true,
- "ignored": false
}
], - "destroyed": [ ]
}| id required | string Id identifier |
| {} | string |
{- "estimate_values": [
- {
- "id": "6776881149483568838",
- "team_id": null,
- "team_membership_id": null,
- "period_start": "2019-01-01",
- "total": 5,
- "computed": true,
- "ignored": false
}, - {
- "id": "6776881149485225809",
- "team_id": 563889676,
- "team_membership_id": null,
- "period_start": "2019-01-01",
- "total": 20,
- "computed": false,
- "ignored": false
}, - {
- "id": "6776881149487362068",
- "team_id": 949295028,
- "team_membership_id": null,
- "period_start": "2019-01-01",
- "total": 10,
- "computed": false,
- "ignored": false
}, - {
- "id": "6776881149487778568",
- "team_id": 563889676,
- "team_membership_id": null,
- "period_start": "2019-01-01",
- "total": 15,
- "computed": false,
- "ignored": false
}, - {
- "id": "6776881149494637954",
- "team_id": null,
- "team_membership_id": null,
- "period_start": "2019-01-01",
- "total": 20,
- "computed": true,
- "ignored": false
}, - {
- "id": "6776881149497124166",
- "team_id": 949295028,
- "team_membership_id": null,
- "period_start": "2019-01-01",
- "total": 5,
- "computed": false,
- "ignored": false
}, - {
- "id": "6776881149497859029",
- "team_id": 563889676,
- "team_membership_id": null,
- "period_start": null,
- "total": 35,
- "computed": true,
- "ignored": false
}, - {
- "id": "6776881149498218684",
- "team_id": null,
- "team_membership_id": null,
- "period_start": null,
- "total": 50,
- "computed": true,
- "ignored": false
}, - {
- "id": "6776881149498683658",
- "team_id": null,
- "team_membership_id": null,
- "period_start": "2019-01-01",
- "total": 25,
- "computed": true,
- "ignored": false
}, - {
- "id": "6776881149498909376",
- "team_id": 949295028,
- "team_membership_id": null,
- "period_start": null,
- "total": 15,
- "computed": true,
- "ignored": false
}
], - "pagination": {
- "total_records": 10,
- "total_pages": 1,
- "current_page": 1
}
}Returns all updated estimate values, including computed sums and ignored values.
| id required | string Id identifier |
{- "estimate_value": {
- "total": 20
}
}{- "updated": [
- {
- "id": "6776881149487468817",
- "team_id": 949295028,
- "team_membership_id": null,
- "period_start": null,
- "total": 25,
- "computed": true,
- "ignored": false
}, - {
- "id": "6776881149490802007",
- "team_id": null,
- "team_membership_id": null,
- "period_start": "2019-01-01",
- "total": 35,
- "computed": true,
- "ignored": false
}, - {
- "id": "6776881149491123830",
- "team_id": 949295028,
- "team_membership_id": null,
- "period_start": "2019-01-01",
- "total": 20,
- "computed": false,
- "ignored": false
}, - {
- "id": "6776881149492562019",
- "team_id": null,
- "team_membership_id": null,
- "period_start": null,
- "total": 60,
- "computed": true,
- "ignored": false
}
], - "destroyed": [ ]
}Returns all updated and destroyed estimate values, including computed sums and ignored values.
| id required | string Id identifier |
{ }{- "updated": [
- {
- "id": "6776881149491741642",
- "team_id": null,
- "team_membership_id": null,
- "period_start": null,
- "total": 40,
- "computed": true,
- "ignored": false
}, - {
- "id": "6776881149493435663",
- "team_id": null,
- "team_membership_id": null,
- "period_start": "2019-01-01",
- "total": 15,
- "computed": true,
- "ignored": false
}, - {
- "id": "6776881149496255620",
- "team_id": 949295028,
- "team_membership_id": null,
- "period_start": null,
- "total": 5,
- "computed": true,
- "ignored": false
}
], - "destroyed": [
- {
- "id": "6776881149486253923",
- "team_id": 949295028,
- "team_membership_id": null,
- "period_start": "2019-01-01",
- "total": 10,
- "computed": false,
- "ignored": false
}
]
}| product_id required | string ProductId identifier |
{- "idea_categories": [
- {
- "id": "251347229",
- "name": "Usability",
- "parent_id": null,
- "project_id": 131414752,
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "552935478",
- "name": "Storage",
- "parent_id": null,
- "project_id": 131414752,
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "972845454",
- "name": "Hard disk drive",
- "parent_id": 552935478,
- "project_id": 131414752,
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "pagination": {
- "total_records": 3,
- "total_pages": 1,
- "current_page": 1
}
}Idea comments can appear in ideas portals. To reply to an idea_comment, specify the parent_idea_comment_id. Its visibility will come from its parent idea comment and cannot be overridden.
| idea_id required | string IdeaId identifier |
object |
{- "idea_comment": {
- "idea_id": "PRJ1-I-1",
- "body": "<p>This is the comment body.</p>"
}
}{- "idea_comment": {
- "id": "6776881149497092049",
- "idea_id": "58056975",
- "body": "<p>This is the comment body.</p>",
- "created_at": "2019-01-01T00:00:00.000Z",
- "visibility": "Visible to all ideas portal users",
- "parent_idea_comment_id": null,
- "idea_commenter_user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "idea": {
- "id": "58056975",
- "reference_num": "PRJ1-I-1",
- "name": "Idea 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "103757394",
- "body": "Description of idea 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}, - "attachments": [ ]
}
}Idea comments can appear in ideas portals. To reply to an idea_comment, specify the parent_idea_comment_id. Its visibility will come from its parent idea comment and cannot be overridden.
| idea_id required | string IdeaId identifier |
{- "idea_comments": [
- {
- "id": "622085811",
- "idea_id": "58056975",
- "body": "This is a great idea! We'll get started right away.",
- "created_at": "2019-01-01T00:00:00.000Z",
- "visibility": "Visible to all ideas portal users",
- "parent_idea_comment_id": null,
- "idea_commenter_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "idea": {
- "id": "58056975",
- "reference_num": "PRJ1-I-1",
- "name": "Idea 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "103757394",
- "body": "Description of idea 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}, - "attachments": [ ]
}, - {
- "id": "6776881149487056351",
- "idea_id": "58056975",
- "body": "A reply to a comment",
- "created_at": "2019-01-01T00:00:00.000Z",
- "visibility": "Visible to all ideas portal users",
- "parent_idea_comment_id": 622085811,
- "idea_commenter_user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "idea": {
- "id": "58056975",
- "reference_num": "PRJ1-I-1",
- "name": "Idea 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "103757394",
- "body": "Description of idea 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}, - "attachments": [ ]
}, - {
- "id": "6776881149491301288",
- "idea_id": "58056975",
- "body": "Just us employees",
- "created_at": "2019-01-01T00:00:00.000Z",
- "visibility": "Visible to creator and employees",
- "parent_idea_comment_id": null,
- "idea_commenter_user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "idea": {
- "id": "58056975",
- "reference_num": "PRJ1-I-1",
- "name": "Idea 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "103757394",
- "body": "Description of idea 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}, - "attachments": [ ]
}
], - "pagination": {
- "total_records": 3,
- "total_pages": 1,
- "current_page": 1
}
}Idea comments can appear in ideas portals. To reply to an idea_comment, specify the parent_idea_comment_id. Its visibility will come from its parent idea comment and cannot be overridden.
| id required | string Id identifier |
object |
{- "idea_comment": {
- "spam": "true"
}
}{- "idea_comment": {
- "id": "622085811",
- "idea_id": "58056975",
- "body": "<p>Updated comment body.</p>",
- "created_at": "2019-01-01T00:00:00.000Z",
- "visibility": "Visible to all ideas portal users",
- "parent_idea_comment_id": null,
- "idea_commenter_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "idea": {
- "id": "58056975",
- "reference_num": "PRJ1-I-1",
- "name": "Idea 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "103757394",
- "body": "Description of idea 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}, - "attachments": [ ]
}
}Idea comments can appear in ideas portals. To reply to an idea_comment, specify the parent_idea_comment_id. Its visibility will come from its parent idea comment and cannot be overridden.
| idea_id required | string IdeaId identifier |
| id required | string Id identifier |
"Idea votes" in the web interface are referenced as "idea endorsements" from API endpoints.
| idea_id required | string IdeaId identifier |
object |
{- "idea_endorsement": {
- "email": "no-reply@aha.io"
}
}{- "idea_endorsement": {
- "id": "6776881149485303077",
- "idea_id": "58056975",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "value": "2.0",
- "weight": 1,
- "endorsed_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "idea_organization": {
- "id": "138732915",
- "name": "Acme",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - "description": {
- "id": "6776881149495543710",
- "body": "This is a description",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "integration_fields": [ ],
- "custom_fields": [ ],
- "idea": {
- "id": "58056975",
- "reference_num": "PRJ1-I-1",
- "name": "Idea 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "103757394",
- "body": "Description of idea 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}
}
}"Idea votes" in the web interface are referenced as "idea endorsements" from API endpoints.
| idea_id required | string IdeaId identifier |
| fields | string Example: fields=*,associated_idea_organizations |
{- "idea_endorsements": [
- {
- "id": "53377392",
- "idea_id": "58056975",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "value": null,
- "link": null,
- "weight": 1,
- "endorsed_by_idea_user": {
- "id": "6776881149489779141",
- "name": "user@example.com",
- "email": "user@example.com",
- "created_at": "2019-01-01T00:00:00.000Z",
- "title": null
}, - "associated_idea_organizations": [
- {
- "id": "138732915",
- "name": "Acme",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "6776881149495446266",
- "name": "Widgets",
- "created_at": "2019-01-01T00:00:00.000Z",
}
], - "description": {
- "id": "6776881149484433841",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "integration_fields": [
- {
- "id": "975466318",
- "name": "key",
- "value": "JRA-123",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "custom_fields": [ ],
- "idea": {
- "id": "58056975",
- "reference_num": "PRJ1-I-1",
- "name": "Idea 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "103757394",
- "body": "Description of idea 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}Create an additional vote for a user who has already voted on the idea. Only permitted for an ideas portal where users are allowed multiple votes on the same idea.
| idea_id required | string IdeaId identifier |
| multiple_endorsements | string Example: multiple_endorsements=true |
object |
{- "idea_endorsement": {
- "email": "no-reply@aha.io"
}
}{- "idea_endorsement": {
- "id": "6776881149490277785",
- "idea_id": "140490859",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "value": null,
- "link": null,
- "weight": 1,
- "endorsed_by_portal_user": {
- "id": "6776881149497726716",
- "name": "no-reply@aha.io",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - "endorsed_by_idea_user": {
- "id": "6776881149497315738",
- "name": "no-reply@aha.io",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "title": null
}, - "description": {
- "id": "",
- "body": "",
- "editor_version": 2,
- "created_at": null,
- "updated_at": null,
- "attachments": [ ]
}, - "integration_fields": [ ],
- "custom_fields": [ ],
- "idea": {
- "id": "140490859",
- "reference_num": "PRJ1-I-8",
- "name": "Some idea name 3",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "6776881149495006288",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}
}
}"Idea votes" in the web interface are referenced as "idea endorsements" from API endpoints.
| idea_id required | string IdeaId identifier |
| idea_portal_id required | string IdeaPortalId identifier |
| idea_portal_id | string Example: idea_portal_id=747493361 |
object |
{- "idea_endorsement": {
- "email": "no-reply@aha.io",
- "idea_portal_id": 747493361
}
}{- "idea_endorsement": {
- "id": "6776881149496332684",
- "idea_id": "140490859",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "value": null,
- "link": null,
- "weight": 1,
- "endorsed_by_portal_user": {
- "id": "6776881149488700322",
- "name": "no-reply@aha.io",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - "endorsed_by_idea_user": {
- "id": "6776881149490328278",
- "name": "no-reply@aha.io",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "title": null
}, - "description": {
- "id": "",
- "body": "",
- "editor_version": 2,
- "created_at": null,
- "updated_at": null,
- "attachments": [ ]
}, - "integration_fields": [ ],
- "custom_fields": [ ],
- "idea": {
- "id": "140490859",
- "reference_num": "PRJ1-I-8",
- "name": "Some idea name 3",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "6776881149487885666",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}
}
}"Idea votes" in the web interface are referenced as "idea endorsements" from API endpoints.
{- "idea_endorsements": [
- {
- "id": "53377392",
- "idea_id": "58056975",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "value": null,
- "link": null,
- "weight": 1,
- "endorsed_by_portal_user": {
- "id": "646391926",
- "name": "John Long",
- "email": "john@long.com",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - "endorsed_by_idea_user": {
- "id": "1056507375",
- "name": "John Long",
- "email": "john@long.com",
- "created_at": "2019-01-01T00:00:00.000Z",
- "title": null
}, - "idea_organization": {
- "id": "138732915",
- "name": "Acme",
- "created_at": "2019-01-01T00:00:00.000Z",
}
}, - {
- "id": "260764892",
- "idea_id": "397084149",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "value": null,
- "link": null,
- "weight": 1,
- "endorsed_by_portal_user": {
- "id": "143214937",
- "name": "Joe Shmo",
- "email": "joe@shmo.com",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - "endorsed_by_idea_user": {
- "id": "284648642",
- "name": "Joe Shmo",
- "email": "joe@shmo.com",
- "created_at": "2019-01-01T00:00:00.000Z",
- "title": null
}
}, - {
- "id": "377726308",
- "idea_id": "245519441",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "value": null,
- "link": null,
- "weight": 1,
- "endorsed_by_portal_user": {
- "id": "143214937",
- "name": "Joe Shmo",
- "email": "joe@shmo.com",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - "endorsed_by_idea_user": {
- "id": "284648642",
- "name": "Joe Shmo",
- "email": "joe@shmo.com",
- "created_at": "2019-01-01T00:00:00.000Z",
- "title": null
}
}, - {
- "id": "449162139",
- "idea_id": "849214356",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "value": null,
- "link": null,
- "weight": 1,
- "endorsed_by_portal_user": {
- "id": "646391926",
- "name": "John Long",
- "email": "john@long.com",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - "endorsed_by_idea_user": {
- "id": "1056507375",
- "name": "John Long",
- "email": "john@long.com",
- "created_at": "2019-01-01T00:00:00.000Z",
- "title": null
}, - "idea_organization": {
- "id": "138732915",
- "name": "Acme",
- "created_at": "2019-01-01T00:00:00.000Z",
}
}, - {
- "id": "562337269",
- "idea_id": "140490859",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "value": null,
- "link": null,
- "weight": 1,
- "endorsed_by_portal_user": {
- "id": "143214937",
- "name": "Joe Shmo",
- "email": "joe@shmo.com",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - "endorsed_by_idea_user": {
- "id": "284648642",
- "name": "Joe Shmo",
- "email": "joe@shmo.com",
- "created_at": "2019-01-01T00:00:00.000Z",
- "title": null
}
}, - {
- "id": "1062165688",
- "idea_id": "444379319",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "value": null,
- "link": null,
- "weight": 1,
- "endorsed_by_portal_user": {
- "id": "646391926",
- "name": "John Long",
- "email": "john@long.com",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - "endorsed_by_idea_user": {
- "id": "1056507375",
- "name": "John Long",
- "email": "john@long.com",
- "created_at": "2019-01-01T00:00:00.000Z",
- "title": null
}
}, - {
- "id": "1071644760",
- "idea_id": "290908627",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "value": null,
- "link": null,
- "weight": 1,
- "endorsed_by_portal_user": {
- "id": "143214937",
- "name": "Joe Shmo",
- "email": "joe@shmo.com",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - "endorsed_by_idea_user": {
- "id": "284648642",
- "name": "Joe Shmo",
- "email": "joe@shmo.com",
- "created_at": "2019-01-01T00:00:00.000Z",
- "title": null
}
}
], - "pagination": {
- "total_records": 7,
- "total_pages": 1,
- "current_page": 1
}
}Only returns votes that have an associated organization (proxy votes).
| idea_id required | string IdeaId identifier |
| proxy | string Example: proxy=true |
{- "idea_endorsements": [
- {
- "id": "53377392",
- "idea_id": "58056975",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "value": null,
- "link": null,
- "weight": 1,
- "endorsed_by_portal_user": {
- "id": "646391926",
- "name": "John Long",
- "email": "john@long.com",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - "endorsed_by_idea_user": {
- "id": "1056507375",
- "name": "John Long",
- "email": "john@long.com",
- "created_at": "2019-01-01T00:00:00.000Z",
- "title": null
}, - "idea_organization": {
- "id": "138732915",
- "name": "Acme",
- "created_at": "2019-01-01T00:00:00.000Z",
}
}, - {
- "id": "6776881149498445225",
- "idea_id": "58056975",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "value": null,
- "link": null,
- "weight": 1,
- "endorsed_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "idea_organization": {
- "id": "138732915",
- "name": "Acme",
- "created_at": "2019-01-01T00:00:00.000Z",
}
}
], - "pagination": {
- "total_records": 2,
- "total_pages": 1,
- "current_page": 1
}
}"Idea votes" in the web interface are referenced as "idea endorsements" from API endpoints.
| idea_id required | string IdeaId identifier |
| id required | string Id identifier |
{- "idea_endorsement": {
- "id": "53377392",
- "idea_id": "58056975",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "value": null,
- "link": null,
- "weight": 1,
- "endorsed_by_portal_user": {
- "id": "646391926",
- "name": "John Long",
- "email": "john@long.com",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - "endorsed_by_idea_user": {
- "id": "1056507375",
- "name": "John Long",
- "email": "john@long.com",
- "created_at": "2019-01-01T00:00:00.000Z",
- "title": null
}, - "idea_organization": {
- "id": "138732915",
- "name": "Acme",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - "idea_users": [
- {
- "id": "670061655",
- "first_name": "Tim",
- "last_name": "Smith",
- "email": "tim@smith.com"
}, - {
- "id": "1056507375",
- "first_name": "John",
- "last_name": "Long",
- "email": "john@long.com"
}
], - "description": {
- "id": "6776881149490876559",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "integration_fields": [
- {
- "id": "975466318",
- "name": "key",
- "value": "JRA-123",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "custom_fields": [ ],
- "idea": {
- "id": "58056975",
- "reference_num": "PRJ1-I-1",
- "name": "Idea 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "103757394",
- "body": "Description of idea 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}
}
}"Idea votes" in the web interface are referenced as "idea endorsements" from API endpoints.
| idea_id required | string IdeaId identifier |
| id required | string Id identifier |
object |
{- "idea_endorsement": {
- "value": 123.45
}
}{- "idea_endorsement": {
- "id": "53377392",
- "idea_id": "58056975",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "value": null,
- "link": null,
- "weight": 1,
- "endorsed_by_portal_user": {
- "id": "646391926",
- "name": "John Long",
- "email": "john@long.com",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - "endorsed_by_idea_user": {
- "id": "1056507375",
- "name": "John Long",
- "email": "john@long.com",
- "created_at": "2019-01-01T00:00:00.000Z",
- "title": null
}, - "idea_organization": {
- "id": "138732915",
- "name": "Acme",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - "description": {
- "id": "",
- "body": "",
- "editor_version": 2,
- "created_at": null,
- "updated_at": null,
- "attachments": [ ]
}, - "integration_fields": [
- {
- "id": "975466318",
- "name": "key",
- "value": "JRA-123",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "custom_fields": [
- {
- "id": "6776881149489855953",
- "key": "vote_priority",
- "name": "Priority",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "P3",
- "type": "string"
}
], - "idea": {
- "id": "58056975",
- "reference_num": "PRJ1-I-1",
- "name": "Idea 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "103757394",
- "body": "Description of idea 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}
}
}{- "idea_organizations": [
- {
- "id": "138732915",
- "name": "Acme",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "290305227",
- "name": "FaceTube",
- "created_at": "2019-01-01T00:00:00.000Z",
}
], - "pagination": {
- "total_records": 2,
- "total_pages": 1,
- "current_page": 1
}
}object |
{- "idea_organization": {
- "name": "My organization",
- "email_domains": "example.com, example.org",
- "revenue": "55000"
}
}{- "idea_organization": {
- "id": "6776881149496968773",
- "name": "My organization",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "6776881149489955957",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "created_by_user": {
- "id": "1049303076",
- "name": "George Gently",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "endorsements_count": 0,
- "email_domains": "example.com, example.org",
- "revenue": "55000.0",
- "custom_fields": [ ],
- "integration_fields": [ ]
}
}| id required | string Id identifier |
{- "idea_organization": {
- "id": "138732915",
- "name": "Acme",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "6776881149484915034",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "endorsements_count": 2,
- "email_domains": "",
- "revenue": null,
- "custom_fields": [
- {
- "id": 957991743,
- "key": "org_equation_field",
- "name": "Org equation field",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": {
- "values": {
- "test": {
- "value": 10,
- "name": "a",
- "display_value": "10.0"
}
}
}, - "type": "equation_sheet"
}
], - "integration_fields": [ ]
}
}| id required | string Id identifier |
object |
{- "idea_organization": {
- "name": "A new name"
}
}{- "idea_organization": {
- "id": "138732915",
- "name": "Acme",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "",
- "body": "#<note:0x000000032df23480></note:0x000000032df23480>",
- "editor_version": 2,
- "created_at": null,
- "updated_at": null,
- "attachments": [ ]
}, - "endorsements_count": 2,
- "email_domains": "",
- "revenue": null,
- "custom_fields": [
- {
- "id": "6776881149493996495",
- "key": "industry",
- "name": "Industry",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "retail",
- "type": "string"
}, - {
- "id": 957991743,
- "key": "org_equation_field",
- "name": "Org equation field",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": {
- "values": {
- "test": {
- "value": 10,
- "name": "a",
- "display_value": "10.0"
}
}
}, - "type": "equation_sheet"
}
], - "integration_fields": [ ]
}
}| product_id required | string ProductId identifier |
{- "idea_portals": [
- {
- "id": "297813804",
- "title": "Ideas 3",
- "portal_enabled": true,
- "access_type": "public",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "650606523",
- "title": "Ideas 2",
- "portal_enabled": true,
- "access_type": "public",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "1070474755",
- "title": "Ideas 1",
- "portal_enabled": true,
- "access_type": "submit-only",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "pagination": {
- "total_records": 3,
- "total_pages": 1,
- "current_page": 1
}
}| page | string Example: page=1 |
| per_page | string Example: per_page=10 |
{- "idea_portals": [
- {
- "id": "297813804",
- "title": "Ideas 3",
- "portal_enabled": true,
- "access_type": "public",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "650606523",
- "title": "Ideas 2",
- "portal_enabled": true,
- "access_type": "public",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "675900055",
- "title": "portal with 1 endorsement per idea",
- "portal_enabled": true,
- "access_type": "submit-only",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "747493361",
- "title": "portal with 2 endorsements per idea",
- "portal_enabled": true,
- "access_type": "submit-only",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "1070474755",
- "title": "Ideas 1",
- "portal_enabled": true,
- "access_type": "submit-only",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "pagination": {
- "total_records": 5,
- "total_pages": 1,
- "current_page": 1
}
}| idea_id required | string IdeaId identifier |
object |
{- "idea_subscription": {
- "email": "username@example.com"
}
}{- "idea_subscription": {
- "id": "6776881149499782711",
- "idea_id": "58056975",
- "created_at": "2019-01-01T00:00:00.000Z",
- "portal_user": {
- "id": "6776881149490241023",
- "name": "username@example.com",
- "email": "username@example.com",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - "idea": {
- "id": "58056975",
- "reference_num": "PRJ1-I-1",
- "name": "Idea 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "103757394",
- "body": "Description of idea 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}
}
}| idea_id required | string IdeaId identifier |
{- "idea_subscriptions": [
- {
- "id": "783147498",
- "idea_id": "58056975",
- "created_at": "2019-01-01T00:00:00.000Z",
- "portal_user": {
- "id": "646391926",
- "name": "John Long",
- "email": "john@long.com",
- "created_at": "2019-01-01T00:00:00.000Z"
}
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}| idea_id required | string IdeaId identifier |
| id required | string Id identifier |
{- "idea_subscription": {
- "id": "783147498",
- "idea_id": "58056975",
- "created_at": "2019-01-01T00:00:00.000Z",
- "portal_user": {
- "id": "646391926",
- "name": "John Long",
- "email": "john@long.com",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - "idea": {
- "id": "58056975",
- "reference_num": "PRJ1-I-1",
- "name": "Idea 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "103757394",
- "body": "Description of idea 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}
}
}object |
{- "idea_user": {
- "email": "sam.doe@example.com",
- "first_name": "sam",
- "last_name": "doe"
}
}{- "idea_user": {
- "id": "6776881149489958901",
- "name": "sam doe",
- "email": "sam.doe@example.com",
- "discovery_interview_count": 0,
- "discovery_last_invite": null,
- "discovery_last_interview": null,
- "discovery_next_interview": null,
- "created_at": "2019-01-01T00:00:00.000Z",
- "idea_organizations": [ ],
- "custom_fields": [ ],
- "integration_fields": [ ]
}
}{- "idea_users": [
- {
- "id": "55650758",
- "name": "Sir Mixalot",
- "email": "spins@example.com",
- "discovery_interview_count": 0,
- "discovery_last_invite": null,
- "discovery_last_interview": null,
- "discovery_next_interview": null,
- "created_at": "2019-01-01T00:00:00.000Z",
- "idea_organizations": [
- {
- "id": "138732915",
- "name": "Acme",
- "created_at": "2019-01-01T00:00:00.000Z",
}
], - "custom_fields": [ ],
- "integration_fields": [ ]
}, - {
- "id": "244576613",
- "name": "Sammy Smith",
- "email": "sammy@smith.com",
- "discovery_interview_count": 0,
- "discovery_last_invite": null,
- "discovery_last_interview": null,
- "discovery_next_interview": null,
- "created_at": "2019-01-01T00:00:00.000Z",
- "idea_organizations": [ ],
- "custom_fields": [ ],
- "integration_fields": [ ]
}, - {
- "id": "284648642",
- "name": "Joe Shmo",
- "email": "joe@shmo.com",
- "discovery_interview_count": 0,
- "discovery_last_invite": null,
- "discovery_last_interview": null,
- "discovery_next_interview": null,
- "created_at": "2019-01-01T00:00:00.000Z",
- "idea_organizations": [ ],
- "custom_fields": [ ],
- "integration_fields": [ ]
}, - {
- "id": "446386906",
- "name": "Timmy Smith",
- "email": "timmy@smith.com",
- "discovery_interview_count": 0,
- "discovery_last_invite": null,
- "discovery_last_interview": null,
- "discovery_next_interview": null,
- "created_at": "2019-01-01T00:00:00.000Z",
- "idea_organizations": [ ],
- "custom_fields": [ ],
- "integration_fields": [ ]
}, - {
- "id": "670061655",
- "name": "Tim Smith",
- "email": "tim@smith.com",
- "discovery_interview_count": 0,
- "discovery_last_invite": null,
- "discovery_last_interview": null,
- "discovery_next_interview": null,
- "created_at": "2019-01-01T00:00:00.000Z",
- "idea_organizations": [ ],
- "custom_fields": [ ],
- "integration_fields": [ ]
}, - {
- "id": "761219305",
- "name": "Mr Scrooge",
- "email": "lot@example.com",
- "discovery_interview_count": 0,
- "discovery_last_invite": null,
- "discovery_last_interview": null,
- "discovery_next_interview": null,
- "created_at": "2019-01-01T00:00:00.000Z",
- "idea_organizations": [
- {
- "id": "138732915",
- "name": "Acme",
- "created_at": "2019-01-01T00:00:00.000Z",
}
], - "custom_fields": [ ],
- "integration_fields": [ ]
}, - {
- "id": "870840916",
- "name": "Bill Billings",
- "email": "no-reply@aha.io",
- "discovery_interview_count": 0,
- "discovery_last_invite": null,
- "discovery_last_interview": null,
- "discovery_next_interview": null,
- "created_at": "2019-01-01T00:00:00.000Z",
- "idea_organizations": [ ],
- "custom_fields": [ ],
- "integration_fields": [ ]
}, - {
- "id": "966050294",
- "name": "John Long",
- "email": "johnvery@long.com",
- "discovery_interview_count": 0,
- "discovery_last_invite": null,
- "discovery_last_interview": null,
- "discovery_next_interview": null,
- "created_at": "2019-01-01T00:00:00.000Z",
- "idea_organizations": [ ],
- "custom_fields": [ ],
- "integration_fields": [ ]
}, - {
- "id": "1056507375",
- "name": "John Long",
- "email": "john@long.com",
- "discovery_interview_count": 0,
- "discovery_last_invite": null,
- "discovery_last_interview": null,
- "discovery_next_interview": null,
- "created_at": "2019-01-01T00:00:00.000Z",
- "idea_organizations": [ ],
- "custom_fields": [ ],
- "integration_fields": [ ]
}
], - "pagination": {
- "total_records": 9,
- "total_pages": 1,
- "current_page": 1
}
}| id required | string Id identifier |
{- "idea_user": {
- "id": "1056507375",
- "name": "John Long",
- "email": "john@long.com",
- "discovery_interview_count": 0,
- "discovery_last_invite": null,
- "discovery_last_interview": null,
- "discovery_next_interview": null,
- "created_at": "2019-01-01T00:00:00.000Z",
- "idea_organizations": [ ],
- "custom_fields": [
- {
- "id": "6776881149490597073",
- "key": "text_field",
- "name": "TextField",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "the value for the field",
- "type": "string"
}
], - "integration_fields": [ ]
}
}| id required | string Id identifier |
object |
{- "idea_user": {
- "first_name": "Sarah"
}
}{- "idea_user": {
- "id": "1056507375",
- "name": "John Long",
- "email": "john@long.com",
- "discovery_interview_count": 0,
- "discovery_last_invite": null,
- "discovery_last_interview": null,
- "discovery_next_interview": null,
- "created_at": "2019-01-01T00:00:00.000Z",
- "idea_organizations": [ ],
- "custom_fields": [ ],
- "integration_fields": [ ]
}
}{- "identity_providers": [
- {
- "id": "483954339",
- "enabled": true,
- "name": "notebook",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
]
}| id required | string Id identifier |
{- "identity_provider": {
- "id": "483954339",
- "enabled": true,
- "name": "notebook",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}This endpoint mimicks the "Send to integration" button on a record in the UI.
| integration_id | integer |
| model_class | string |
| model_id | integer |
{- "integration_id": 204584239,
- "model_class": "Feature",
- "model_id": 1007868956
}{- "status": "success"
}| feature_id required | string FeatureId identifier |
| integration_id required | string IntegrationId identifier |
object |
{- "integration_field": {
- "name": "key",
- "value": "JRA-34"
}
}[- 728894778,
- 846945422
]DEPRECATED: provide :integration_id rather than :service_name to identify the integration.
| feature_id required | string FeatureId identifier |
| service_name required | string ServiceName identifier |
object |
{- "integration_field": {
- "name": "key",
- "value": "JRA-34"
}
}[- 728894778,
- 846945422
]| epic_id required | string EpicId identifier |
| integration_id required | string IntegrationId identifier |
object |
{- "integration_field": {
- "name": "key",
- "value": "JRA-34"
}
}[- 907392375,
- 790422735
]| idea_endorsement_id required | string IdeaEndorsementId identifier |
| integration_id required | string IntegrationId identifier |
object |
{- "integration_field": {
- "name": "key",
- "value": "JRA-34"
}
}{- "integration_field": {
- "id": "975466318",
- "name": "key",
- "value": "JRA-34",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z",
- "integratable": {
}
}
}| idea_id required | string IdeaId identifier |
| integration_id required | string IntegrationId identifier |
object |
{- "integration_field": {
- "name": "key",
- "value": "JRA-34"
}
}[- "6776881149484343025",
- "6776881149496067156"
]| feature_id required | string FeatureId identifier |
| integration_id required | string IntegrationId identifier |
| field_name required | string FieldName identifier |
{- "integration_field": {
- "id": "728894778",
- "name": "key",
- "value": "JRA-123",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z",
- "integratable": {
}
}
}Possible records are releases, initiatives, features, epics, requirements, ideas or idea votes.
| integration_id required | string IntegrationId identifier |
| field_name required | string FieldName identifier |
| field_value required | string FieldValue identifier |
{- "records": [
- {
- "feature": {
- "integration_id": 204584239,
- "service_name": "jira",
- "id": "1007868956",
- "name": "Feature 1",
- "reference_num": "PRJ1-1",
- "initiative_reference_num": "PRJ1-S-1",
- "release_reference_num": "PRJ1-R-1",
- "epic_reference_num": "PRJ1-E-1",
- "position": 1,
- "score": 3,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "start_date": "2019-01-01",
- "due_date": "2019-01-01",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "status_changed_on": null,
- "created_by_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_kind": {
- "id": "98484309",
- "name": "New"
}, - "workflow_status": {
- "id": "934242751",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "description": {
- "id": "793547626",
- "body": "Body of note 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [
- {
- "id": "630489833",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 123,
- "content_type": "application/excel",
- "file_name": "spreadsheet_file.xlsx",
- "file_size": 123
}, - {
- "id": "724655692",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 123,
- "content_type": "text/plain",
- "file_name": "uploaded_file_name.txt",
- "file_size": 123
}
]
}, - "attachments": [ ],
- "integration_fields": [
- {
- "id": "92040219",
- "name": "url",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "728894778",
- "name": "key",
- "value": "JRA-123",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "846945422",
- "name": "id",
- "value": "435",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "release": {
- "id": "278327321",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - "master_feature": {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - "belongs_to_release_phase": {
- "id": "20526005",
- "name": "Alpha",
- "start_on": "2019-01-01",
- "end_on": "2019-01-01",
- "type": "phase",
- "release_id": 278327321,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "description": {
- "id": "243384959",
- "body": "Description of release phase 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}, - "epic": {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "requirements": [
- {
- "id": "96915428",
- "name": "Body of requirement 2",
- "reference_num": "PRJ1-1-2",
- "position": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "release_id": 278327321,
- "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_status": {
- "id": "1025247908",
- "name": "Shipped",
- "position": 5,
- "complete": true,
- "color": "#ecdd8f"
}, - "description": {
- "id": "6776881149486698824",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "feature": {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "attachments": [ ],
- "tags": [ ],
- "full_tags": [ ],
- "custom_fields": [ ],
- "integration_fields": [ ],
- "comments_count": 0
}, - {
- "id": "483368544",
- "name": "Body of requirement 1",
- "reference_num": "PRJ1-1-1",
- "position": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "release_id": 278327321,
- "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_status": {
- "id": "934242751",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "910541534",
- "body": "Body of requirement 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "feature": {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "attachments": [ ],
- "tags": [ ],
- "full_tags": [ ],
- "custom_fields": [
- {
- "id": 848810602,
- "key": "expected_completion_date",
- "name": "Expected completion date",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "2019-01-01",
- "type": "date"
}, - {
- "id": 731808726,
- "key": "requested_by",
- "name": "Requested By",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "TK",
- "type": "string"
}
], - "integration_fields": [
- {
- "id": "32487847",
- "name": "key",
- "value": "JRA-987",
- "integration_id": 342659513,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "417785887",
- "name": "id",
- "value": "991",
- "integration_id": 342659513,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "803330186",
- "name": "aha::remote_entity",
- "value": "issue_10100",
- "integration_id": 342659513,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "comments_count": 1
}, - {
- "id": "851574643",
- "name": "Body of requirement 3",
- "reference_num": "PRJ1-1-3",
- "position": 3,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "release_id": 278327321,
- "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_status": {
- "id": "922838743",
- "name": "Not started",
- "position": 8,
- "complete": false,
- "color": "#dce790"
}, - "description": {
- "id": "6776881149489728999",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "feature": {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "attachments": [ ],
- "tags": [ ],
- "full_tags": [ ],
- "custom_fields": [ ],
- "integration_fields": [ ],
- "comments_count": 0
}
], - "initiative": {
- "id": "423077122",
- "reference_num": "PRJ1-S-1",
- "name": "Initiative 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "673273729",
- "body": "Description of initiative 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "integration_fields": [
- {
- "id": "546711007",
- "name": "id",
- "value": "9913333",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "966751335",
- "name": "key",
- "value": "JRA-987222",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
]
}, - "goals": [
- {
- "id": "602095703",
- "name": "Goal 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "166463080",
- "body": "Description of goal 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}
], - "comments_count": 1,
- "score_facts": [
- {
- "id": "728895917",
- "value": 1,
- "name": "Effort"
}, - {
- "id": "846938137",
- "value": 2,
- "name": "Benefit"
}
], - "tags": [
- "Engineering",
- "Infrastructure"
], - "full_tags": [
- {
- "id": 3412727,
- "name": "Engineering",
- "color": "#e09052"
}, - {
- "id": 775582684,
- "name": "Infrastructure",
- "color": "#7552e0"
}
], - "custom_fields": [
- {
- "id": 1051489895,
- "key": "equation_specs_field",
- "name": "Equation specs field",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": {
- "values": {
- "123": {
- "value": 10,
- "name": "a",
- "display_value": "10.0"
}, - "456": {
- "value": "Foobar",
- "name": "b",
- "display_value": "Foobar"
}, - "789": {
- "value": null,
- "name": "789",
- "display_value": null
}
}
}, - "type": "equation_sheet"
}, - {
- "id": 621325984,
- "key": "expected_completion_date",
- "name": "Expected completion date",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "2019-01-01",
- "type": "date"
}, - {
- "id": 694694494,
- "key": "negative_scorecard",
- "name": "Negative custom scorecard",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": 31,
- "type": "scorecard",
- "score_facts": [
- {
- "id": "462102328",
- "value": 6,
- "name": "Negative default value"
}
]
}, - {
- "id": 736691743,
- "key": "upload",
- "name": "Upload",
- "updatedAt": "2019-01-01T00:00:00Z",
- "attachments": [
- {
- "id": "471688235",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 123,
- "content_type": "text/plain",
- "file_name": "uploaded_file_name.txt",
- "file_size": 123
}
], - "type": "attachment"
}
], - "feature_links": [
- {
- "link_type": "Depends on",
- "link_type_id": 20,
- "created_at": "2019-01-01T00:00:00.000Z",
- "parent_record": {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "child_record": {
- "id": "622562724",
- "reference_num": "PRJ1-2",
- "name": "Another Feature",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
}
], - "feature_only_original_estimate": null,
- "feature_only_remaining_estimate": null,
- "feature_only_work_done": null
}
}, - {
- "idea_endorsement": {
- "integration_id": 204584239,
- "service_name": "jira",
- "id": "53377392",
- "idea_id": "58056975",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "value": null,
- "link": null,
- "weight": 1,
- "endorsed_by_portal_user": {
- "id": "646391926",
- "name": "John Long",
- "email": "john@long.com",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - "endorsed_by_idea_user": {
- "id": "1056507375",
- "name": "John Long",
- "email": "john@long.com",
- "created_at": "2019-01-01T00:00:00.000Z",
- "title": null
}, - "idea_organization": {
- "id": "138732915",
- "name": "Acme",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - "description": {
- "id": "6776881149497389948",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "integration_fields": [
- {
- "id": "975466318",
- "name": "key",
- "value": "JRA-123",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "custom_fields": [ ],
- "idea": {
- "id": "58056975",
- "reference_num": "PRJ1-I-1",
- "name": "Idea 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "103757394",
- "body": "Description of idea 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}
}
}
], - "pagination": {
- "total_records": 2,
- "total_pages": 1,
- "current_page": 1
}
}| field_name required | string FieldName identifier |
| field_value required | string FieldValue identifier |
{- "records": [ ],
- "pagination": {
- "total_records": 0,
- "total_pages": 0,
- "current_page": 1
}
}| field_name required | string FieldName identifier |
| field_value required | string FieldValue identifier |
{- "records": [ ],
- "pagination": {
- "total_records": 0,
- "total_pages": 0,
- "current_page": 1
}
}| field_name required | string FieldName identifier |
| field_value required | string FieldValue identifier |
{- "records": [
- {
- "feature": {
- "integration_id": 204584239,
- "service_name": "jira",
- "id": "1007868956",
- "name": "Feature 1",
- "reference_num": "PRJ1-1",
- "initiative_reference_num": "PRJ1-S-1",
- "release_reference_num": "PRJ1-R-1",
- "epic_reference_num": "PRJ1-E-1",
- "position": 1,
- "score": 3,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "start_date": "2019-01-01",
- "due_date": "2019-01-01",
- "product_id": "131414752",
- "progress": null,
- "progress_source": "progress_manual",
- "status_changed_on": null,
- "created_by_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_kind": {
- "id": "98484309",
- "name": "New"
}, - "workflow_status": {
- "id": "934242751",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "description": {
- "id": "793547626",
- "body": "Body of note 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [
- {
- "id": "630489833",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 123,
- "content_type": "application/excel",
- "file_name": "spreadsheet_file.xlsx",
- "file_size": 123
}, - {
- "id": "724655692",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 123,
- "content_type": "text/plain",
- "file_name": "uploaded_file_name.txt",
- "file_size": 123
}
]
}, - "attachments": [ ],
- "integration_fields": [
- {
- "id": "92040219",
- "name": "url",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "728894778",
- "name": "key",
- "value": "JRA-123",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "846945422",
- "name": "id",
- "value": "435",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "release": {
- "id": "278327321",
- "reference_num": "PRJ1-R-1",
- "name": "Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "parking_lot": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752",
- "integration_fields": [
- {
- "id": "68217473",
- "name": "id",
- "value": "777",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "owner": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - "master_feature": {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - "belongs_to_release_phase": {
- "id": "20526005",
- "name": "Alpha",
- "start_on": "2019-01-01",
- "end_on": "2019-01-01",
- "type": "phase",
- "release_id": 278327321,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "description": {
- "id": "243384959",
- "body": "Description of release phase 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}, - "epic": {
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "requirements": [
- {
- "id": "96915428",
- "name": "Body of requirement 2",
- "reference_num": "PRJ1-1-2",
- "position": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "release_id": 278327321,
- "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_status": {
- "id": "1025247908",
- "name": "Shipped",
- "position": 5,
- "complete": true,
- "color": "#ecdd8f"
}, - "description": {
- "id": "6776881149483513065",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "feature": {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "attachments": [ ],
- "tags": [ ],
- "full_tags": [ ],
- "custom_fields": [ ],
- "integration_fields": [ ],
- "comments_count": 0
}, - {
- "id": "483368544",
- "name": "Body of requirement 1",
- "reference_num": "PRJ1-1-1",
- "position": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "release_id": 278327321,
- "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_status": {
- "id": "934242751",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "910541534",
- "body": "Body of requirement 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "feature": {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "attachments": [ ],
- "tags": [ ],
- "full_tags": [ ],
- "custom_fields": [
- {
- "id": 848810602,
- "key": "expected_completion_date",
- "name": "Expected completion date",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "2019-01-01",
- "type": "date"
}, - {
- "id": 731808726,
- "key": "requested_by",
- "name": "Requested By",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "TK",
- "type": "string"
}
], - "integration_fields": [
- {
- "id": "32487847",
- "name": "key",
- "value": "JRA-987",
- "integration_id": 342659513,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "417785887",
- "name": "id",
- "value": "991",
- "integration_id": 342659513,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "803330186",
- "name": "aha::remote_entity",
- "value": "issue_10100",
- "integration_id": 342659513,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "comments_count": 1
}, - {
- "id": "851574643",
- "name": "Body of requirement 3",
- "reference_num": "PRJ1-1-3",
- "position": 3,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "release_id": 278327321,
- "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "workflow_status": {
- "id": "922838743",
- "name": "Not started",
- "position": 8,
- "complete": false,
- "color": "#dce790"
}, - "description": {
- "id": "6776881149483817846",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "feature": {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "assigned_to_user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "attachments": [ ],
- "tags": [ ],
- "full_tags": [ ],
- "custom_fields": [ ],
- "integration_fields": [ ],
- "comments_count": 0
}
], - "initiative": {
- "id": "423077122",
- "reference_num": "PRJ1-S-1",
- "name": "Initiative 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "673273729",
- "body": "Description of initiative 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "integration_fields": [
- {
- "id": "546711007",
- "name": "id",
- "value": "9913333",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "966751335",
- "name": "key",
- "value": "JRA-987222",
- "integration_id": 186281709,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
]
}, - "goals": [
- {
- "id": "602095703",
- "name": "Goal 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "description": {
- "id": "166463080",
- "body": "Description of goal 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}
], - "comments_count": 1,
- "score_facts": [
- {
- "id": "728895917",
- "value": 1,
- "name": "Effort"
}, - {
- "id": "846938137",
- "value": 2,
- "name": "Benefit"
}
], - "tags": [
- "Engineering",
- "Infrastructure"
], - "full_tags": [
- {
- "id": 3412727,
- "name": "Engineering",
- "color": "#e09052"
}, - {
- "id": 775582684,
- "name": "Infrastructure",
- "color": "#7552e0"
}
], - "custom_fields": [
- {
- "id": 1051489895,
- "key": "equation_specs_field",
- "name": "Equation specs field",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": {
- "values": {
- "123": {
- "value": 10,
- "name": "a",
- "display_value": "10.0"
}, - "456": {
- "value": "Foobar",
- "name": "b",
- "display_value": "Foobar"
}, - "789": {
- "value": null,
- "name": "789",
- "display_value": null
}
}
}, - "type": "equation_sheet"
}, - {
- "id": 621325984,
- "key": "expected_completion_date",
- "name": "Expected completion date",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "2019-01-01",
- "type": "date"
}, - {
- "id": 694694494,
- "key": "negative_scorecard",
- "name": "Negative custom scorecard",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": 31,
- "type": "scorecard",
- "score_facts": [
- {
- "id": "462102328",
- "value": 6,
- "name": "Negative default value"
}
]
}, - {
- "id": 736691743,
- "key": "upload",
- "name": "Upload",
- "updatedAt": "2019-01-01T00:00:00Z",
- "attachments": [
- {
- "id": "471688235",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "original_file_size": 123,
- "content_type": "text/plain",
- "file_name": "uploaded_file_name.txt",
- "file_size": 123
}
], - "type": "attachment"
}
], - "feature_links": [
- {
- "link_type": "Depends on",
- "link_type_id": 20,
- "created_at": "2019-01-01T00:00:00.000Z",
- "parent_record": {
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "child_record": {
- "id": "622562724",
- "reference_num": "PRJ1-2",
- "name": "Another Feature",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
}
], - "feature_only_original_estimate": null,
- "feature_only_remaining_estimate": null,
- "feature_only_work_done": null
}
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}| field_name required | string FieldName identifier |
| field_value required | string FieldValue identifier |
{- "records": [ ],
- "pagination": {
- "total_records": 0,
- "total_pages": 0,
- "current_page": 1
}
}| field_name required | string FieldName identifier |
| field_value required | string FieldValue identifier |
{- "records": [ ],
- "pagination": {
- "total_records": 0,
- "total_pages": 0,
- "current_page": 1
}
}| field_name required | string FieldName identifier |
| field_value required | string FieldValue identifier |
{- "records": [ ],
- "pagination": {
- "total_records": 0,
- "total_pages": 0,
- "current_page": 1
}
}| field_name required | string FieldName identifier |
| field_value required | string FieldValue identifier |
{- "records": [
- {
- "idea_endorsement": {
- "integration_id": 204584239,
- "service_name": "jira",
- "id": "53377392",
- "idea_id": "58056975",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "value": null,
- "link": null,
- "weight": 1,
- "endorsed_by_portal_user": {
- "id": "646391926",
- "name": "John Long",
- "email": "john@long.com",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - "endorsed_by_idea_user": {
- "id": "1056507375",
- "name": "John Long",
- "email": "john@long.com",
- "created_at": "2019-01-01T00:00:00.000Z",
- "title": null
}, - "idea_organization": {
- "id": "138732915",
- "name": "Acme",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - "description": {
- "id": "6776881149485668658",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "integration_fields": [
- {
- "id": "975466318",
- "name": "key",
- "value": "JRA-123",
- "integration_id": 204584239,
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "custom_fields": [ ],
- "idea": {
- "id": "58056975",
- "reference_num": "PRJ1-I-1",
- "name": "Idea 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "workflow_status": {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "description": {
- "id": "103757394",
- "body": "Description of idea 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
},
}
}
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}object |
{- "integration": {
- "service_name": "zendesk",
- "enabled": true
}
}{- "integration": {
- "id": "6776881149498164474",
- "service_name": "zendesk",
- "template_id": null,
- "name": "Zendesk",
- "enabled": true,
- "callback_token": "5e0c51800087c7f9",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "last_error_at": null,
- "last_webhook_request_at": null,
- "owner": {
- "type": "Account",
- "id": "303742481",
}
}
}{- "integrations": [
- {
- "id": "79015308",
- "name": "Salesforce",
- "service_name": "salesforce",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "84619270",
- "name": "Salesforce V2",
- "service_name": "salesforce",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "163322775",
- "name": "Activity webhook",
- "service_name": "audit_webhook",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "241856910",
- "name": "Trello",
- "service_name": "trello",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "390243673",
- "name": "Zendesk",
- "service_name": "zendesk",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "578818383",
- "name": "Aha! (to Slack)",
- "service_name": "slack",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "828392279",
- "name": "Security webhook",
- "service_name": "security_webhook",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "922472543",
- "name": "Aha! (from Slack)",
- "service_name": "slack_commands",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "938531265",
- "name": "Aha! (from Slack)",
- "service_name": "slack_commands",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "pagination": {
- "total_records": 9,
- "total_pages": 1,
- "current_page": 1
}
}| product_id required | string ProductId identifier |
object |
{- "integration": {
- "service_name": "zendesk",
- "enabled": true
}
}{- "integration": {
- "id": "6776881149497259401",
- "service_name": "jira",
- "template_id": null,
- "name": "Jira",
- "enabled": true,
- "callback_token": "5e0c518000b1e19f",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "last_error_at": null,
- "last_webhook_request_at": null,
- "jql_filter": null,
- "owner": {
- "type": "Project",
- "id": "131414752",
}
}
}| product_id required | string ProductId identifier |
| {} | string |
{- "integrations": [
- {
- "id": "31907509",
- "name": "Rally",
- "service_name": "rally",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "36231792",
- "name": "GitHub Issues",
- "service_name": "github_issues",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "186281709",
- "name": "Jira",
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "202598724",
- "name": "Jira via Connect",
- "service_name": "jira_connect",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "204584239",
- "name": "Jira",
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "207648948",
- "name": "Jira",
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "222276392",
- "name": "Jira",
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "322044925",
- "name": "Jira",
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "342659513",
- "name": "Jira",
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "386928799",
- "name": "Azure DevOps Services",
- "service_name": "vsts",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "413207847",
- "name": "Jira",
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "453754848",
- "name": "Jira",
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "550349479",
- "name": "Jira via Connect",
- "service_name": "jira_connect",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "583937884",
- "name": "Jira template (visible to all)",
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "706216981",
- "name": "Rally",
- "service_name": "rally",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "791044582",
- "name": "Azure DevOps Services",
- "service_name": "vsts",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "804274302",
- "name": "Jira V2 Disabled",
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "846899991",
- "name": "Azure DevOps Services",
- "service_name": "tfs",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "868040294",
- "name": "Rally",
- "service_name": "rally",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "945767377",
- "name": "Trello",
- "service_name": "trello",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "952935179",
- "name": "Jira",
- "service_name": "jira",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "pagination": {
- "total_records": 21,
- "total_pages": 1,
- "current_page": 1
}
}| product_id required | string ProductId identifier |
| integration_id required | string IntegrationId identifier |
{- "integration": {
- "id": "204584239",
- "service_name": "jira",
- "template_id": null,
- "name": "Jira",
- "enabled": true,
- "callback_token": "22b7893e7fa1c4c60847090f78fbf0ec",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "last_error_at": null,
- "last_webhook_request_at": null,
- "jql_filter": null,
- "owner": {
- "type": "Project",
- "id": "131414752",
}
}
}| product_id required | string ProductId identifier |
| integration_id required | string IntegrationId identifier |
object |
{- "integration": {
- "enabled": true
}
}{- "integration": {
- "id": "204584239",
- "service_name": "jira",
- "template_id": null,
- "name": "Jira",
- "enabled": true,
- "callback_token": "22b7893e7fa1c4c60847090f78fbf0ec",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "last_error_at": null,
- "last_webhook_request_at": null,
- "jql_filter": null,
- "owner": {
- "type": "Project",
- "id": "131414752",
}
}
}DEPRECATED: provide :integration_id rather than :service_name to identify the integration.
| product_id required | string ProductId identifier |
| service_name required | string ServiceName identifier |
{- "integration": {
- "id": "204584239",
- "service_name": "jira",
- "template_id": null,
- "name": "Jira",
- "enabled": true,
- "callback_token": "22b7893e7fa1c4c60847090f78fbf0ec",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "last_error_at": null,
- "last_webhook_request_at": null,
- "jql_filter": null,
- "owner": {
- "type": "Project",
- "id": "131414752",
}
}
}| goal_id required | string GoalId identifier |
{- "key_results": [
- {
- "id": "631791848",
- "name": "KR 1",
- "reference_num": "DEMOENT-G-1-KR-1",
- "position": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "target_metric": "100%",
- "starting_metric": "5%",
- "current_metric": "20%",
- "description": {
- "id": "6776881149488268212",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "assigned_to_user": null,
- "workflow_status": {
- "id": "934242751",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "custom_fields": [ ]
}, - {
- "id": "1017196896",
- "name": "KR 2",
- "reference_num": "DEMOENT-G-1-KR-2",
- "position": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "target_metric": null,
- "starting_metric": null,
- "current_metric": null,
- "description": {
- "id": "6776881149485267751",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "assigned_to_user": null,
- "workflow_status": {
- "id": "934242751",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "custom_fields": [ ]
}
], - "pagination": {
- "total_records": 2,
- "total_pages": 1,
- "current_page": 1
}
}| goal_id required | string GoalId identifier |
object |
{- "key_result": {
- "name": "New name",
- "workflow_status": {
- "name": "On track"
}, - "description": "<p>This is the description</p>",
- "assigned_to_user": {
- "email": "no-reply@aha.io"
}
}
}{- "key_result": {
- "id": "6776881149483625245",
- "name": "New name",
- "reference_num": "DEMOENT-G-1-KR-1",
- "position": 3,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": 0,
- "target_metric": null,
- "starting_metric": null,
- "current_metric": null,
- "description": {
- "id": "6776881149493544532",
- "body": "<p>This is the description</p>",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "assigned_to_user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "default_assignee": false
}, - "workflow_status": {
- "id": "76947914",
- "name": "On Track",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}, - "custom_fields": [ ]
}
}| id required | string Id identifier |
{- "key_result": {
- "id": "631791848",
- "name": "KR 1",
- "reference_num": "DEMOENT-G-1-KR-1",
- "position": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "target_metric": "100%",
- "starting_metric": "5%",
- "current_metric": "20%",
- "description": {
- "id": "6776881149495921680",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "assigned_to_user": null,
- "workflow_status": {
- "id": "934242751",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "custom_fields": [ ]
}
}| id required | string Id identifier |
object |
{- "key_result": {
- "name": "Another name",
- "workflow_status": {
- "name": "On track"
}, - "watchers": [
- 689956296
], - "description": "<p>new description</p>",
- "current_metric": "30%"
}
}{- "key_result": {
- "id": "631791848",
- "name": "KR 1",
- "reference_num": "DEMOENT-G-1-KR-1",
- "position": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "target_metric": "100%",
- "starting_metric": "5%",
- "current_metric": "20%",
- "description": {
- "id": "",
- "body": "#<note:0x000000032e7e5c80></note:0x000000032e7e5c80>",
- "editor_version": 2,
- "created_at": null,
- "updated_at": null,
- "attachments": [ ]
}, - "assigned_to_user": null,
- "workflow_status": {
- "id": "934242751",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - "custom_fields": [
- {
- "id": "6776881149496972898",
- "key": "stretch_goal",
- "name": "Stretch goal",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "my metric",
- "type": "string"
}
]
}
}| id required | string Id identifier |
{- "roll_up_release": {
- "id": "292454904",
- "reference_num": "PRJ1-MR-1",
- "name": "Roll-up Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "created_at": "2019-01-01T00:00:00.000Z",
}
}| id required | string Id identifier |
object |
{- "roll_up_release": {
- "name": "Different release"
}
}{- "roll_up_release": {
- "id": "292454904",
- "reference_num": "PRJ1-MR-1",
- "name": "Roll-up Release 1",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "created_at": "2019-01-01T00:00:00.000Z",
}
}| product_id required | string ProductId identifier |
{- "roll_up_releases": [
- {
- "id": "6776881149485843899",
- "reference_num": "PL1-R-3",
- "name": "My release 002",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - {
- "id": "6776881149489814133",
- "reference_num": "PL1-R-2",
- "name": "My release 001",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "created_at": "2019-01-01T00:00:00.000Z",
}
], - "pagination": {
- "total_records": 2,
- "total_pages": 1,
- "current_page": 1
}
}| product_id required | string ProductId identifier |
object |
{- "roll_up_release": {
- "name": "Roll up release",
- "theme": "A roll up release",
- "release_date": "2019-01-01"
}
}{- "roll_up_release": {
- "id": "6776881149490916934",
- "reference_num": "PL1-R-2",
- "name": "Roll up release",
- "start_date": "2019-01-01",
- "release_date": "2019-01-01",
- "created_at": "2019-01-01T00:00:00.000Z",
}
}Retrieves current user information including account memberships and basic profile data
| include | string Example: include=#<RSpec::Matchers::BuiltIn::Include:0x0000000336976830> |
{- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "timezone": "America/Los_Angeles",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "accessed_at": "2019-01-01T00:00:00.000Z",
- "product_roles": [
- {
- "role": 20,
- "role_description": "Owner",
- "product_id": "131414752",
- "product_name": "Project 1"
}, - {
- "role": 20,
- "role_description": "Owner",
- "product_id": "517761884",
- "product_name": "Project 2"
}, - {
- "role": 20,
- "role_description": "Owner",
- "product_id": "610602692",
- "product_name": "Product Line 1"
}
], - "preferences": {
- "current_product_id": 12123897
}, - "accounts": [
- {
- "account": {
- "name": "Account 1",
- "domain": "company",
- "logo": null,
- "alt_logo": null,
- "enabled": true
}
}
]
}
}The Me API provides access to current user information, assigned records, and pending tasks. This endpoint serves as the primary interface for user-specific data and personal workspace functionality.
Core Functionality:
User Context:
Response Structure:
Authentication: Standard API authentication (OAuth, session cookies, HTTP Basic until 2025). All operations require valid authentication and return user-specific data.
| record_type | string Example: record_type=InvalidType |
{- "assigned": [ ]
}The Me API provides access to current user information, assigned records, and pending tasks. This endpoint serves as the primary interface for user-specific data and personal workspace functionality.
Core Functionality:
User Context:
Response Structure:
Authentication: Standard API authentication (OAuth, session cookies, HTTP Basic until 2025). All operations require valid authentication and return user-specific data.
{- "tasks": [
- {
- "id": "6776881149494751081",
- "name": "Review first widget",
- "due_date": null,
- "status": "pending",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}"Notes" in the web interface are referenced as "pages" from API endpoints.
| product_id required | string ProductId identifier |
object |
{- "page": {
- "name": "Note 3",
- "description_attributes": {
- "body": "<p>An awesome new note</p>"
}
}
}{- "page": {
- "id": "6776881149490967959",
- "name": null,
- "title": "PRJ1-N-11 Untitled",
- "document_title": "Untitled | Aha!",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "reference_num": "PRJ1-N-11",
- "emoji_value": null,
- "document_type": 80,
- "document_type_name": "internal_link",
- "editor_width": null,
- "type_name": "internal link",
- "position": null,
- "created_at": "2019-01-01T00:00:00.000Z",
- "location": null,
- "edit_locked": false,
- "linked_record_id": 1007868956,
- "linked_record_type": "Feature",
- "product_id": "131414752",
- "description": {
- "id": "6776881149488431496",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "parent_id": null,
- "tags": [ ],
- "full_tags": [ ],
- "comments_count": 0,
- "custom_fields": [ ]
}
}"Notes" in the web interface are referenced as "pages" from API endpoints.
| product_id required | string ProductId identifier |
{- "pages": [
- {
- "id": "123524136",
- "name": "Title of the meeting note",
- "title": "PRJ1-N-9 Title of the meeting note",
- "reference_num": "PRJ1-N-9",
- "created_at": "2019-01-01T00:00:00.000Z",
- "parent_id": null
}, - {
- "id": "199011658",
- "name": "Title of the child note",
- "title": "PRJ1-N-4 Title of the child note",
- "reference_num": "PRJ1-N-4",
- "created_at": "2019-01-01T00:00:00.000Z",
- "parent_id": 702939369
}, - {
- "id": "249102634",
- "name": null,
- "title": "PRJ1-N-7 Untitled",
- "reference_num": "PRJ1-N-7",
- "created_at": "2019-01-01T00:00:00.000Z",
- "parent_id": null
}, - {
- "id": "256116692",
- "name": "Shared page title",
- "title": "PRJ1-N-10 Shared page title",
- "reference_num": "PRJ1-N-10",
- "created_at": "2019-01-01T00:00:00.000Z",
- "parent_id": null
}, - {
- "id": "280859787",
- "name": "External link",
- "title": "PRJ1-N-6 External link",
- "reference_num": "PRJ1-N-6",
- "created_at": "2019-01-01T00:00:00.000Z",
- "parent_id": null
}, - {
- "id": "549832152",
- "name": "Title of the second whiteboard",
- "title": "PRJ1-N-6 Title of the second whiteboard",
- "reference_num": "PRJ1-N-6",
- "created_at": "2019-01-01T00:00:00.000Z",
- "parent_id": null
}, - {
- "id": "666543134",
- "name": "Title of the second note",
- "title": "PRJ1-N-2 Title of the second note",
- "reference_num": "PRJ1-N-2",
- "created_at": "2019-01-01T00:00:00.000Z",
- "parent_id": null
}, - {
- "id": "702939369",
- "name": "Title of the parent note",
- "title": "PRJ1-N-3 Title of the parent note",
- "reference_num": "PRJ1-N-3",
- "created_at": "2019-01-01T00:00:00.000Z",
- "parent_id": null
}, - {
- "id": "969708644",
- "name": "Title of the first whiteboard",
- "title": "PRJ1-N-5 Title of the first whiteboard",
- "reference_num": "PRJ1-N-5",
- "created_at": "2019-01-01T00:00:00.000Z",
- "parent_id": null
}, - {
- "id": "970863041",
- "name": null,
- "title": "PRJ1-N-8 Untitled",
- "reference_num": "PRJ1-N-8",
- "created_at": "2019-01-01T00:00:00.000Z",
- "parent_id": null
}, - {
- "id": "1051981226",
- "name": "Title of the first note",
- "title": "PRJ1-N-1 Title of the first note",
- "reference_num": "PRJ1-N-1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "parent_id": null
}
], - "pagination": {
- "total_records": 11,
- "total_pages": 1,
- "current_page": 1
}
}"Notes" in the web interface are referenced as "pages" from API endpoints.
| id required | string Id identifier |
{- "page": {
- "id": "1051981226",
- "name": "Title of the first note",
- "title": "PRJ1-N-1 Title of the first note",
- "document_title": "Title of the first note | Aha!",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "reference_num": "PRJ1-N-1",
- "emoji_value": null,
- "document_type": 10,
- "document_type_name": "note",
- "editor_width": "FULL",
- "type_name": "note",
- "position": 100000,
- "created_at": "2019-01-01T00:00:00.000Z",
- "location": null,
- "edit_locked": false,
- "product_id": "131414752",
- "description": {
- "id": "669149001",
- "body": "Description of note 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "parent_id": null,
- "tags": [
- "Infrastructure",
- "Sales"
], - "full_tags": [
- {
- "id": 775582684,
- "name": "Infrastructure",
- "color": "#7552e0"
}, - {
- "id": 926098016,
- "name": "Sales",
- "color": "#e0da52"
}
], - "comments_count": 0,
- "custom_fields": [
- {
- "id": 416524155,
- "key": "review_date",
- "name": "Review date",
- "updatedAt": "2019-01-01T00:00:00Z",
- "value": "2019-01-01",
- "type": "date"
}
]
}
}"Notes" in the web interface are referenced as "pages" from API endpoints.
| id required | string Id identifier |
object |
{- "page": {
- "name": "New name for the note",
- "description_attributes": {
- "body": "<p>An awesome new note</p>"
}
}
}{- "page": {
- "id": "280859787",
- "name": "Build products customers love",
- "title": "PRJ1-N-6 Build products customers love",
- "document_title": "Build products customers love | Aha!",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "reference_num": "PRJ1-N-6",
- "emoji_value": null,
- "document_type": 70,
- "document_type_name": "external_link",
- "editor_width": null,
- "type_name": "external link",
- "position": 500000,
- "created_at": "2019-01-01T00:00:00.000Z",
- "location": null,
- "edit_locked": false,
- "product_id": "131414752",
- "description": {
- "id": "",
- "body": "#<note:0x000000032dc8fa20></note:0x000000032dc8fa20>",
- "editor_version": 2,
- "created_at": null,
- "updated_at": null,
- "attachments": [ ]
}, - "parent_id": null,
- "tags": [ ],
- "full_tags": [ ],
- "comments_count": 0,
- "custom_fields": [ ]
}
}{- "paid_seat_groups": [
- {
- "id": "354640896",
- "name": "Group 3",
- "administrators": [ ],
- "capacity": 2,
- "allocated_seats": 0,
- "description": {
- "id": "6776881149498351732",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "572805993",
- "name": "Group 2",
- "administrators": [
- {
- "id": "82352673",
- "name": "Bob Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
], - "capacity": 20,
- "allocated_seats": 2,
- "description": {
- "id": "6776881149487500319",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "992805589",
- "name": "Group 1",
- "administrators": [
- {
- "id": "373433676",
- "name": "Jim Jingles",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
], - "capacity": 21,
- "allocated_seats": 1,
- "description": {
- "id": "6776881149492142258",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
]
}| id required | string Id identifier |
| user_id | integer |
| remove | null |
{- "name": "Group 2",
- "capacity": 3
}{- "id": "572805993",
- "name": "Group 2",
- "administrators": [
- {
- "id": "82352673",
- "name": "Bob Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
], - "capacity": 3,
- "allocated_seats": 2,
- "description": {
- "id": "6776881149486533886",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}| id required | string Id identifier |
| user_id | integer |
| remove | null |
{- "user_id": 1049303076,
- "remove": null
}{- "id": "572805993",
- "name": "Group 2",
- "administrators": [
- {
- "id": "82352673",
- "name": "Bob Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
], - "capacity": 20,
- "allocated_seats": 2,
- "description": {
- "id": "6776881149483785369",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}, - "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}| product_id required | string ProductId identifier |
object |
{- "persona": {
- "name": "John"
}
}{- "persona": {
- "id": "6776881149484114529",
- "name": "John",
- "color": 13421772,
- "occupation": null,
- "quote": null,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "custom_fields": [ ],
- "comments_count": 0
}
}| product_id required | string ProductId identifier |
{- "personas": [
- {
- "id": "227222789",
- "name": "Jim the cyclist",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "344093881",
- "name": "Jane the athlete",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "982259096",
- "name": "Tim the repairer",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "pagination": {
- "total_records": 3,
- "total_pages": 1,
- "current_page": 1
}
}| id required | string Id identifier |
{- "persona": {
- "id": "344093881",
- "name": "Jane the athlete",
- "color": 13421772,
- "occupation": null,
- "quote": null,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "custom_fields": [ ],
- "comments_count": 0
}
}| product_id required | string ProductId identifier |
| id required | string Id identifier |
object |
{- "persona": {
- "name": "Julie"
}
}{- "persona": {
- "id": "344093881",
- "name": "Julie",
- "color": 13421772,
- "occupation": null,
- "quote": null,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "custom_fields": [ ],
- "comments_count": 0
}
}| idea_portal_id required | string IdeaPortalId identifier |
| portal_user_id required | string PortalUserId identifier |
{- "portal_user_subscriptions": {
- "preferences": [
- {
- "type": "project",
- "id": 131414752
}, - {
- "type": "category",
- "id": 251347229
}
]
}
}| idea_portal_id required | string IdeaPortalId identifier |
| portal_user_id required | string PortalUserId identifier |
object |
{- "portal_user_subscriptions": {
- "preferences": [
- {
- "type": "project",
- "id": 131414752
}, - {
- "type": "category",
- "id": 251347229
}
]
}
}{- "portal_user_subscriptions": {
- "preferences": [
- {
- "type": "category",
- "id": 251347229
}, - {
- "type": "category",
- "id": 552935478
}
]
}
}| idea_portal_id required | string IdeaPortalId identifier |
object |
{- "portal_user": {
- "email": "sam.doe@example.com",
- "first_name": "sam",
- "last_name": "doe"
}
}{- "portal_user": {
- "id": "6776881149497060074",
- "email": "sam.doe@example.com",
- "first_name": "sam",
- "last_name": "doe",
- "enabled": true,
- "verified": false,
- "employee": true,
- "max_endorsements_override": null,
- "idea_user_id": "6776881149491801214",
- "created_at": "2019-01-01T00:00:00.000Z",
- "unsubscribed": false,
- "unsubscribed_from_weekly_emails": null
}
}| idea_portal_id required | string IdeaPortalId identifier |
{- "portal_users": [
- {
- "id": "144817500",
- "email": "timmy@smith.com",
- "first_name": "Timmy",
- "last_name": "Smith",
- "enabled": true,
- "verified": true,
- "employee": true,
- "max_endorsements_override": null,
- "idea_user_id": "446386906",
- "created_at": "2019-01-01T00:00:00.000Z",
- "unsubscribed": false,
- "unsubscribed_from_weekly_emails": null
}, - {
- "id": "477635308",
- "email": "no-reply@aha.io",
- "first_name": "Bill",
- "last_name": "Billings",
- "enabled": true,
- "verified": false,
- "employee": false,
- "max_endorsements_override": null,
- "idea_user_id": "870840916",
- "created_at": "2019-01-01T00:00:00.000Z",
- "unsubscribed": false,
- "unsubscribed_from_weekly_emails": null
}, - {
- "id": "646391926",
- "email": "john@long.com",
- "first_name": "John",
- "last_name": "Long",
- "enabled": true,
- "verified": false,
- "employee": false,
- "max_endorsements_override": null,
- "idea_user_id": "1056507375",
- "created_at": "2019-01-01T00:00:00.000Z",
- "unsubscribed": false,
- "unsubscribed_from_weekly_emails": null
}, - {
- "id": "1066301902",
- "email": "tim@smith.com",
- "first_name": "Tim",
- "last_name": "Smith",
- "enabled": true,
- "verified": false,
- "employee": false,
- "max_endorsements_override": null,
- "idea_user_id": "670061655",
- "created_at": "2019-01-01T00:00:00.000Z",
- "unsubscribed": false,
- "unsubscribed_from_weekly_emails": null
}
], - "pagination": {
- "total_records": 4,
- "total_pages": 1,
- "current_page": 1
}
}| idea_portal_id required | string IdeaPortalId identifier |
| id required | string Id identifier |
{- "portal_user": {
- "id": "646391926",
- "email": "john@long.com",
- "first_name": "John",
- "last_name": "Long",
- "enabled": true,
- "verified": false,
- "employee": false,
- "max_endorsements_override": null,
- "idea_user_id": "1056507375",
- "created_at": "2019-01-01T00:00:00.000Z",
- "unsubscribed": false,
- "unsubscribed_from_weekly_emails": null
}
}| idea_portal_id required | string IdeaPortalId identifier |
| id required | string Id identifier |
object |
{- "portal_user": {
- "first_name": "Sarah"
}
}{- "portal_user": {
- "id": "646391926",
- "email": "john@long.com",
- "first_name": "John",
- "last_name": "Long",
- "enabled": true,
- "verified": false,
- "employee": false,
- "max_endorsements_override": null,
- "idea_user_id": "1056507375",
- "created_at": "2019-01-01T00:00:00.000Z",
- "unsubscribed": true,
- "unsubscribed_from_weekly_emails": true
}
}| id required | string Id identifier |
| parent_and_child_links | string Example: parent_and_child_links=true |
{- "record_links": [
- {
- "id": 170959948,
- "link_type": "Depends on",
- "link_type_id": 20,
- "created_at": "2019-01-01T00:00:00.000Z",
- "parent_record_type": "feature",
- "parent_record_id": 1007868956,
- "child_record_type": "feature",
- "child_record_id": 622562724,
- "parent": true,
- "parent_record": {
- "record_type": "feature",
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "child_record": {
- "record_type": "feature",
- "id": "622562724",
- "reference_num": "PRJ1-2",
- "name": "Another Feature",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
}, - {
- "id": "6776881149496786945",
- "link_type": "Depends on",
- "link_type_id": 20,
- "created_at": "2019-01-01T00:00:00.000Z",
- "parent_record_type": "master_feature",
- "parent_record_id": 999605892,
- "child_record_type": "feature",
- "child_record_id": 1007868956,
- "parent": false,
- "parent_record": {
- "record_type": "master_feature",
- "id": "999605892",
- "reference_num": "PRJ1-E-1",
- "name": "Epic 1",
- "created_at": "2019-01-01T00:00:00.000Z",
}, - "child_record": {
- "record_type": "feature",
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
}
]
}| id required | string Id identifier |
{- "record_link": {
- "id": 170959948,
- "link_type": "Depends on",
- "link_type_id": 20,
- "created_at": "2019-01-01T00:00:00.000Z",
- "parent_record_type": "feature",
- "parent_record_id": 1007868956,
- "child_record_type": "feature",
- "child_record_id": 622562724,
- "parent": true,
- "parent_record": {
- "record_type": "feature",
- "id": "1007868956",
- "reference_num": "PRJ1-1",
- "name": "Feature 1",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}, - "child_record": {
- "record_type": "feature",
- "id": "622562724",
- "reference_num": "PRJ1-2",
- "name": "Another Feature",
- "created_at": "2019-01-01T00:00:00.000Z",
- "product_id": "131414752"
}
}
}| record_type required | string RecordType identifier |
| id required | string Id identifier |
object |
{- "record_link": {
- "record_type": "feature",
- "record_id": 303873333,
- "link_type": 10
}
}| id required | string Id identifier |
{- "release_phases": [
- {
- "id": "20526005",
- "name": "Alpha",
- "start_on": "2019-01-01",
- "end_on": "2019-01-01",
- "type": "phase",
- "release_id": 278327321,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "description": {
- "id": "243384959",
- "body": "Description of release phase 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}, - {
- "id": "405824017",
- "name": "Beta",
- "start_on": "2019-01-01",
- "end_on": "2019-01-01",
- "type": "milestone",
- "release_id": 278327321,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "description": {
- "id": "965145324",
- "body": "Description of release phase 2",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}, - {
- "id": "792154778",
- "name": "Beta [2]",
- "start_on": "2019-01-01",
- "end_on": "2019-01-01",
- "type": "milestone",
- "release_id": 278327321,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "description": {
- "id": "6776881149494153311",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}, - {
- "id": "827574075",
- "name": "Gamma",
- "start_on": "2019-01-01",
- "end_on": "2019-01-01",
- "type": "milestone",
- "release_id": 278327321,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "description": {
- "id": "6776881149486508174",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}
], - "pagination": {
- "total_records": 4,
- "total_pages": 1,
- "current_page": 1
}
}| id required | string Id identifier |
{- "release_phase": {
- "id": "20526005",
- "name": "Alpha",
- "start_on": "2019-01-01",
- "end_on": "2019-01-01",
- "type": "phase",
- "release_id": 278327321,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "description": {
- "id": "243384959",
- "body": "Description of release phase 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}
}| id required | string Id identifier |
object |
{- "release_phase": {
- "name": "Another name",
- "description": "<p>new description</p>",
- "phase_type": "milestone"
}
}{- "release_phase": {
- "id": "20526005",
- "name": "Alpha",
- "start_on": "2019-01-01",
- "end_on": "2019-01-01",
- "type": "phase",
- "release_id": 278327321,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": 25,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "description": {
- "id": "243384959",
- "body": "Description of release phase 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}
}{- "release_phases": [
- {
- "id": "20526005",
- "name": "Alpha",
- "start_on": "2019-01-01",
- "end_on": "2019-01-01",
- "type": "phase",
- "release_id": 278327321,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "description": {
- "id": "243384959",
- "body": "Description of release phase 1",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}, - {
- "id": "405824017",
- "name": "Beta",
- "start_on": "2019-01-01",
- "end_on": "2019-01-01",
- "type": "milestone",
- "release_id": 278327321,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "description": {
- "id": "965145324",
- "body": "Description of release phase 2",
- "editor_version": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}, - {
- "id": "792154778",
- "name": "Beta [2]",
- "start_on": "2019-01-01",
- "end_on": "2019-01-01",
- "type": "milestone",
- "release_id": 278327321,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "description": {
- "id": "6776881149487000230",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}, - {
- "id": "827574075",
- "name": "Gamma",
- "start_on": "2019-01-01",
- "end_on": "2019-01-01",
- "type": "milestone",
- "release_id": 278327321,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": null,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "description": {
- "id": "6776881149494371573",
- "body": "",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}
], - "pagination": {
- "total_records": 4,
- "total_pages": 1,
- "current_page": 1
}
}object |
{- "release_phase": {
- "name": "New release phase",
- "phase_type": "phase",
- "release_id": 278327321,
- "start_on": "2019-01-01",
- "end_on": "2019-01-01",
- "description": "<p>This is the description</p>"
}
}{- "release_phase": {
- "id": "6776881149493480488",
- "name": "New release milestone",
- "start_on": "2019-01-01",
- "end_on": "2019-01-01",
- "type": "milestone",
- "release_id": 278327321,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "progress": 0,
- "progress_source": "progress_manual",
- "duration_source": "duration_manual",
- "description": {
- "id": "6776881149492778822",
- "body": "<p>This is the description</p>",
- "editor_version": 2,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "attachments": [ ]
}
}
}{- "schedulable_change": {
- "effective_start_date": "2019-01-01",
- "schedule_id": 54870801,
- "team_member_count": 4,
- "hourly_rate": 155
}, - "team_id": 949295028
}{- "schedulable_change": {
- "id": "6776881149488722242",
- "effective_start_date": "2019-01-01",
- "team_members_count": 5,
- "hourly_rate": "155.0",
- "color": 6710886,
- "schedule": {
- "id": "54870801",
- "name": "Another schedule",
- "hours_per_day": "10.0",
- "story_points_per_day": "5.0",
- "velocity": "10.0"
}, - "team_memberships": [
- {
- "id": "202266373",
- "name": "John Johnson",
- "new_user": false,
- "deleted": null,
- "schedule": {
- "id": "441193141",
- "name": "Default schedule",
- "hours_per_day": "8.2",
- "story_points_per_day": "1.0",
- "velocity": "10.5",
- "monday": true,
- "tuesday": true,
- "wednesday": true,
- "thursday": true,
- "friday": true,
- "saturday": false,
- "sunday": false
}
}, - {
- "id": "646482528",
- "name": "Mary Humpty",
- "new_user": false,
- "deleted": null,
- "schedule": {
- "id": "441193141",
- "name": "Default schedule",
- "hours_per_day": "8.2",
- "story_points_per_day": "1.0",
- "velocity": "10.5",
- "monday": true,
- "tuesday": true,
- "wednesday": true,
- "thursday": true,
- "friday": true,
- "saturday": false,
- "sunday": false
}
}
]
}
}| id required | string Id identifier |
{- "team_id": 949295028,
- "schedulable_change": {
- "effective_start_date": "2019-01-01",
- "schedule_id": 54870801,
- "team_members_count": 4,
- "hourly_rate": 155,
- "color": "#ff0000"
}
}{- "schedulable_change": {
- "id": "711001786",
- "effective_start_date": "2019-01-01",
- "team_members_count": 4,
- "hourly_rate": "155.0",
- "color": 16711680,
- "schedule": {
- "id": "54870801",
- "name": "Another schedule",
- "hours_per_day": "10.0",
- "story_points_per_day": "5.0",
- "velocity": "10.0"
}, - "team_memberships": [
- {
- "id": "202266373",
- "name": "John Johnson",
- "new_user": false,
- "deleted": null,
- "schedule": {
- "id": "441193141",
- "name": "Default schedule",
- "hours_per_day": "8.2",
- "story_points_per_day": "1.0",
- "velocity": "10.5",
- "monday": true,
- "tuesday": true,
- "wednesday": true,
- "thursday": true,
- "friday": true,
- "saturday": false,
- "sunday": false
}
}, - {
- "id": "646482528",
- "name": "Mary Humpty",
- "new_user": false,
- "deleted": null,
- "schedule": {
- "id": "441193141",
- "name": "Default schedule",
- "hours_per_day": "8.2",
- "story_points_per_day": "1.0",
- "velocity": "10.5",
- "monday": true,
- "tuesday": true,
- "wednesday": true,
- "thursday": true,
- "friday": true,
- "saturday": false,
- "sunday": false
}
}
]
}
}Adds, updates, or removes users via a scheduled change using the Team Membership relation. The schedulable change must be in the future
| schedulable_change_id required | string SchedulableChangeId identifier |
{- "team_membership_id": 202266373,
- "team_membership": {
- "schedule": {
- "hours_per_day": 5,
- "story_points_per_day": 4,
- "monday": false,
- "tuesday": true,
- "wednesday": true,
- "thursday": true,
- "friday": false,
- "saturday": false,
- "sunday": false
}
}
}{- "schedulable_change": {
- "id": "711001786",
- "effective_start_date": "2019-01-01",
- "team_members_count": 5,
- "hourly_rate": "100.0",
- "color": 6710886,
- "schedule": {
- "id": "441193141",
- "name": "Default schedule",
- "hours_per_day": "8.2",
- "story_points_per_day": "1.0",
- "velocity": "10.5"
}, - "team_memberships": [
- {
- "id": "202266373",
- "name": "John Johnson",
- "new_user": false,
- "deleted": null,
- "schedule": {
- "id": "441193141",
- "name": "Default schedule",
- "hours_per_day": "8.2",
- "story_points_per_day": "1.0",
- "velocity": "10.5",
- "monday": true,
- "tuesday": true,
- "wednesday": true,
- "thursday": true,
- "friday": true,
- "saturday": false,
- "sunday": false
}
}, - {
- "id": "646482528",
- "name": "Mary Humpty",
- "new_user": false,
- "deleted": null,
- "schedule": {
- "id": "441193141",
- "name": "Default schedule",
- "hours_per_day": "8.2",
- "story_points_per_day": "1.0",
- "velocity": "10.5",
- "monday": true,
- "tuesday": true,
- "wednesday": true,
- "thursday": true,
- "friday": true,
- "saturday": false,
- "sunday": false
}
}
]
}
}Retrieves schedules for capacity planning, showing working hours, velocity, and weekly patterns
| fields | string Example: fields=name,hours_per_day,story_points_per_day,velocity,monday,tuesday,wednesday,thursday,friday,saturday,sunday |
{- "schedules": [
- {
- "id": "54870801",
- "name": "Another schedule",
- "hours_per_day": "10.0",
- "story_points_per_day": "5.0",
- "velocity": "10.0"
}, - {
- "id": "441193141",
- "name": "Default schedule",
- "hours_per_day": "8.2",
- "story_points_per_day": "1.0",
- "velocity": "10.5"
}, - {
- "id": "876770204",
- "name": "Child schedule",
- "hours_per_day": "19.0",
- "story_points_per_day": "28.0",
- "velocity": null
}
], - "pagination": {
- "total_records": 3,
- "total_pages": 1,
- "current_page": 1
}
}Custom layouts in Aha! Roadmaps help you define the information that you want your teammates to see at two important times: when they create a record and when they view a record's details. You must be a configuration administrator to view custom layouts on your account through the API.
For more information about custom layouts, consult our support documentation: https://www.aha.io/support/roadmaps/strategic-roadmaps/customizations/custom-layouts
| page | string Example: page=1 |
| per_page | string Example: per_page=50 |
{- "screen_definitions": [
- {
- "id": 19837977,
- "screenable_type": "Feature",
- "name": "Screen Definition 6",
- "custom_field_definitions": [
- {
- "id": 839883647,
- "key": "custom_scorecard_definition",
- "position": 3,
- "name": "Some custom scorecard definition",
- "type": "CustomFieldDefinitions::ScorecardField",
- "api_type": "scorecard",
- "required": false
}, - {
- "id": 182007396,
- "key": "custom_table",
- "position": 7,
- "name": "Custom Table",
- "type": "CustomFieldDefinitions::LinkMasterDetail",
- "api_type": "array",
- "required": false
}, - {
- "id": 20549131,
- "key": "customer",
- "position": 2,
- "name": "Customer",
- "type": "CustomFieldDefinitions::SelectEditable",
- "api_type": "string",
- "configuration_display": null,
- "required": false,
- "options": [
- {
- "id": 106870231,
- "label": "cust1"
}, - {
- "id": 525853807,
- "label": "cust2"
}, - {
- "id": 676386040,
- "label": "cust3"
}
]
}, - {
- "id": 141558949,
- "key": "customers_table",
- "position": 1,
- "name": "Customers for custom table",
- "type": "CustomFieldDefinitions::LinkMany",
- "api_type": "array",
- "required": false
}, - {
- "id": 384804762,
- "key": "product_managers",
- "position": 7,
- "name": "Product Managers",
- "type": "CustomFieldDefinitions::Records::UsersField",
- "api_type": "array",
- "required": false
}
]
}, - {
- "id": 26499634,
- "screenable_type": "Page",
- "name": "Screen Definition 7",
- "custom_field_definitions": [
- {
- "id": 529933329,
- "key": "review_date",
- "position": 1,
- "name": "Review date",
- "type": "CustomFieldDefinitions::DateField",
- "api_type": "date",
- "required": false
}
]
}, - {
- "id": 105082880,
- "screenable_type": "Project",
- "name": "Screen Definition 2",
- "custom_field_definitions": [ ]
}, - {
- "id": 117022249,
- "screenable_type": "StrategicImperative",
- "name": "Screen Definition 13",
- "custom_field_definitions": [ ]
}, - {
- "id": 202819082,
- "screenable_type": "Feature",
- "name": "Screen Definition Feature 2",
- "custom_field_definitions": [ ]
}, - {
- "id": 405267877,
- "screenable_type": "Ideas::Idea",
- "name": "Screen Definition 5",
- "custom_field_definitions": [
- {
- "id": 711072024,
- "key": "customers_table",
- "position": 1,
- "name": "Customers for custom table",
- "type": "CustomFieldDefinitions::LinkMany",
- "api_type": "array",
- "required": false
}
]
}, - {
- "id": 412945294,
- "screenable_type": null,
- "name": "Screen Definition 14 - Idea with attachment custom field",
- "custom_field_definitions": [ ]
}, - {
- "id": 475481209,
- "screenable_type": "Task",
- "name": "Approvals custom layout",
- "custom_field_definitions": [ ]
}, - {
- "id": 524951996,
- "screenable_type": "Project",
- "name": "Screen Definition 1",
- "custom_field_definitions": [
- {
- "id": 807801664,
- "key": "name",
- "position": 1,
- "name": "Name",
- "type": "CustomFieldDefinitions::TextField",
- "api_type": "string",
- "required": false
}, - {
- "id": 221120583,
- "key": "website",
- "position": 2,
- "name": "Website",
- "type": "CustomFieldDefinitions::UrlField",
- "api_type": "url",
- "required": false
}
]
}, - {
- "id": 647403809,
- "screenable_type": "Release",
- "name": "Screen Definition 8",
- "custom_field_definitions": [
- {
- "id": 3228193,
- "key": "release_custom_date",
- "position": 1,
- "name": "Release custom date",
- "type": "CustomFieldDefinitions::DateField",
- "api_type": "date",
- "required": false
}
]
}, - {
- "id": 687341318,
- "screenable_type": "Requirement",
- "name": "Screen Definition 11",
- "custom_field_definitions": [
- {
- "id": 85990596,
- "key": "priority",
- "position": 3,
- "name": "Priority",
- "type": "CustomFieldDefinitions::SelectConstant",
- "api_type": "string",
- "configuration_display": null,
- "required": false,
- "options": [
- {
- "id": 135354995,
- "label": "P4"
}, - {
- "id": 376819668,
- "label": "P3"
}, - {
- "id": 561184585,
- "label": "P2"
}, - {
- "id": 947629821,
- "label": "P1"
}, - {
- "id": 1058433764,
- "label": "P5"
}
]
}, - {
- "id": 867049992,
- "key": "requested_by",
- "position": 2,
- "name": "Requested By",
- "type": "CustomFieldDefinitions::TextField",
- "api_type": "string",
- "required": false
}
]
}, - {
- "id": 790680888,
- "screenable_type": "Ideas::IdeaPortal",
- "name": "Screen Definition 4",
- "custom_field_definitions": [
- {
- "id": 807801664,
- "key": "name",
- "position": 1,
- "name": "Name",
- "type": "CustomFieldDefinitions::TextField",
- "api_type": "string",
- "required": false
}
]
}, - {
- "id": 798636831,
- "screenable_type": "ReleasePhase",
- "name": "Screen Definition 15 - Release phase custom field",
- "custom_field_definitions": [
- {
- "id": 43847680,
- "key": "text_field",
- "position": 1,
- "name": "TextField1",
- "type": "CustomFieldDefinitions::TextField",
- "api_type": "string",
- "required": false
}
]
}, - {
- "id": 826556567,
- "screenable_type": "Competitor",
- "name": "Screen Definition 3",
- "custom_field_definitions": [ ]
}, - {
- "id": 838774462,
- "screenable_type": "Initiative",
- "name": "Screen Definition 12",
- "custom_field_definitions": [
- {
- "id": 250383571,
- "key": "customers",
- "position": 1,
- "name": "Customers",
- "type": "CustomFieldDefinitions::LinkMany",
- "api_type": "array",
- "required": false
}, - {
- "id": 688549069,
- "key": "initiative_custom_date",
- "position": 3,
- "name": "Initiative custom date",
- "type": "CustomFieldDefinitions::DateField",
- "api_type": "date",
- "required": false
}
]
}, - {
- "id": 908690576,
- "screenable_type": "Epic",
- "name": "Screen Definition 7",
- "custom_field_definitions": [
- {
- "id": 919440521,
- "key": "epic_custom_date",
- "position": 1,
- "name": "Epic custom date",
- "type": "CustomFieldDefinitions::DateField",
- "api_type": "date",
- "required": false
}
]
}, - {
- "id": 915630759,
- "screenable_type": "KeyResult",
- "name": "Screen Definition 16 - Key result custom field",
- "custom_field_definitions": [
- {
- "id": 909163750,
- "key": "stretch_goal",
- "position": 1,
- "name": "Stretch goal",
- "type": "CustomFieldDefinitions::TextField",
- "api_type": "string",
- "required": false
}
]
}
]
}Custom layouts in Aha! Roadmaps help you define the information that you want your teammates to see at two important times: when they create a record and when they view a record's details. You must be a configuration administrator to view custom layouts on your account through the API.
For more information about custom layouts, consult our support documentation: https://www.aha.io/support/roadmaps/strategic-roadmaps/customizations/custom-layouts
| id required | string Id identifier |
{- "id": 19837977,
- "screenable_type": "Feature",
- "name": "Screen Definition 6",
- "custom_field_definitions": [
- {
- "id": 839883647,
- "key": "custom_scorecard_definition",
- "position": 3,
- "name": "Some custom scorecard definition",
- "type": "CustomFieldDefinitions::ScorecardField",
- "api_type": "scorecard",
- "required": false
}, - {
- "id": 182007396,
- "key": "custom_table",
- "position": 7,
- "name": "Custom Table",
- "type": "CustomFieldDefinitions::LinkMasterDetail",
- "api_type": "array",
- "required": false
}, - {
- "id": 20549131,
- "key": "customer",
- "position": 2,
- "name": "Customer",
- "type": "CustomFieldDefinitions::SelectEditable",
- "api_type": "string",
- "configuration_display": null,
- "required": false,
- "options": [
- {
- "id": 106870231,
- "label": "cust1"
}, - {
- "id": 525853807,
- "label": "cust2"
}, - {
- "id": 676386040,
- "label": "cust3"
}
]
}, - {
- "id": 141558949,
- "key": "customers_table",
- "position": 1,
- "name": "Customers for custom table",
- "type": "CustomFieldDefinitions::LinkMany",
- "api_type": "array",
- "required": false
}, - {
- "id": 384804762,
- "key": "product_managers",
- "position": 7,
- "name": "Product Managers",
- "type": "CustomFieldDefinitions::Records::UsersField",
- "api_type": "array",
- "required": false
}
]
}{- "strategy_models": [
- {
- "id": "111251416",
- "name": "Aha! business model canvas",
- "kind": "Business",
- "components": [
- {
- "id": 62803905,
- "name": "Growth opportunity",
- "description": ""
}
], - "project": {
- "id": "517761884",
- "reference_prefix": "PRJ2",
- "name": "Project 2",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - {
- "id": "356242517",
- "name": "Aha! business model canvas",
- "kind": "Business",
- "components": [
- {
- "id": 310750587,
- "name": "Value Proposition",
- "description": ""
}
], - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}
], - "pagination": {
- "total_records": 2,
- "total_pages": 1,
- "current_page": 1
}
}| id required | string Id identifier |
{- "strategy_model": {
- "id": "111251416",
- "name": "Aha! business model canvas",
- "kind": "Business",
- "components": [
- {
- "id": 62803905,
- "name": "Growth opportunity",
- "description": ""
}
], - "project": {
- "id": "517761884",
- "reference_prefix": "PRJ2",
- "name": "Project 2",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}
}{- "strategy_positions": [
- {
- "id": "51832287",
- "name": "Aha! strategic positioning model canvas",
- "kind": "Positioning",
- "components": [
- {
- "id": 260808894,
- "name": "Value Proposition",
- "description": ""
}
], - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - {
- "id": "453528824",
- "name": "Aha! strategic positioning model canvas",
- "kind": "Positioning",
- "components": [
- {
- "id": 37485938,
- "name": "Growth opportunity",
- "description": ""
}
], - "project": {
- "id": "517761884",
- "reference_prefix": "PRJ2",
- "name": "Project 2",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}
], - "pagination": {
- "total_records": 2,
- "total_pages": 1,
- "current_page": 1
}
}| id required | string Id identifier |
{- "strategy_positioning": {
- "id": "453528824",
- "name": "Aha! strategic positioning model canvas",
- "kind": "Positioning",
- "components": [
- {
- "id": 37485938,
- "name": "Growth opportunity",
- "description": ""
}
], - "project": {
- "id": "517761884",
- "reference_prefix": "PRJ2",
- "name": "Project 2",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}
}{- "strategy_visions": [
- {
- "id": "262392474",
- "name": "Project 2 Strategy",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "description": null,
- "strategy_vision_components": [ ],
- "project": {
- "id": "517761884",
- "reference_prefix": "PRJ2",
- "name": "Project 2",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}, - {
- "id": "613708188",
- "name": "Project 1 Strategy",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "description": null,
- "strategy_vision_components": [
- {
- "id": 669674847,
- "name": "Our market",
- "title": null
}, - {
- "id": 1055079655,
- "name": "Our strengths",
- "title": null
}
], - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}
], - "pagination": {
- "total_records": 2,
- "total_pages": 1,
- "current_page": 1
}
}| id required | string Id identifier |
{- "strategy_vision": {
- "id": "613708188",
- "name": "Project 1 Strategy",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "description": null,
- "strategy_vision_components": [
- {
- "id": 669674847,
- "name": "Our market",
- "title": null
}, - {
- "id": 1055079655,
- "name": "Our strengths",
- "title": null
}
], - "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}
}
}object |
{- "task": {
- "name": "Review press release",
- "body": "<p>Can you please review the press release</p>",
- "assigned_to_users": [
- {
- "email": "no-reply@aha.io"
}
]
}
}{- "task": {
- "id": "6776881149495424765",
- "name": "Review press release",
- "body": "<p>Can you please review the press release</p>",
- "due_date": null,
- "status": "pending",
- "position": null,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "",
- "assigned_to_users": [
- {
- "id": "6776881149484955852",
- "status": "pending",
- "user": {
- "id": "349538572",
- "name": "Sally Sane",
- "email": "sally.sane@account2.com",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}, - {
- "id": "6776881149486559736",
- "status": "pending",
- "user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}
], - "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "comments_count": 0
}
}| updated_since | string Example: updated_since=2019-01-01T00:00:00Z |
| type | string Example: type=Approval |
{- "tasks": [
- {
- "id": "568474467",
- "name": "Task name",
- "due_date": "2019-01-01",
- "status": "pending",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}| feature_id required | string FeatureId identifier |
{- "tasks": [
- {
- "id": "748715293",
- "name": "Task name",
- "due_date": "2019-01-01",
- "status": "completed",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}| epic_id required | string EpicId identifier |
{- "tasks": [
- {
- "id": "486361616",
- "name": "Task name",
- "due_date": "2019-01-01",
- "status": "pending",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}| requirement_id required | string RequirementId identifier |
{- "tasks": [
- {
- "id": "270131066",
- "name": "Do this thing.",
- "due_date": "2019-01-01",
- "status": "pending",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}| product_id required | string ProductId identifier |
{- "tasks": [
- {
- "id": "270131066",
- "name": "Do this thing.",
- "due_date": "2019-01-01",
- "status": "pending",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "486361616",
- "name": "Task name",
- "due_date": "2019-01-01",
- "status": "pending",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "491284354",
- "name": "Task name",
- "due_date": "2019-01-01",
- "status": "pending",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "644916258",
- "name": "Task name 1",
- "due_date": "2019-01-01",
- "status": "pending",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "742756265",
- "name": "Get it done",
- "due_date": "2019-01-01",
- "status": "partially_complete",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "748715293",
- "name": "Task name",
- "due_date": "2019-01-01",
- "status": "completed",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "785584324",
- "name": "Task name",
- "due_date": "2019-01-01",
- "status": "pending",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "896534432",
- "name": "Annotations task",
- "due_date": "2019-01-01",
- "status": "pending",
- "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "937465541",
- "name": "Task name 2",
- "due_date": "2019-01-01",
- "status": "pending",
- "created_at": "2019-01-01T00:00:00.000Z"
}
], - "pagination": {
- "total_records": 9,
- "total_pages": 1,
- "current_page": 1
}
}| id required | string Id identifier |
{- "task": {
- "id": "1041191038",
- "name": "Task name",
- "body": "Task body",
- "due_date": "2019-01-01",
- "status": "partially_complete",
- "position": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "",
- "assigned_to_users": [
- {
- "id": "1061194521",
- "status": "completed",
- "user": {
- "id": "601067208",
- "name": "Jeremy Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}, - {
- "id": "642374309",
- "status": "pending",
- "user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}
], - "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "comments_count": 0
}
}| id required | string Id identifier |
object |
{- "task": {
- "body": "<p>Can you please review this press release</p>"
}
}{- "task": {
- "id": "568474467",
- "name": "Task name",
- "body": "Task body",
- "due_date": "2019-01-01",
- "status": "completed",
- "position": 1,
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "product_id": "702241743",
- "assigned_to_users": [
- {
- "id": "938180846",
- "status": "completed",
- "completed_date": "2019-01-01T00:00:00.000Z",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}
], - "created_by_user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "attachments": [ ],
- "comments_count": 0,
- "taskable": {
- "type": "Feature",
- "id": "959120953",
- "reference_num": "PRJ3-2",
- "name": "A third Feature",
}
}
}Manage virtual users used in capacity planning
{- "team_member": {
- "first_name": "Sam",
- "last_name": "Doe",
- "email": "sam.doe@example.com"
}
}{- "team_member": {
- "id": "6776881149494512236",
- "name": "Sam Doe",
- "email": "sam.doe@example.com",
- "user_id": null,
- "virtual": true
}
}Manage virtual users used in capacity planning
| {} | string |
{- "team_members": [
- {
- "id": "540018633",
- "name": "John Johnson",
- "email": "john.johnson@corporation.com",
- "user_id": null,
- "virtual": true
}, - {
- "id": "960059005",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "user_id": "1020675218",
- "virtual": false
}
], - "pagination": {
- "total_records": 2,
- "total_pages": 1,
- "current_page": 1
}
}Manage virtual users used in capacity planning
| id required | string Id identifier |
{ }Team memberships for capacity planning teams. Users can be either Aha! users or virtual users
| team_id required | string TeamId identifier |
{- "team_membership": {
- "user_id": 689956296
}
}Team memberships for capacity planning teams. Users can be either Aha! users or virtual users
| team_id required | string TeamId identifier |
| fields | string Example: fields=team_member,team,created_at |
{- "team_memberships": [
- {
- "id": "202266373",
- "team_member": {
- "id": "540018633",
- "name": "John Johnson",
- "email": "john.johnson@corporation.com",
- "user_id": null,
- "virtual": true
}, - "team": {
- "id": "949295028",
- "name": "Default team"
}, - "created_at": "2019-01-01T00:00:00.000Z"
}, - {
- "id": "646482528",
- "team_member": {
- "id": "960059005",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "user_id": "1020675218",
- "virtual": false
}, - "team": {
- "id": "949295028",
- "name": "Default team"
}, - "created_at": "2019-01-01T00:00:00.000Z"
}
], - "pagination": {
- "total_records": 2,
- "total_pages": 1,
- "current_page": 1
}
}Team memberships for capacity planning teams. Users can be either Aha! users or virtual users
| team_id required | string TeamId identifier |
| id required | string Id identifier |
{ }{- "team": {
- "name": "Account team"
}
}{- "team": {
- "id": "6776881149488280595",
- "name": "Account team",
- "team_members_count": 0,
- "automatically_calculate_team_members_count": true,
- "capacity": 0,
- "hourly_rate": null,
- "color": "#666666",
- "start_date": null,
- "end_date": null,
- "project": null,
- "schedule": {
- "id": "441193141",
- "name": "Default schedule",
- "hours_per_day": "8.2",
- "story_points_per_day": "1.0",
- "velocity": "10.5"
}, - "custom_fields": [ ]
}
}| fields | string Example: fields=name,team_members_count,automatically_calculate_team_members_count,capacity,hourly_rate,color,start_date,end_date,project,schedule,custom_fields,team_members |
{- "teams": [
- {
- "id": "134558347",
- "name": "Project team",
- "team_members_count": 0,
- "automatically_calculate_team_members_count": false,
- "capacity": "0.0",
- "hourly_rate": "250.0",
- "color": "#666666",
- "start_date": "2019-01-01",
- "end_date": "2019-01-01",
- "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "workspace_type": "product_workspace"
}, - "schedule": {
- "id": "441193141",
- "name": "Default schedule",
- "hours_per_day": "8.2",
- "story_points_per_day": "1.0",
- "velocity": "10.5"
}, - "custom_fields": [ ],
- "team_members": {
- "id": "730311797",
- "name": "Peter Parker",
- "email": null,
- "user_id": null,
- "virtual": true
}
}, - {
- "id": "563889676",
- "name": "Another team",
- "team_members_count": 0,
- "automatically_calculate_team_members_count": false,
- "capacity": "0.0",
- "hourly_rate": "150.0",
- "color": "#666666",
- "start_date": "2019-01-01",
- "end_date": "2019-01-01",
- "project": null,
- "schedule": {
- "id": "441193141",
- "name": "Default schedule",
- "hours_per_day": "8.2",
- "story_points_per_day": "1.0",
- "velocity": "10.5"
}, - "custom_fields": [ ],
- "team_members": {
- "id": "960059005",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "user_id": "1020675218",
- "virtual": false
}
}, - {
- "id": "949295028",
- "name": "Default team",
- "team_members_count": 5,
- "automatically_calculate_team_members_count": false,
- "capacity": "205.0",
- "hourly_rate": "100.0",
- "color": "#666666",
- "start_date": "2019-01-01",
- "end_date": "2019-01-01",
- "project": null,
- "schedule": {
- "id": "441193141",
- "name": "Default schedule",
- "hours_per_day": "8.2",
- "story_points_per_day": "1.0",
- "velocity": "10.5"
}, - "custom_fields": [ ],
- "team_members": {
- "id": "960059005",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "user_id": "1020675218",
- "virtual": false
}
}
], - "pagination": {
- "total_records": 3,
- "total_pages": 1,
- "current_page": 1
}
}| product_id required | string ProductId identifier |
{- "team": {
- "product_id": "PRJ1",
- "name": "Product team"
}
}{- "team": {
- "id": "6776881149489987892",
- "name": "Product team",
- "team_members_count": 0,
- "automatically_calculate_team_members_count": true,
- "capacity": 0,
- "hourly_rate": null,
- "color": "#666666",
- "start_date": null,
- "end_date": null,
- "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "schedule": {
- "id": "441193141",
- "name": "Default schedule",
- "hours_per_day": "8.2",
- "story_points_per_day": "1.0",
- "velocity": "10.5"
}, - "custom_fields": [ ]
}
}| product_id required | string ProductId identifier |
| {} | string |
{- "teams": [ ],
- "pagination": {
- "total_records": 0,
- "total_pages": 0,
- "current_page": 1
}
}| id required | string Id identifier |
| {} | string |
{- "team": {
- "id": "949295028",
- "name": "Default team",
- "team_members_count": 5,
- "automatically_calculate_team_members_count": false,
- "capacity": "205.0",
- "hourly_rate": "100.0",
- "color": "#666666",
- "start_date": "2019-01-01",
- "end_date": "2019-01-01",
- "project": null,
- "schedule": {
- "id": "441193141",
- "name": "Default schedule",
- "hours_per_day": "8.2",
- "story_points_per_day": "1.0",
- "velocity": "10.5"
}, - "custom_fields": [ ],
- "team_members": {
- "id": "960059005",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "user_id": "1020675218",
- "virtual": false
}
}
}| id required | string Id identifier |
{- "team": {
- "name": "Product 2 team",
- "product_id": "PRJ2"
}
}{- "team": {
- "id": "134558347",
- "name": "Project team",
- "team_members_count": 1,
- "automatically_calculate_team_members_count": true,
- "capacity": "41.0",
- "hourly_rate": "250.0",
- "color": "#666666",
- "start_date": "2019-01-01",
- "end_date": "2019-01-01",
- "project": {
- "id": "131414752",
- "reference_prefix": "PRJ1",
- "name": "Project 1",
- "product_line": false,
- "created_at": "2019-01-01T00:00:00.000Z",
- "workspace_type": "product_workspace",
}, - "schedule": {
- "id": "441193141",
- "name": "Default schedule",
- "hours_per_day": "8.2",
- "story_points_per_day": "1.0",
- "velocity": "10.5"
}, - "custom_fields": [ ],
- "team_members": {
- "id": "730311797",
- "name": "Peter Parker",
- "email": null,
- "user_id": null,
- "virtual": true
}
}
}| feature_id required | string FeatureId identifier |
object |
{- "time_tracking_event": {
- "user_id": 689956296,
- "work_done_text": "1h 30min",
- "remaining_estimate_text": "2h"
}
}{- "time_tracking_event": {
- "id": "6776881149487861795",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "occurred_on": "2019-01-01",
- "work_done": 5,
- "work_units": 20
}
}| requirement_id required | string RequirementId identifier |
object |
{- "time_tracking_event": {
- "user_id": 689956296,
- "work_done_text": "2h"
}
}{- "time_tracking_event": {
- "id": "6776881149499571657",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "occurred_on": "2019-01-01",
- "work_done": 120,
- "work_units": 10
}
}| initiative_id required | string InitiativeId identifier |
object |
{- "time_tracking_event": {
- "user_id": 689956296,
- "work_done_text": "2h"
}
}{- "time_tracking_event": {
- "id": "6776881149484363523",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}, - "occurred_on": "2019-01-01",
- "work_done": 120,
- "work_units": 10
}
}| product_id required | string ProductId identifier |
object |
{- "user": {
- "email": "sam.doe@example.com",
- "first_name": "sam",
- "last_name": "doe",
- "role": "product_owner"
}
}{- "role": 20,
- "role_description": "Owner",
- "user": {
- "id": "6776881149496250378",
- "name": "sam doe",
- "email": "sam.doe@example.com",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}| product_id required | string ProductId identifier |
{- "project_users": [
- {
- "role": 50,
- "role_description": "Viewer",
- "user": {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}, - {
- "role": 20,
- "role_description": "Owner",
- "user": {
- "id": "82352673",
- "name": "Bob Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}, - {
- "role": 30,
- "role_description": "Contributor",
- "user": {
- "id": "289520357",
- "name": "John Doe",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}, - {
- "role": 30,
- "role_description": "Contributor",
- "user": {
- "id": "349538572",
- "name": "Sally Sane",
- "email": "sally.sane@account2.com",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}, - {
- "role": 35,
- "role_description": "Developer",
- "user": {
- "id": "375285024",
- "name": "Gregory McSmith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}, - {
- "role": 50,
- "role_description": "Viewer",
- "user": {
- "id": "435166761",
- "name": "Jane Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}, - {
- "role": 40,
- "role_description": "Reviewer",
- "user": {
- "id": "601067208",
- "name": "Jeremy Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}, - {
- "role": 30,
- "role_description": "Contributor",
- "user": {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}, - {
- "role": 20,
- "role_description": "Owner",
- "user": {
- "id": "871344824",
- "name": "Joan Smith",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}, - {
- "role": 20,
- "role_description": "Owner",
- "user": {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}, - {
- "role": 20,
- "role_description": "Owner",
- "user": {
- "id": "1049303076",
- "name": "George Gently",
- "email": "no-reply@aha.io",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z"
}
}
], - "pagination": {
- "total_records": 11,
- "total_pages": 1,
- "current_page": 1
}
}Custom roles are an Enterprise+ exclusive feature.
{- "users": [
- {
- "id": "16338845",
- "name": "John Smith",
- "email": "no-reply@aha.io",
- "timezone": "Pacific/Auckland",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "accessed_at": null,
- "product_roles": [
- {
- "role": 50,
- "role_description": "Viewer",
- "product_id": "131414752",
- "product_name": "Project 1"
}
], - "user_roles": [ ],
- "enabled": true,
- "paid_seat": true,
- "roadmaps_seat": true,
- "develop_seat": false,
- "teamwork_seat": false,
- "administrator": false,
- "administrator_roles": {
- "administer_account": false,
- "administer_billing": false,
- "administer_configuration": false
}, - "identity_provider": {
- "type": "password"
}
}, - {
- "id": "37063167",
- "name": "No Projects",
- "email": "no-reply@aha.io",
- "timezone": "America/Mexico_City",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "accessed_at": null,
- "product_roles": [ ],
- "user_roles": [ ],
- "enabled": true,
- "paid_seat": true,
- "roadmaps_seat": true,
- "develop_seat": false,
- "teamwork_seat": false,
- "administrator": true,
- "administrator_roles": {
- "administer_account": true,
- "administer_billing": true,
- "administer_configuration": true
}, - "identity_provider": {
- "type": "password"
}
}, - {
- "id": "82352673",
- "name": "Bob Smith",
- "email": "no-reply@aha.io",
- "timezone": "Asia/Istanbul",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "accessed_at": null,
- "product_roles": [
- {
- "role": 20,
- "role_description": "Owner",
- "product_id": "131414752",
- "product_name": "Project 1"
}, - {
- "role": 20,
- "role_description": "Owner",
- "product_id": "517761884",
- "product_name": null
}, - {
- "role": 20,
- "role_description": "Owner",
- "product_id": "610602692",
- "product_name": null
}, - {
- "role": 20,
- "role_description": "Owner",
- "product_id": "787060436",
- "product_name": null
}, - {
- "role": 20,
- "role_description": "Owner",
- "product_id": "682804944",
- "product_name": null
}, - {
- "role": 20,
- "role_description": "Owner",
- "product_id": "774939364",
- "product_name": null
}
], - "user_roles": [ ],
- "enabled": true,
- "paid_seat": true,
- "roadmaps_seat": true,
- "develop_seat": false,
- "teamwork_seat": false,
- "administrator": true,
- "administrator_roles": {
- "administer_account": true,
- "administer_billing": false,
- "administer_configuration": true
}, - "paid_seat_group": {
- "id": 572805993,
- "name": "Group 2"
}, - "identity_provider": {
- "type": "password"
}
}, - {
- "id": "126225962",
- "name": "Multi Account",
- "email": "mulit-account@trial-account.com",
- "timezone": "Asia/Kolkata",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "accessed_at": null,
- "product_roles": [ ],
- "user_roles": [ ],
- "enabled": true,
- "paid_seat": true,
- "roadmaps_seat": true,
- "develop_seat": false,
- "teamwork_seat": false,
- "administrator": true,
- "administrator_roles": {
- "administer_account": true,
- "administer_billing": true,
- "administer_configuration": true
}, - "identity_provider": {
- "type": "password"
}
}, - {
- "id": "267654265",
- "name": "John's First (\"name\") 私 Smith",
- "email": "no-reply@aha.io",
- "timezone": "America/Indiana/Knox",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "accessed_at": null,
- "product_roles": [ ],
- "user_roles": [ ],
- "enabled": true,
- "paid_seat": true,
- "roadmaps_seat": true,
- "develop_seat": false,
- "teamwork_seat": false,
- "administrator": false,
- "administrator_roles": {
- "administer_account": false,
- "administer_billing": false,
- "administer_configuration": false
}, - "identity_provider": {
- "type": "password"
}
}, - {
- "id": "268195287",
- "name": "Super Admin",
- "email": "admin@aha.io",
- "timezone": "America/New_York",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "accessed_at": null,
- "product_roles": [ ],
- "user_roles": [ ],
- "enabled": true,
- "paid_seat": true,
- "roadmaps_seat": true,
- "develop_seat": false,
- "teamwork_seat": false,
- "administrator": false,
- "administrator_roles": {
- "administer_account": false,
- "administer_billing": false,
- "administer_configuration": false
}, - "identity_provider": {
- "type": "password"
}
}, - {
- "id": "289520357",
- "name": "John Doe",
- "email": "no-reply@aha.io",
- "timezone": "America/Mexico_City",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "accessed_at": null,
- "product_roles": [
- {
- "role": 30,
- "role_description": "Contributor",
- "product_id": "131414752",
- "product_name": "Project 1"
}, - {
- "role": 50,
- "role_description": "Viewer",
- "product_id": "517761884",
- "product_name": null
}
], - "user_roles": [ ],
- "enabled": true,
- "paid_seat": true,
- "roadmaps_seat": true,
- "develop_seat": false,
- "teamwork_seat": false,
- "administrator": false,
- "administrator_roles": {
- "administer_account": false,
- "administer_billing": false,
- "administer_configuration": false
}, - "identity_provider": {
- "type": "password"
}
}, - {
- "id": "349538572",
- "name": "Sally Sane",
- "email": "sally.sane@account2.com",
- "timezone": "Europe/London",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "accessed_at": null,
- "product_roles": [
- {
- "role": 30,
- "role_description": "Contributor",
- "product_id": "131414752",
- "product_name": "Project 1"
}
], - "user_roles": [ ],
- "enabled": true,
- "paid_seat": true,
- "roadmaps_seat": true,
- "develop_seat": false,
- "teamwork_seat": false,
- "administrator": false,
- "administrator_roles": {
- "administer_account": false,
- "administer_billing": false,
- "administer_configuration": false
}, - "identity_provider": {
- "type": "password"
}
}, - {
- "id": "373433676",
- "name": "Jim Jingles",
- "email": "no-reply@aha.io",
- "timezone": "Pacific Time (US & Canada)",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "accessed_at": null,
- "product_roles": [ ],
- "user_roles": [ ],
- "enabled": true,
- "paid_seat": true,
- "roadmaps_seat": true,
- "develop_seat": false,
- "teamwork_seat": false,
- "administrator": true,
- "administrator_roles": {
- "administer_account": true,
- "administer_billing": true,
- "administer_configuration": true
}, - "paid_seat_group": {
- "id": 992805589,
- "name": "Group 1"
}, - "identity_provider": {
- "type": "password"
}
}, - {
- "id": "375285024",
- "name": "Gregory McSmith",
- "email": "no-reply@aha.io",
- "timezone": "America/Los_Angeles",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "accessed_at": null,
- "product_roles": [
- {
- "role": 35,
- "role_description": "Developer",
- "product_id": "131414752",
- "product_name": "Project 1"
}
], - "user_roles": [ ],
- "enabled": true,
- "paid_seat": true,
- "roadmaps_seat": true,
- "develop_seat": false,
- "teamwork_seat": false,
- "administrator": false,
- "administrator_roles": {
- "administer_account": false,
- "administer_billing": false,
- "administer_configuration": false
}, - "identity_provider": {
- "type": "password"
}
}, - {
- "id": "435166761",
- "name": "Jane Smith",
- "email": "no-reply@aha.io",
- "timezone": "Antarctica/McMurdo",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "accessed_at": null,
- "product_roles": [
- {
- "role": 50,
- "role_description": "Viewer",
- "product_id": "131414752",
- "product_name": "Project 1"
}
], - "user_roles": [ ],
- "enabled": true,
- "paid_seat": true,
- "roadmaps_seat": true,
- "develop_seat": false,
- "teamwork_seat": false,
- "administrator": false,
- "administrator_roles": {
- "administer_account": false,
- "administer_billing": false,
- "administer_configuration": false
}, - "identity_provider": {
- "type": "password"
}
}, - {
- "id": "501775768",
- "name": "Frank Sane",
- "email": "frank.sane@account2.com",
- "timezone": "Europe/Lisbon",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "accessed_at": null,
- "product_roles": [ ],
- "user_roles": [ ],
- "enabled": true,
- "paid_seat": true,
- "roadmaps_seat": true,
- "develop_seat": false,
- "teamwork_seat": false,
- "administrator": false,
- "administrator_roles": {
- "administer_account": false,
- "administer_billing": false,
- "administer_configuration": false
}, - "identity_provider": {
- "type": "password"
}
}, - {
- "id": "530313708",
- "name": "Bill Billings",
- "email": "no-reply@aha.io",
- "timezone": "Pacific Time (US & Canada)",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "accessed_at": null,
- "product_roles": [ ],
- "user_roles": [ ],
- "enabled": true,
- "paid_seat": true,
- "roadmaps_seat": true,
- "develop_seat": false,
- "teamwork_seat": false,
- "administrator": true,
- "administrator_roles": {
- "administer_account": false,
- "administer_billing": true,
- "administer_configuration": false
}, - "identity_provider": {
- "type": "password"
}
}, - {
- "id": "601067208",
- "name": "Jeremy Smith",
- "email": "no-reply@aha.io",
- "timezone": "America/Indiana/Indianapolis",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "accessed_at": null,
- "product_roles": [
- {
- "role": 40,
- "role_description": "Reviewer",
- "product_id": "131414752",
- "product_name": "Project 1"
}
], - "user_roles": [ ],
- "enabled": true,
- "paid_seat": true,
- "roadmaps_seat": true,
- "develop_seat": false,
- "teamwork_seat": false,
- "administrator": false,
- "administrator_roles": {
- "administer_account": false,
- "administer_billing": false,
- "administer_configuration": false
}, - "identity_provider": {
- "type": "password"
}
}, - {
- "id": "689956296",
- "name": "Henry Humpty",
- "email": "no-reply@aha.io",
- "timezone": "Asia/Tokyo",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "accessed_at": "2019-01-01T00:00:00.000Z",
- "product_roles": [
- {
- "role": 30,
- "role_description": "Contributor",
- "product_id": "131414752",
- "product_name": "Project 1"
}
], - "user_roles": [ ],
- "enabled": true,
- "paid_seat": true,
- "roadmaps_seat": true,
- "develop_seat": false,
- "teamwork_seat": false,
- "administrator": false,
- "administrator_roles": {
- "administer_account": false,
- "administer_billing": false,
- "administer_configuration": false
}, - "identity_provider": {
- "type": "password"
}
}, - {
- "id": "733218216",
- "name": "Everso Gently",
- "email": "no-reply@aha.io",
- "timezone": "Asia/Kathmandu",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "accessed_at": null,
- "product_roles": [ ],
- "user_roles": [ ],
- "enabled": true,
- "paid_seat": true,
- "roadmaps_seat": true,
- "develop_seat": false,
- "teamwork_seat": false,
- "administrator": true,
- "administrator_roles": {
- "administer_account": true,
- "administer_billing": true,
- "administer_configuration": true
}, - "identity_provider": {
- "type": "password"
}
}, - {
- "id": "787951284",
- "name": "Jeremy Thompson",
- "email": "no-reply@aha.io",
- "timezone": "America/Regina",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "accessed_at": null,
- "product_roles": [
- {
- "role": 50,
- "role_description": "Viewer",
- "product_id": "1040810565",
- "product_name": null
}
], - "user_roles": [ ],
- "enabled": true,
- "paid_seat": true,
- "roadmaps_seat": true,
- "develop_seat": false,
- "teamwork_seat": false,
- "administrator": false,
- "administrator_roles": {
- "administer_account": false,
- "administer_billing": false,
- "administer_configuration": false
}, - "identity_provider": {
- "type": "password"
}
}, - {
- "id": "869174989",
- "name": "Dirk Gently",
- "email": "no-reply@aha.io",
- "timezone": "America/Havana",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "accessed_at": null,
- "product_roles": [ ],
- "user_roles": [ ],
- "enabled": true,
- "paid_seat": true,
- "roadmaps_seat": true,
- "develop_seat": false,
- "teamwork_seat": false,
- "administrator": true,
- "administrator_roles": {
- "administer_account": true,
- "administer_billing": true,
- "administer_configuration": true
}, - "identity_provider": {
- "type": "password"
}
}, - {
- "id": "871344824",
- "name": "Joan Smith",
- "email": "no-reply@aha.io",
- "timezone": "Asia/Istanbul",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "accessed_at": null,
- "product_roles": [
- {
- "role": 20,
- "role_description": "Owner",
- "product_id": "131414752",
- "product_name": "Project 1"
}
], - "user_roles": [ ],
- "enabled": true,
- "paid_seat": true,
- "roadmaps_seat": true,
- "develop_seat": false,
- "teamwork_seat": false,
- "administrator": true,
- "administrator_roles": {
- "administer_account": true,
- "administer_billing": false,
- "administer_configuration": true
}, - "paid_seat_group": {
- "id": 572805993,
- "name": "Group 2"
}, - "identity_provider": {
- "type": "password"
}
}, - {
- "id": "1020675218",
- "name": "Mary Humpty",
- "email": "no-reply@aha.io",
- "timezone": "America/Los_Angeles",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "accessed_at": "2019-01-01T00:00:00.000Z",
- "product_roles": [
- {
- "role": 20,
- "role_description": "Owner",
- "product_id": "131414752",
- "product_name": "Project 1"
}, - {
- "role": 20,
- "role_description": "Owner",
- "product_id": "517761884",
- "product_name": null
}, - {
- "role": 20,
- "role_description": "Owner",
- "product_id": "610602692",
- "product_name": null
}
], - "user_roles": [ ],
- "enabled": true,
- "paid_seat": true,
- "roadmaps_seat": true,
- "develop_seat": false,
- "teamwork_seat": false,
- "administrator": false,
- "administrator_roles": {
- "administer_account": false,
- "administer_billing": false,
- "administer_configuration": false
}, - "identity_provider": {
- "type": "password"
}
}, - {
- "id": "1049303076",
- "name": "George Gently",
- "email": "no-reply@aha.io",
- "timezone": "America/Los_Angeles",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "accessed_at": null,
- "product_roles": [
- {
- "role": 20,
- "role_description": "Owner",
- "product_id": "131414752",
- "product_name": "Project 1"
}
], - "user_roles": [
- {
- "role_id": 409541421,
- "name": "Project scoped role 1",
- "scope": {
- "type": "project",
- "name": "Account 1",
- "id": 303742481
}
}
], - "enabled": true,
- "paid_seat": true,
- "roadmaps_seat": true,
- "develop_seat": false,
- "teamwork_seat": false,
- "administrator": true,
- "administrator_roles": {
- "administer_account": true,
- "administer_billing": true,
- "administer_configuration": true
}, - "identity_provider": {
- "type": "password"
}
}
], - "pagination": {
- "total_records": 21,
- "total_pages": 1,
- "current_page": 1
}
}| id required | string Id identifier |
{- "user": {
- "id": "1049303076",
- "name": "George Gently",
- "email": "no-reply@aha.io",
- "timezone": "America/Los_Angeles",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "accessed_at": null,
- "product_roles": [
- {
- "role": 20,
- "role_description": "Owner",
- "product_id": "131414752",
- "product_name": "Project 1"
}
], - "enabled": true,
- "paid_seat": true,
- "roadmaps_seat": true,
- "develop_seat": false,
- "teamwork_seat": false,
- "administrator": true,
- "administrator_roles": {
- "administer_account": true,
- "administer_billing": true,
- "administer_configuration": true
}, - "identity_provider": {
- "type": "password"
}
}
}| id required | string Id identifier |
object |
{- "user": {
- "first_name": "Sarah",
- "enabled": false
}
}{- "id": "1020675218",
- "name": "Sarah Humpty",
- "email": "no-reply@aha.io",
- "timezone": "America/Los_Angeles",
- "created_at": "2019-01-01T00:00:00.000Z",
- "updated_at": "2019-01-01T00:00:00.000Z",
- "accessed_at": "2019-01-01T00:00:00.000Z",
- "product_roles": [
- {
- "role": 20,
- "role_description": "Owner",
- "product_id": "131414752",
- "product_name": "Project 1"
}, - {
- "role": 20,
- "role_description": "Owner",
- "product_id": "517761884",
- "product_name": null
}, - {
- "role": 20,
- "role_description": "Owner",
- "product_id": "610602692",
- "product_name": null
}
], - "enabled": false,
- "paid_seat": true,
- "roadmaps_seat": true,
- "develop_seat": false,
- "teamwork_seat": false,
- "administrator": false,
- "administrator_roles": {
- "administer_account": false,
- "administer_billing": false,
- "administer_configuration": false
}, - "identity_provider": {
- "type": "password"
}
}| id required | string Id identifier |
{- "product_roles": [
- {
- "role": 20,
- "role_description": "Owner",
- "product_id": "131414752",
- "product_name": "Project 1"
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}| id required | string Id identifier |
object |
{- "product_role": {
- "role": "product_owner",
- "product_id": "PRJ3"
}
}{- "role": 20,
- "role_description": "Owner",
- "product_id": "702241743",
- "product_name": null
}| id required | string Id identifier |
{- "user_roles": [
- {
- "role_id": 409541421,
- "name": "Project scoped role 1",
- "scope": {
- "type": "project",
- "name": "Project 1",
- "id": 131414752
}
}
], - "pagination": {
- "total_records": 1,
- "total_pages": 1,
- "current_page": 1
}
}| id required | string Id identifier |
object |
{- "user_role": {
- "custom_role_id": 409541421,
- "product_id": 131414752
}
}{- "role_id": 409541421,
- "name": "Project scoped role 1",
- "scope": {
- "type": "project",
- "name": "Project 1",
- "id": 131414752
}
}Receives and processes a webhook from Jira when an issue is updated.
Typical Jira webhook payload includes:
| token required | string Token identifier |
This endpoint allows integration services to validate that the webhook URL is accessible and properly configured without triggering actual webhook processing. Useful for testing webhook connectivity during integration setup.
| token required | string Token identifier |
| product_id required | string ProductId identifier |
{- "workflows": [
- {
- "id": 61191651,
- "name": "Account initiative workflow",
- "statusable_type": "Initiative",
- "transitions_only": false,
- "workflow_statuses": [
- {
- "id": "53968949",
- "name": "Not Started",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - {
- "id": "851912549",
- "name": "On Track",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "398063383401136128",
- "name": "Sample 15",
- "position": 17,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "398063383401136148",
- "name": "Sample 3",
- "position": 5,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "398063383401136158",
- "name": "Sample 1",
- "position": 3,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "398063383401136168",
- "name": "Sample 2",
- "position": 4,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "398063383401136178",
- "name": "Sample 14",
- "position": 16,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "420001850772881408",
- "name": "Sample 12",
- "position": 14,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "420001850772881428",
- "name": "Sample 7",
- "position": 9,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "420001850772881438",
- "name": "Sample 5",
- "position": 7,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "420001850772881448",
- "name": "Sample 4",
- "position": 6,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "6001166979456424024",
- "name": "Sample 19",
- "position": 21,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "6001166979457568121",
- "name": "Sample 16",
- "position": 18,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "6001166983749861123",
- "name": "Sample 18",
- "position": 20,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "6001166983750348036",
- "name": "Sample 20",
- "position": 22,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "6001166983752519805",
- "name": "Sample 17",
- "position": 19,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "6001166983754160302",
- "name": "Sample 21",
- "position": 23,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "6013053275675082840",
- "name": "Sample 13",
- "position": 15,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "6013053275678580297",
- "name": "Sample 11",
- "position": 13,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "6013053275679470036",
- "name": "Sample 10",
- "position": 12,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "6013053275679792248",
- "name": "Sample 9",
- "position": 11,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "6013053284264084983",
- "name": "Sample 8",
- "position": 10,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "6013053284269398016",
- "name": "Sample 6",
- "position": 8,
- "complete": false,
- "color": "#ecdd8f"
}
], - "workflow_kinds": [
- {
- "id": "196299900",
- "name": "Improvement"
}, - {
- "id": "654498607",
- "name": "New"
}
]
}, - {
- "id": 80245244,
- "name": "Account product idea workflow",
- "statusable_type": "Idea",
- "transitions_only": false,
- "workflow_statuses": [
- {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - {
- "id": "349486678",
- "name": "Shipped",
- "position": 4,
- "complete": true,
- "color": "#ecdd8f"
}, - {
- "id": "509459046",
- "name": "Done",
- "position": 4,
- "complete": true,
- "color": "#ecdd8f"
}, - {
- "id": "1009437757",
- "name": "In progress",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}
], - "workflow_kinds": [
- {
- "id": "1809278",
- "name": "Improvement"
}, - {
- "id": "787053401",
- "name": "New"
}
]
}, - {
- "id": 499195972,
- "name": "Account product feature workflow",
- "statusable_type": "Feature",
- "transitions_only": false,
- "workflow_statuses": [
- {
- "id": "118531893",
- "name": "Already Exists",
- "position": 7,
- "complete": true,
- "color": "#ecdd8f"
}, - {
- "id": "327385593",
- "name": "In progress",
- "position": 3,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "348961883",
- "name": "Won't Do",
- "position": 6,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "597153450",
- "name": "Done",
- "position": 4,
- "complete": true,
- "color": "#ecdd8f"
}, - {
- "id": "922838743",
- "name": "Not started",
- "position": 8,
- "complete": false,
- "color": "#dce790"
}, - {
- "id": "934242751",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - {
- "id": "962984386",
- "name": "Designed",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "1025247908",
- "name": "Shipped",
- "position": 5,
- "complete": true,
- "color": "#ecdd8f"
}
], - "workflow_kinds": [
- {
- "id": "98484309",
- "name": "New"
}, - {
- "id": "714950177",
- "name": "Improvement"
}
]
}, - {
- "id": 717623509,
- "name": "Account product release workflow",
- "statusable_type": "Release",
- "transitions_only": false,
- "workflow_statuses": [
- {
- "id": "738862546",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - {
- "id": "920959666",
- "name": "In progress",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "1040256814",
- "name": "Shipped",
- "position": 3,
- "complete": true,
- "color": "#ecdd8f"
}
], - "workflow_kinds": [
- {
- "id": "97513727",
- "name": "Improvement"
}, - {
- "id": "706521964",
- "name": "New"
}, - {
- "id": "6053108729101086872",
- "name": "Sample 1"
}
]
}, - {
- "id": 883066232,
- "name": "Account goal workflow",
- "statusable_type": "StrategicImperative",
- "transitions_only": false,
- "workflow_statuses": [
- {
- "id": "396368932",
- "name": "On Track",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "412273758",
- "name": "Not Started",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}
], - "workflow_kinds": [
- {
- "id": "146845716",
- "name": "New"
}, - {
- "id": "618789532",
- "name": "Improvement"
}
]
}, - {
- "id": 934299270,
- "name": "Account document workflow",
- "statusable_type": "Page",
- "transitions_only": false,
- "workflow_statuses": [
- {
- "id": "353277314",
- "name": "On Track",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "369936966",
- "name": "Not Started",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - {
- "id": "783316433",
- "name": "In Review",
- "position": 3,
- "complete": false,
- "color": "#ecdcb8"
}
], - "workflow_kinds": [ ]
}, - {
- "id": 1024772447,
- "name": "Account product key result workflow",
- "statusable_type": "KeyResult",
- "transitions_only": false,
- "workflow_statuses": [
- {
- "id": "76947914",
- "name": "On Track",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}, - {
- "id": "496533981",
- "name": "Not Started",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}
], - "workflow_kinds": [
- {
- "id": "318525598",
- "name": "New"
}, - {
- "id": "941130642",
- "name": "Improvement"
}
]
}
]
}| id required | string Id identifier |
{- "workflow": {
- "id": 80245244,
- "name": "Account product idea workflow",
- "statusable_type": "Idea",
- "transitions_only": false,
- "workflow_statuses": [
- {
- "id": "3259216",
- "name": "New",
- "position": 1,
- "complete": false,
- "color": "#dce7c6"
}, - {
- "id": "349486678",
- "name": "Shipped",
- "position": 4,
- "complete": true,
- "color": "#ecdd8f"
}, - {
- "id": "509459046",
- "name": "Done",
- "position": 4,
- "complete": true,
- "color": "#ecdd8f"
}, - {
- "id": "1009437757",
- "name": "In progress",
- "position": 2,
- "complete": false,
- "color": "#ecdd8f"
}
], - "workflow_kinds": [
- {
- "id": "1809278",
- "name": "Improvement"
}, - {
- "id": "787053401",
- "name": "New"
}
]
}
}