Skip to main content
POST
/
servers
/
{namespace}
/
deployments
/
{id}
/
resume
JavaScript
import Smithery from '@smithery/api';

const client = new Smithery({
  apiKey: process.env['SMITHERY_API_KEY'], // This is the default and can be omitted
});

const response = await client.servers.deployments.resumeByNamespace('id', {
  namespace: 'namespace',
});

console.log(response.deploymentId);
{
  "status": "WORKING",
  "deploymentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}

Authorizations

Authorization
string
header
required

Smithery API key as Bearer token

Path Parameters

namespace
string
required
id
string
required

Response

Resume accepted, workflow continuing

status
string
required
Example:

"WORKING"

deploymentId
string<uuid>
required