Making Requests

Use standard REST HTTP verbs, GET, POST, PUT, DELETE, and PATCH, to interact with platform API resources. For developers passing arguments as params, form data, or JSON.

As per RESTful design patterns, Communications Platform API implements HTTP verbs:

  • GET - Read resources

  • POST - Create new resources

  • PUT - Modify existing resources

  • DELETE - Remove resources

  • PATCH - Update existing resources

When making requests, arguments can be passed as params, form data or JSON with the correct Content-Type header.