You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -29,8 +29,19 @@ class SyncLookupRequest(BaseModel):
29
29
SyncLookupRequest
30
30
"""# noqa: E501
31
31
phone_numbers: List[Annotated[str, Field(strict=True)]] =Field(description="Telephone numbers in E.164 format.", alias="phoneNumbers")
32
+
rcs_agent: Optional[Annotated[str, Field(strict=True)]] =Field(default=None, description="Override the default RCS sender/agent ID used when checking RCS capabilities. When provided, this value is used as the `sender` in the RCS capability-check request instead of the account default. Must be 1–40 characters and contain only letters, digits, underscores, or hyphens.", alias="rcsAgent")
**phone_numbers** | **List[str]** | Telephone numbers in E.164 format. |
9
+
**rcs_agent** | **str** | Override the default RCS sender/agent ID used when checking RCS capabilities. When provided, this value is used as the `sender` in the RCS capability-check request instead of the account default. Must be 1–40 characters and contain only letters, digits, underscores, or hyphens. | [optional]
0 commit comments