Settings API
Read and set the outreach sender address for your MisarReach account — api.misar.io/reach/api/settings.
Account-level settings for outreach. Today this family manages the sender address used on outbound email.
Base URL: https://api.misar.io/reach/api · Auth: Authorization: Bearer mrk_…
Response bodies on the developer contract are open-form — the examples below show representative fields.
Get sender address
/api/settings/sender-addressReturns the currently configured sender address (and verification state). Required scope: settings:read.
curl https://api.misar.io/reach/api/settings/sender-address \
-H "Authorization: Bearer mrk_your_key_here"{ "senderAddress": "sales@acme.com", "verified": true }Set sender address
/api/settings/sender-addressSets the outreach sender address. Required scope: settings:write.
Request body
senderAddressstringbodyrequiredThe from-address for outbound outreach. Must be a verifiable address on a domain you control.
curl -X PUT https://api.misar.io/reach/api/settings/sender-address \
-H "Authorization: Bearer mrk_your_key_here" \
-H "Content-Type: application/json" \
-d '{ "senderAddress": "sales@acme.com" }'{ "ok": true, "senderAddress": "sales@acme.com", "verified": false }Email delivery itself is handled by MisarMail — MisarReach never sends SMTP directly. See Cross-product contracts for how sends are gated by your MisarMail plan.
Status codes
| Code | Meaning |
|---|---|
200 | Sender address returned or updated |
403 | Missing settings:read / settings:write scope |
422 | Invalid sender address |
See Errors.