Skip to content

Retrieve an issue iteration event

GET
/api/v4/projects/{id}/issues/{eventable_id}/resource_iteration_events/{event_id}

Retrieves an iteration event for a specified issue.

id
required
One of:
string

The ID or URL-encoded path the project

event_id
required
string

The ID of a resource iteration event

eventable_id
required
One of:
integer

The ID of the eventable

OK

Media type application/json
object
id
integer format: int64
user
object
id
integer format: int64
username
string
public_email
string
name
string
state
string
locked
boolean
avatar_url
string
avatar_path
string
custom_attributes
Array<object>
object
key
string
value
string
web_url
string
created_at
string format: date-time
resource_type
string
resource_id
integer format: int64
iteration
object
id
integer format: int64
iid
integer
sequence
integer
group_id
integer format: int64
title
string
description
string
state
integer
created_at
string format: date-time
updated_at
string format: date-time
start_date
string format: date
due_date
string format: date
web_url
string
action
string
Example
{
"id": 142,
"user": {
"id": 1,
"username": "admin",
"public_email": "john@example.com",
"name": "Administrator",
"state": "active",
"avatar_url": "https://gravatar.com/avatar/1",
"avatar_path": "/user/avatar/28/The-Big-Lebowski-400-400.png",
"custom_attributes": [
{
"key": "foo",
"value": "bar"
}
],
"web_url": "https://gitlab.example.com/root"
},
"created_at": "2012-05-28T04:42:42-07:00",
"resource_type": "Issue",
"resource_id": 253,
"iteration": {
"id": 1,
"iid": 1,
"sequence": 1,
"group_id": 1,
"title": "Iteration I",
"description": "Iteration description",
"state": 1,
"created_at": "2022-01-31T15:10:45.080Z",
"updated_at": "2022-01-31T15:10:45.080Z",
"start_date": "2022-01-01",
"due_date": "2022-01-31",
"web_url": "https://gitlab.example.com/groups/gitlab-org/-/iterations/1"
},
"action": "add"
}

Bad Request

Not Found