Supametas.AI
Official website
English
English
  • Welcome to Supametas.AI
  • Cloud Service
    • Supametas.AI Cloud Service
      • Detailed Pricing Comparison
    • Guide
      • Create Dataset
      • Import Metadata
        • Fetching webpage data
        • Importing local text processing
        • Importing local image processing
        • Importing local audio processing
        • Importing local video processing
      • Cleaning data query
      • Export Cleaned Data
      • Dataset Configuration
  • Developer
    • Integration Process
    • Create API Key
    • Standard Request and Response
    • API
      • Import Text File
      • Import Web Page Task
      • Import Image Files
      • Import Audio Files
      • Import Video Files
      • View Import Task Details
      • Delete File Processing Task
    • Webhook
    • Error Code
    • Demo
  • Other
    • Community
    • Technical Support
Powered by GitBook
On this page
  1. Developer

Webhook

Supametas.ai pushes data to the Webhook address set by the user, and the integrated application can automatically trigger responses based on the events.

A webhook is a mechanism through which the Supametas.ai data platform automatically sends an HTTP request (mainly POST) to a target system when specific events are triggered. When integrating with Supametas.ai, you may want your application to receive a notification whenever certain actions are taken on the platform. This allows your application to perform follow-up tasks automatically based on the data received from Supametas.ai.

The Supametas.ai platform requires the target webhook to meet the following requirements:

① The request method must be POST.

② The URL must use HTTPS.

③ Ensure the URL is accessible by the Supametas.ai server.

④ No suffix parameters should be attached to the URL.

Callback URL Example:https://www.yourdomain.com/api/put


Endpoint: POST: {{BaseUrl}/set-webhook

Request body:

{ 
  "url": "http://yourdomain.com/api/put"
}

Response:

{
  "optResult": "success"
}

Request:

Parameter
Type
Required
Description

url

STRING

YES

Webhook URL address

Response:

Parameter
Type
Description

optResult

STRING

Result

PreviousDelete File Processing TaskNextError Code

Last updated 4 months ago