-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Difficulty finding ADDRESS_SID starting with IG #34
Comments
You should be able to see the ADDRESS_SID when you log in the Twilio console for the flex account >> Click on Flex >> Click on Manage >>click on on Messaging. The UI should display the current address types and SIDs. By default, it shows the SMS address. To see the chat ADDRESS _SID, click on the "Filter By Address type" dropdown and select the chat option. You should be able to see your chat ADDRESS _SID there. Alternatively you can also use the API call below to retrieve it: |
Might be nice to add this to the readme |
Console does not display address sid. It only display address. You need to issue the REST API command to list all addresses then find the sid corresponding to the address from the console. This will give you a json of all the addresses configuered in Flex->manage->messaging curl -X GET "https://conversations.twilio.com/v1/Configuration/Addresses?PageSize=20" Find the sid corresponding to the chat address. In case of SMS, the address is the phone number. |
The documentation is not clearly explaining where to get the ADDRESS_SID
The text was updated successfully, but these errors were encountered: