Join us May 13th & May 14th at Interrupt, the Agent Conference by LangChain. Buy tickets >
curl --request GET \
--url https://api.example.com/v2/deployments/{deployment_id}/revisions{
"resources": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"status": "CREATING",
"source": "github",
"source_revision_config": {
"repo_ref": "<string>",
"langgraph_config_path": "<string>",
"image_uri": "<string>",
"source_tarball_path": "<string>",
"repo_commit_sha": "<string>"
}
}
],
"offset": 123
}List all revisions for a deployment.
curl --request GET \
--url https://api.example.com/v2/deployments/{deployment_id}/revisions{
"resources": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"status": "CREATING",
"source": "github",
"source_revision_config": {
"repo_ref": "<string>",
"langgraph_config_path": "<string>",
"image_uri": "<string>",
"source_tarball_path": "<string>",
"repo_commit_sha": "<string>"
}
}
],
"offset": 123
}Documentation Index
Fetch the complete documentation index at: https://docs.langchain.com/llms.txt
Use this file to discover all available pages before exploring further.
Maximum number of resources to return.
1 <= x <= 100Pagination offset. Pass this value to subsequent requests to fetch the next page of resources.
x >= 0Comma separated list of revision status (CREATING, QUEUED, AWAITING_BUILD, BUILDING, AWAITING_DEPLOY, DEPLOYING, CREATE_FAILED, BUILD_FAILED, DEPLOY_FAILED, DEPLOYED, SKIPPED, INTERRUPTED, UNKNOWN) fields to filter by.
Flag to filter by remote reconciled revisions.
Was this page helpful?