Add whatsapp_templates.create, whatsapp_templates.update, whatsapp_templates.get, whatsapp_templates.list, whatsapp_templates.delete, verify_apps.create, verify_apps.list, verify_apps.list_templates, verify_apps.get, verify_apps.update, verify_apps.delete, rcs_capability.check, rcs_assistant_events.create, verify_session.create, messages.create, messages.list, messages.get, verify_apps.create#310
Open
Narayana Shanbhog Plivo (narayana-plivo) wants to merge 1 commit into
Open
Add whatsapp_templates.create, whatsapp_templates.update, whatsapp_templates.get, whatsapp_templates.list, whatsapp_templates.delete, verify_apps.create, verify_apps.list, verify_apps.list_templates, verify_apps.get, verify_apps.update, verify_apps.delete, rcs_capability.check, rcs_assistant_events.create, verify_session.create, messages.create, messages.list, messages.get, verify_apps.create#310Narayana Shanbhog Plivo (narayana-plivo) wants to merge 1 commit into
Narayana Shanbhog Plivo (narayana-plivo) wants to merge 1 commit into
Conversation
…mplates.get, whatsapp_templates.list, whatsapp_templates.delete, verify_apps.create, verify_apps.list, verify_apps.list_templates, verify_apps.get, verify_apps.update, verify_apps.delete, rcs_capability.check, rcs_assistant_events.create, verify_session.create, messages.create, messages.list, messages.get, verify_apps.create
- whatsapp_templates.create (POST /v1/Account/{auth_id}/WhatsApp/Template/{waba_id}/)
- whatsapp_templates.update (POST /v1/Account/{auth_id}/WhatsApp/Template/{waba_id}/{template_id}/)
- whatsapp_templates.get (GET /v1/Account/{auth_id}/WhatsApp/Template/{waba_id}/{template_id}/)
- whatsapp_templates.list (GET /v1/Account/{auth_id}/WhatsApp/Template/{waba_id}/)
- whatsapp_templates.delete (DELETE /v1/Account/{auth_id}/WhatsApp/Template/{waba_id}/{template_id}/)
- verify_apps.create (POST /v1/Account/{auth_id}/Verify/App/)
- verify_apps.list (GET /v1/Account/{auth_id}/Verify/App/)
- verify_apps.list_templates (GET /v1/Account/{auth_id}/Verify/App/templates/)
- verify_apps.get (GET /v1/Account/{auth_id}/Verify/App/{app_uuid}/)
- verify_apps.update (POST /v1/Account/{auth_id}/Verify/App/{app_uuid}/)
- verify_apps.delete (DELETE /v1/Account/{auth_id}/Verify/App/{app_uuid}/)
- rcs_capability.check (GET /v1/Account/{auth_id}/RCS/Capability/)
- rcs_assistant_events.create (POST /v1/Account/{auth_id}/RCS/AssistantEvents/)
- verify_session.create (POST /v1/Account/{auth_id}/Verify/Session/)
- messages.create (POST /v1/Account/{auth_id}/Message/)
- messages.list (GET /v1/Account/{auth_id}/Message/)
- messages.get (GET /v1/Account/{auth_id}/Message/{record_id}/)
- verify_apps.create (POST /v1/Account/{auth_id}/Verify/App/)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add whatsapp_templates.create, whatsapp_templates.update, whatsapp_templates.get, whatsapp_templates.list, whatsapp_templates.delete, verify_apps.create, verify_apps.list, verify_apps.list_templates, verify_apps.get, verify_apps.update, verify_apps.delete, rcs_capability.check, rcs_assistant_events.create, verify_session.create, messages.create, messages.list, messages.get, verify_apps.create
Base: master ← rune/pr-630-sdk-updates
Reviewers (picked by recent commit activity):
Adds the following methods:
whatsapp_templates.create()—POST /v1/Account/{auth_id}/WhatsApp/Template/{waba_id}/— Create a WhatsApp message template under the given WABA.whatsapp_templates.update()—POST /v1/Account/{auth_id}/WhatsApp/Template/{waba_id}/{template_id}/— Update an existing WhatsApp message template.whatsapp_templates.get()—GET /v1/Account/{auth_id}/WhatsApp/Template/{waba_id}/{template_id}/— Retrieve a WhatsApp template by its ID.whatsapp_templates.list()—GET /v1/Account/{auth_id}/WhatsApp/Template/{waba_id}/— List WhatsApp templates for the given WABA with optional name filter and pagination.whatsapp_templates.delete()—DELETE /v1/Account/{auth_id}/WhatsApp/Template/{waba_id}/{template_id}/— Delete a WhatsApp template by ID and name.verify_apps.create()—POST /v1/Account/{auth_id}/Verify/App/— Create a Verify application for the account.verify_apps.list()—GET /v1/Account/{auth_id}/Verify/App/— List Verify applications for an account with optional filters.verify_apps.list_templates()—GET /v1/Account/{auth_id}/Verify/App/templates/— List default Verify templates available to the account.verify_apps.get()—GET /v1/Account/{auth_id}/Verify/App/{app_uuid}/— Retrieve a Verify application by its UUID.verify_apps.update()—POST /v1/Account/{auth_id}/Verify/App/{app_uuid}/— Update a Verify application (partial update — request body must include at least one field).verify_apps.delete()—DELETE /v1/Account/{auth_id}/Verify/App/{app_uuid}/— Delete a Verify application.rcs_capability.check()—GET /v1/Account/{auth_id}/RCS/Capability/— Check if a phone number is RCS-enabled.rcs_assistant_events.create()—POST /v1/Account/{auth_id}/RCS/AssistantEvents/— Send RCS assistant events.verify_session.create()—POST /v1/Account/{auth_id}/Verify/Session/— Handle user session for generating OTP based on the request.messages.create()—POST /v1/Account/{auth_id}/Message/— Add content_message field for RCS rich content to the send message request.messages.list()—GET /v1/Account/{auth_id}/Message/— Add error_message, message_sent_time, and message_updated_time fields to the list messages response.messages.get()—GET /v1/Account/{auth_id}/Message/{record_id}/— Add error_message, message_sent_time, and message_updated_time fields to the get message response.verify_apps.create()—POST /v1/Account/{auth_id}/Verify/App/— Add number_pool field to the Verify app create request.Each method ships with a unit test, a usage example, a bumped version, and a CHANGELOG entry.