@@ -88,17 +88,19 @@ export interface ProfileSettings {
8888 */
8989export interface MeRetrieveResponse {
9090 /**
91- * The response data (null if error)
91+ * Account response for GET /v3/me endpoint. Returns organization (with profiles),
92+ * user (standalone), or profile (child of an organization) data depending on the
93+ * API key type. Always includes messaging channel configuration.
9294 */
9395 data ?: MeRetrieveResponse . Data | null ;
9496
9597 /**
96- * Error details (null if successful)
98+ * Error information
9799 */
98100 error ?: WebhooksAPI . APIError | null ;
99101
100102 /**
101- * Metadata about the request and response
103+ * Request and response metadata
102104 */
103105 meta ?: WebhooksAPI . APIMeta ;
104106
@@ -110,7 +112,9 @@ export interface MeRetrieveResponse {
110112
111113export namespace MeRetrieveResponse {
112114 /**
113- * The response data (null if error)
115+ * Account response for GET /v3/me endpoint. Returns organization (with profiles),
116+ * user (standalone), or profile (child of an organization) data depending on the
117+ * API key type. Always includes messaging channel configuration.
114118 */
115119 export interface Data {
116120 /**
@@ -119,7 +123,8 @@ export namespace MeRetrieveResponse {
119123 id ?: string ;
120124
121125 /**
122- * Messaging channel configuration
126+ * Messaging channel configuration. All three channels are always present. Each
127+ * channel has a "configured" flag; configured channels expose additional details.
123128 */
124129 channels ?: Data . Channels ;
125130
@@ -160,7 +165,7 @@ export namespace MeRetrieveResponse {
160165 profiles ?: Array < Data . Profile > ;
161166
162167 /**
163- * Profile settings (only for profile type)
168+ * Profile configuration settings
164169 */
165170 settings ?: MeAPI . ProfileSettings | null ;
166171
@@ -184,28 +189,30 @@ export namespace MeRetrieveResponse {
184189
185190 export namespace Data {
186191 /**
187- * Messaging channel configuration
192+ * Messaging channel configuration. All three channels are always present. Each
193+ * channel has a "configured" flag; configured channels expose additional details.
188194 */
189195 export interface Channels {
190196 /**
191- * RCS channel (provider: vibes)
197+ * RCS channel configuration. When configured, includes the RCS phone number.
192198 */
193199 rcs ?: Channels . Rcs ;
194200
195201 /**
196- * SMS channel (providers: telnyx, sinch)
202+ * SMS channel configuration. When configured, includes the sending phone number.
197203 */
198204 sms ?: Channels . SMS ;
199205
200206 /**
201- * WhatsApp Business channel (provider: meta)
207+ * WhatsApp Business channel configuration. When configured, includes the WhatsApp
208+ * phone number and business name.
202209 */
203210 whatsapp ?: Channels . Whatsapp ;
204211 }
205212
206213 export namespace Channels {
207214 /**
208- * RCS channel (provider: vibes)
215+ * RCS channel configuration. When configured, includes the RCS phone number.
209216 */
210217 export interface Rcs {
211218 /**
@@ -220,7 +227,7 @@ export namespace MeRetrieveResponse {
220227 }
221228
222229 /**
223- * SMS channel (providers: telnyx, sinch)
230+ * SMS channel configuration. When configured, includes the sending phone number.
224231 */
225232 export interface SMS {
226233 /**
@@ -235,7 +242,8 @@ export namespace MeRetrieveResponse {
235242 }
236243
237244 /**
238- * WhatsApp Business channel (provider: meta)
245+ * WhatsApp Business channel configuration. When configured, includes the WhatsApp
246+ * phone number and business name.
239247 */
240248 export interface Whatsapp {
241249 /**
0 commit comments