Skip to main content
POST
/
servers
/
{namespace}
/
{server}
/
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.resume('id', {
  namespace: 'namespace',
  server: 'server',
});

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
server
string
required
id
string
required

Response

Resume accepted, workflow continuing

status
string
required
Example:

"WORKING"

deploymentId
string<uuid>
required