Overview
GET/me/communication-settingssettings

The caller's communication/presence dial (saved row, or the open defaults)

List communication-settings.

Auth: bearerAuth — calls run as the authenticated user.

Responses
200

The communication dial

  • dmAudienceMaskinteger

    AUDIENCE bitmask of who may DM the user (0 = nobody; default PUBLIC|HUB = 3)

  • presenceAudienceMaskinteger

    AUDIENCE bitmask of who may see the user presence (0 = nobody; default PUBLIC|HUB = 3)

  • appearOfflineboolean

    When true, presence is hidden from EVERYONE regardless of the mask

Example
{
  "dmAudienceMask": 0,
  "presenceAudienceMask": 0,
  "appearOffline": true
}
401

Error

  • erroroptionalobject
Example
{
  "error": {
    "message": "string",
    "code": "string"
  }
}
Code examples
cURL
curl -X GET "https://api.agenticdeveloperhub.com/me/communication-settings" \
  -H "Authorization: Bearer YOUR_TOKEN"
JavaScript
const res = await fetch("https://api.agenticdeveloperhub.com/me/communication-settings", {
  method: "GET",
  headers: {
    "Authorization": "Bearer YOUR_TOKEN"
  },
});
const data = await res.json();