Server Side notification – new_tag_image (Webhook)

This article demonstrates how to create a webhook that will make requests to a predefined end-point whenever the event new_tag_image is emitted. This event is caused whenever a tag is applied to one or multiple images.

circle-exclamation

Create webhook

There are 2 types of web-hooks:

Call to a specific end-point URL

Configure the web-hook by filling the following values:

  1. Select the relevant Organization

  2. Select url as the Action Type.

  3. Inside the Url field enter the required endpoint.

  4. The value inside the secret field corresponds to the SharinPix Secret Header inside the POST request.

  5. The Type should be Webhooks::V2.

  6. In this case, the event to be detected should be New tag image.

  7. If you intend to emit the New tag image event when a specific tag is applied, enter the name of tag inside the Filter by tag name field.

  • Click on V2 when you are done.

Call to a static method from an Apex Class

Configure the web-hook by filling the following values:

  1. Select the relevant Organization

  2. Select apex_method as the Action Type.

  3. Inside the Class name field enter the required Apex Class.

  4. Inside the Method name field enter the method to be invoked.

  5. The Type should be Webhooks::V2.

  6. In this case, the event to be detected should be New tag image.

  7. If you intend to emit the New tag image event when a specific tag is applied, enter the name of the tag inside the Filter by tag name field.

  • Click on V2 when you are done.

Last updated

Was this helpful?