Mangools/API

Update report

Update the configuration of an existing scheduled email report — change its name, type, recipient emails list or triggers. Returns HTTP 204.

PUT
/serpwatcher/trackings/{tracking_id}/reports/{report_id}

Authorization

ApiKeyAuth
x-access-token<token>

API token issued for your Mangools account, sent as an API key in the x-access-token HTTP header. This is NOT a standard RFC 6750 Authorization: Bearer <token> header. Auto-generated clients should be configured to send the token in x-access-token accordingly.

In: header

Path Parameters

tracking_id*string

Tracking ID

report_id*string

Report ID

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X PUT "https://api.mangools.com/v3/serpwatcher/trackings/string/reports/string" \  -H "Content-Type: application/json" \  -d '{    "emails": [      "string"    ],    "name": "string",    "type": 0  }'
Empty
{
  "error": {
    "type": "AuthError",
    "message": "Invalid API Key"
  }
}