Skip to content

Retrieve an issue milestone event

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

Retrieves a specified milestone event for a project issue.

id
required
One of:
string

The ID or URL-encoded path of the project

event_id
required
string

The ID of a resource milestone 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
milestone
object
id
integer format: int64
iid
integer format: int64
project_id
integer format: int64
group_id
string
title
string
description
string
state
string
created_at
string
updated_at
string
due_date
string
start_date
string
expired
boolean
web_url
string
action
string
state
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": "2018-08-20T13:38:20.077Z",
"resource_type": "Issue",
"resource_id": 253,
"action": "add",
"state": "active"
}

Bad Request

Not found