Productsup

Save async feedback config to local filesystem.

POST
/async-feedback-config

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://loading/async-feedback-config" \  -H "Content-Type: application/json" \  -d '{    "connector-config": {      "name1": "value1",      "name2": "value2"    },    "service-config": {      "name3": "value3",      "name4": {        "key1": "value4",        "key2": "value5"      }    }  }'
{
  "message": "Async feedback config saved successfully."
}
{
  "message": "Validation failed",
  "errors": {
    "connectorConfig": "This value should not be blank."
  }
}

How is this guide?