Add whatsapp_templates.create, whatsapp_templates.update, verify_apps.create, verify_apps.list, verify_app_templates.list, verify_apps.get, verify_apps.update, verify_apps.delete#309
Closed
Narayana Shanbhog Plivo (narayana-plivo) wants to merge 1 commit into
Conversation
….create, verify_apps.list, verify_app_templates.list, verify_apps.get, verify_apps.update, verify_apps.delete
- 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}/)
- verify_apps.create (POST /v1/Account/{auth_id}/Verify/App/)
- verify_apps.list (GET /v1/Account/{auth_id}/Verify/App/)
- verify_app_templates.list (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}/)
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, verify_apps.create, verify_apps.list, verify_app_templates.list, verify_apps.get, verify_apps.update, verify_apps.delete
Base: master ← rune/pr-629-sdk-updates
Reviewers (picked by recent commit activity):
Adds the following methods:
whatsapp_templates.create()—POST /v1/Account/{auth_id}/WhatsApp/Template/{waba_id}/— Add optional application_id field to the WhatsApp template create request.whatsapp_templates.update()—POST /v1/Account/{auth_id}/WhatsApp/Template/{waba_id}/{template_id}/— Add optional application_id field to the WhatsApp template update request.verify_apps.create()—POST /v1/Account/{auth_id}/Verify/App/— Create a new Verify App for OTP delivery with optional channel and configuration settings.verify_apps.list()—GET /v1/Account/{auth_id}/Verify/App/— List Verify Apps owned by the account with optional filtering and pagination.verify_app_templates.list()—GET /v1/Account/{auth_id}/Verify/App/templates/— List available SMS OTP templates for the account including account-owned and Plivo system defaults.verify_apps.get()—GET /v1/Account/{auth_id}/Verify/App/{app_uuid}/— Retrieve details of a specific Verify App by its UUID.verify_apps.update()—POST /v1/Account/{auth_id}/Verify/App/{app_uuid}/— Partially update a Verify App; only fields included in the request body are modified.verify_apps.delete()—DELETE /v1/Account/{auth_id}/Verify/App/{app_uuid}/— Soft-delete a Verify App by its UUID.Each method ships with a unit test, a usage example, a bumped version, and a CHANGELOG entry.