Variable | Type | Description |
---|---|---|
list_id | string|int | The ID of the list to which belong the subscribers whose props are to be updated |
subscribers | struct | A key / value array with items, the key is the subscriber_id (numeric id or email) and the value is an array with props to update. Each prop item is a key / value array (the key is the prop name). A maximum of 200 subscribers are allowed, each having a maximum of 20 props. |
Parameter | Description |
---|---|
boolean | True if the update has succeeded, False otherwise |
true
Code | Message | Description |
---|---|---|
407 | Missing required param list_id | list_id param is required |
407 | Missing required param subscribers | subscribers param is required |
101 | Not allowed for list_id = %s | Invalid access to subscriber list_id |
129 | Not allowed for subscriber with ID: %s | Invalid access to subscriber ID |
108 | List %s has been deleted | List ID belongs to a list which has been deleted |
121 | Could not load subscriber | The subscriber was not found |
124 | %s / Could not update prop: %s | The property %s could not be updated |
{ "err": true, "message": "Missing required param list_id", "code": 407 }
{ "err": true, "message": "Missing required param subscribers", "code": 407 }
{ "err": true, "message": "Not allowed for subscriber with ID: 427001", "code": 129 }