Create Run Pull Request
Durably requests creation of a pull request for a completed run. The server generates the pull request content and creates the GitHub pull request after this request returns. Poll the URL in the Location response header until the creation succeeds or fails.
If a creation is already pending for the run, the response returns that creation unchanged; any different model or force values in the new request are ignored.
Path parameters
Unique run identifier (ULID).
Request body
Example request
{
"model": "claude-sonnet-4-6"
}Response
Pull request creation was durably accepted
Example response
{
"id": "01KYYK70WTZT2E551P3H5P0059",
"pull_request": {
"owner": "fabro-sh",
"repo": "fabro",
"number": 123,
"html_url": "https://github.com/fabro-sh/fabro/pull/123"
}
}Changes
Changed in 1 of the 134 revisions of this API.12
- ▲
removed the success response with the status
200response-success-status-removed
- ○
removed the non-success response with the status
502response-non-success-status-removed
- ○
added the success response with the status
202response-success-status-added
- ▲