Snapvisor Docs
API ReferenceDeployments

Get a deployment

Retrieve a single deployment by its ID.

GET
/deployments/{deploymentId}

Retrieve a single deployment by its ID.

Authorization

projectToken
AuthorizationBearer <token>

Authenticate as a project with a project token.

Send it as a bearer token in the Authorization header:

Authorization: Bearer <project-token>

You can find your project token in your Argos project settings. Project tokens are used by CI and the SDK to create builds and deployments.

In: header

Path Parameters

deploymentId*string

The deployment ID

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/deployments/string"
{  "id": "string",  "status": "pending",  "environment": "preview",  "branch": "string",  "commitSha": "string",  "url": "http://example.com",  "createdAt": "string"}