GET

Get pull request suggestions

Retrieves a page of suggestions for pull requests that the currently authenticated user may wish to raise. Such suggestions are based on ref changes occurring and so contain the ref change that prompted the suggestion plus the time the change event occurred. Changes will be returned in descending order based on the time the change that prompted the suggestion occurred. Note that although the response is a page object, the interface does not support paging, however a limit can be applied to the size of the returned page.

Request

Query parameters

changesSince

string

limit

string

Responses

A page of pull requests that match the search criteria.

application/json;charset=UTF-8

object
GET/api/latest/dashboard/pull-request-suggestions
1 2 3 curl --request GET \ --url 'http://{baseurl}/rest/api/latest/dashboard/pull-request-suggestions' \ --header 'Accept: application/json;charset=UTF-8'
GET

Get pull requests for a user

Retrieve a page of pull requests where a user is involved as either a reviewer, author or a participant. The request may be filtered by pull request state, role or participant status.

Request

Query parameters

closedSince

string

role

string

participantStatus

string

state

string

user

string

order

string

start

number

limit

number

Responses

A page of pull requests that match the search criteria.

application/json;charset=UTF-8

object
GET/api/latest/dashboard/pull-requests
1 2 3 curl --request GET \ --url 'http://{baseurl}/rest/api/latest/dashboard/pull-requests' \ --header 'Accept: application/json;charset=UTF-8'

Rate this page: