In order to use the weavix REST API, this must be enabled on your instance. To have this feature enabled please reach out to customer support at help@weavix.com
The weavix REST API is a web service that follows the principles of the REST architectural style. It enables communication between a client (such as a web application, mobile app, or any other software) and a server by using HTTP protocols and standard web technologies.
The REST APIs is designed to be stateless, meaning that each request from the client to the server contains all the necessary information to understand and process the request. The server responds with the requested data or performs the requested action, and the client handles the received response accordingly.
Getting Started
Generate an API Key
In order to use the weavix REST API, you will need to generate an API key for your instance.
- Navigate to https://console.weavix.com
- On the left navigation panel, click API Keys under Configuration (If you do not see this option, please contact your weavix administrator for permission)
- Click the Add API Key Button
- Enter a name for the API Key. This can be anything but will help identify the purpose of the API Key. We recommend creating a unique API key for each integration.
- Copy the Secret and Authorization that is created. Be sure to save these in a secure place as they will not be presented again.
- Click the X button on the upper right of the modal.
Authorization
To authorize a call, pass the Authorization token that was generated for you in the header of the request.
curl -X GET -H "Authorization: YOUR_AUTHORIZATION" https://api.weavix.com/v1/core/people
API Documentation
For documentation on weavix APIs, check out weavix Rest API Documentation.