Webhook ändern
Mit dieser Methode können Sie einen Webhook aktualisieren.
PUT
/webhook/:id
Abfrage-Parameter
id
notwendig
|
Webhook ID |
Body-Parameter
type
notwendig
|
Art des Webhooks (MO / DLR / STOP / CLICKER) |
url
notwendig
|
URL des Webhooks |
signature | You can create a secret signature so we can sign the webhook requests with that secret in the header X-SMSFactor-Signature |
Beispiele
PUT /webhook/66 HTTP/1.1
Host: api.smsup.ch
Authorization: Bearer your.token
Accept: application/json
{
"webhook":{
"type": "STOP",
"url": "https://mywebhook.com/stop",
"signature": "mysignature123"
}
}
PUT /webhook/66 HTTP/1.1
Host: api.smsup.ch
Authorization: Bearer your.token
Accept: application/xml
<?xml version="1.0" encoding="UTF-8"?>
<webhook>
<type>STOP</type>
<url>https://mywebhook.com/stop</url>
</webhook>
Ergebnisformat
{
"status": 1,
"message": "OK",
"webhook": {
"webhook_id": "66",
"type": "STOP",
"url": "https://mywebhook.com/stop"
"status": "live",
"signature": "mysignature123",
}
}
<?xml version="1.0" encoding="UTF-8"?>
<response>
<status>1</status>
<message>OK</message>
<webhook>
<webhook_id>66</webhook_id>
<type>STOP</type>
<url>https://mywebhook.com/stop</url>
<status>live</status>
<signature>mysignature123</signature>
</webhook>
</response>
IP-Adressen unserer Server:
Möglicherweise müssen Sie Anfragen von unseren Servern in Ihrer Firewall zulassen. Hier finden Sie die Liste der IP-Adressen unserer Server:
- 51.159.7.123
- 51.159.21.54