Webhook Triggers

Definition

On the trigger tab for every Vessel and Fleet, you are provided with a section for creating and managing Webhook triggers.

Webhook triggers enable you to programmatically execute a Vessel or Fleet in Shipyard by running a POST request from any service. When you run the POST request, your Vessel or Fleet will be scheduled to run immediately.

When a webhook has been created, you will be given 3 options:

  • Copy the entire webhook to your clipboard

  • Replace the current webhook URL with a new webhook URL

  • Remove the webhook URL from existence

Executing a Webhook

Webhooks can be used by running a POST request against the provided webhook URL. For the examples below, substitute <WEBHOOK_URL> with your own URL.

First, install the Requests library by running pip install requests

Next, open up Python in your terminal window by typing python or python3

Finally, run the following python code:

import requests

r = requests.post('<WEBHOOK_URL>')
r.status_code
r.json()

Webhook Status Codes

No matter which language or service you use to run the POST request, you will see the following status codes returned.

201 - Created Successfully

When your POST request returns a status code of 201, your entity has been successfully scheduled. Depending on which entity was run, you'll see a slightly different JSON response that includes multiple relevant Shipyard IDs.

{
   "data" : {
      "org_id" : "2d52c575-989e-4642-bc63-c63408ee3fd8",
      "voyaged_id" : "88fab44e-2fa4-4e98-b91c-d5116bebf40c",
      "project_id" : "2caa1d4e-3054-40c1-82f1-50d7fa83fac2",
      "vessel_id" : "bbc31c05-557a-448b-bdd1-6f595213ddcd"
   },
   "request" : {
      "id" : "7ea6d061-e1d2-4b7d-9016-97af39a0f815"
   }
}

With this status code, you'll receive back IDs for the element you ran, alongside a unique request ID.

400 - Bad Requests

When your POST request returns a status code of 400, your request has failed. This is usually due to a webhook URL that is malformed or no longer exists. You'll see the following JSON response returned alongside this status code.

{
   "request" : {
      "id" : "1af80dfc-e1b7-459f-9921-e5cb9e08b684"
   },
   "data" : null
}

Screenshots

View on the Triggers tab when there are no webhooks.
View on the Triggers tab when a webhook has been created.

Limitations

  1. Webhooks only allow you to immediately run a Vessel or a Fleet in a programmatic manner. They do not currently support the passing of variables.

  2. Each Vessel or Fleet can only have one webhook associated to it.

  3. Vessels may not run instantaneously, as there is still time associated with entering a job queue, spinning up servers, and installing any packages provided in Requirements.

Last updated

Was this helpful?