Variabila | Tip | Descriere |
---|---|---|
list_id | int|string | ID-ul listei pe baza căreia va fi identificat contul SMTP |
string | Emailul pentru care să se scoată status-ul de reject | |
reject_types | string|array | Status-urile de reject care să fie scoase. Poate fi string-ul ALL (pentru toate tipurile de reject) sau un array conținând una sau mai multe din: unsub, spam, bounce, hardbounce |
account_id | string|boolean | ID-ul unui anumit cont SMTP în care să se scoată status-ul de reject pentru email (opțional). |
Parametru | Descriere |
---|---|
struct | dict conținând cheile: user_id (string), removed(boolean), accounts (array), email (string) |
{ "user_id": "myuser", "removed": true, "accounts": [ "my_account_1", "my_account_2" ], "email": "john.doe@example.com" }
Cod | Mesaj | Descriere |
---|---|---|
407 | Missing required param list_id | Parametrul list_id este obligatoriu |
101 | Not allowed for list_id = %s | Acces nepermis la list_id |
17001 | Invalid message | Valoarea parametrului message este invalidă |
17003 | Could not find the SMTP account | Nu a fost găsit contul SMTP |
17004 | The SMTP account is inactive | Contul SMTP este inactiv |
17021 | The email reject status could not be removed: [error_reason] | Status-ul de reject pentru email nu a putut fi scos |
17020 | Invalid reject type | Status-ul de reject este invalid |
{ "err": true, "message": "Missing required param list_id", "code": 407 }
{ "err": true, "message": "Could not find the SMTP account", "code": 17003 }
{ "err": true, "message": "The SMTP account is inactive", "code": 17004 }
{ "err": true, "message": "Invalid reject type", "code": 17020 }
{ "err": true, "message": "The email reject status could not be removed: [error_reason]", "code": 17021 }