Skip to content

List all status checks for a merge request

GET
/api/v4/projects/{id}/merge_requests/{merge_request_iid}/status_checks

Lists all external status check services for a specified merge request and their status.

id
required
One of:
string

The ID or URL-encoded path of the project

merge_request_iid
required
integer

The IID of the merge request

OK

Media type application/json
object
id
integer format: int64
name
string
external_url
string
status
string
Example
{
"id": 1,
"name": "QA",
"external_url": "https://www.example.com",
"status": "passed"
}

Bad Request

Not Found