GET
/
project
/
update-status
/
{statusId}
curl --request GET \
  --url https://api.mintlify.com/v1/project/update-status/{statusId} \
  --header 'Authorization: Bearer <token>'
{
  "_id": "<string>",
  "projectId": "<string>",
  "createdAt": "<string>",
  "endedAt": "<string>",
  "status": "queued",
  "summary": "<string>",
  "logs": [
    "<string>"
  ],
  "subdomain": "<string>",
  "screenshot": "<string>",
  "screenshotLight": "<string>",
  "screenshotDark": "<string>",
  "author": "<string>",
  "commit": {
    "sha": "<string>",
    "ref": "<string>",
    "message": "<string>",
    "filesChanged": {
      "added": [
        "<string>"
      ],
      "modified": [
        "<string>"
      ],
      "removed": [
        "<string>"
      ]
    }
  },
  "source": "internal"
}

FAQ

How do I log in to Mintlify using Google Auth?

To log in to Mintlify using Google Authentication:

  1. Navigate to the Mintlify login page
  2. Click on the “Sign in with Google” button
  3. You’ll be redirected to Google’s authentication page
  4. Enter your Google account credentials (email and password)
  5. If prompted, complete any two-factor authentication steps
  6. Grant permission for Mintlify to access your Google account information
  7. You’ll be automatically redirected back to Mintlify and logged in

Note: Make sure you’re using a Google account that has been granted access to your Mintlify workspace. If you encounter any issues, contact your workspace administrator.

Troubleshooting:

  • Clear your browser cache and cookies if you experience login issues
  • Ensure third-party cookies are enabled in your browser
  • Try using an incognito/private browsing window
  • Contact support if you continue to experience authentication problems

Authorizations

Authorization
string
header
required

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

Path Parameters

statusId
string
required

The status ID of a triggered update.

Response

200 - application/json

A successful response

The response is of type object.