Mailmus

Content check

POST
/projects/{projectId}/content-check
AuthorizationBearer <token>

In: header

Path Parameters

projectId*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/projects/string/content-check" \  -H "Content-Type: application/json" \  -d '{    "html": "<p>Hi {{first_name}}!</p>"  }'
{  "severity": "INFO",  "findings": [    {      "id": "string",      "severity": "INFO",      "message": "string"    }  ]}