Skip to content

Get Automation

Fetch a single automation by ID.

  • Method: GET
  • Path (REST): /automation/{automationId}
  • Returns: Automation
Automation automation = client.automationClient().getAutomation("auto-1").execute();
const automation = await client.automationClient.getAutomation('auto-1');
automation = client.automation_client.get_automation('auto-1')
curl -s -H "Application-Token: $GMC_APP_TOKEN" \
  https://api.gamemanager.cloud/automation/auto-1