Skip to main content
POST
https://api.owem.com.br
/
v4
/
i
/
webhooks
/
config
/
{configId}
/
activate
Activate Webhook
curl --request POST \
  --url https://api.owem.com.br/v4/i/webhooks/config/{configId}/activate \
  --header 'Authorization: <authorization>'
{
  "requestId": "1284734e-0c44-4258-8fb1-0071576c2a93",
  "success": true,
  "size": 1,
  "data": {
    "message": "Webhook config ativada com sucesso"
  }
}

Purpose

Allows reactivating a previously deactivated webhook configuration. After activation, configured events resume being sent normally to the target URL.

Authentication

Authorization
string
required
Basic Auth required in format: Basic {Base64(API_KEY:API_SECRET)}

Path Parameters

configId
string
required
Unique identifier of the webhook configuration to be reactivated

Response

requestId
string
UUID for tracking
success
boolean
Operation status
size
number
Number of returned items
data
object
{
  "requestId": "1284734e-0c44-4258-8fb1-0071576c2a93",
  "success": true,
  "size": 1,
  "data": {
    "message": "Webhook config ativada com sucesso"
  }
}

Status Codes

HTTPDescription
200Webhook activated
401Invalid credentials
403IP not allowlisted
404Configuration not found
500Internal error
Use activate/deactivate to temporarily pause event receiving without losing the configuration.