Skip to main content
POST
/
api
/
orgs
/
{id}
/
issues
/
{issueId}
/
pr-links
Attach a linked pull request
curl --request POST \
  --url https://atollhq.com/api/orgs/{id}/issues/{issueId}/pr-links \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "<string>",
  "title": "<string>"
}
'
{}

Documentation Index

Fetch the complete documentation index at: https://docs.atollhq.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

id identifier

issueId
string
required

issueId identifier

Body

application/json
url
string<uri>
required

Canonical GitHub pull request URL, e.g. https://github.com/owner/repo/pull/123

title
string

Optional display title. Defaults to owner/repo#number.

Response

PR link attached

The response is of type object.