Welcome to the Motileo Rest API. This API provides access to our platform's core features and data. To get started, please request an API key by contacting us at hello@motileo.com or through our live chat at www.motileo.com. Our team is ready to assist you with your integration needs and answer any questions you may have.
https://rest.motileo.com
This section covers operations related to Activity Types within the Motileo platform. Activity Types are various tasks or actions that companies can gamify and monitor, such as 'Sales', 'Calls', and other business-related activities. These endpoints allow for the management and retrieval of these activity types, enabling companies to customize and track their unique gamification strategies.
This section covers operations related to Activities within the Motileo platform.
POST | /v1/activities |
This section covers operations related to Users within the Motileo platform.
GET | /v1/users |
This section covers operations related to Products within the Motileo platform.
GET | /v1/products |
Returns all activity types.
Authorization
The Authorization
header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE
.
1
Add multiple activities into Motileo.
Authorization
The Authorization
header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE
.
activity_type_id
The activity type ID, retrievable from the Get activity types endpoint.
activities
1
{
"activity_type_id": "sales",
"activities": [
{
"date": "2023-02-19T08:50:54.0Z",
"user_id": 1
},
{
"date": "1941-02-19T10:50:54.0Z",
"user_id": 1,
"product_id": 10,
"amount": 2000,
"description": "A brief description",
"custom_fields": {
"Verified": true
}
}
]
}
Get all users available in Motileo
Authorization
The Authorization
header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE
.
1
Get all products available in Motileo
Authorization
The Authorization
header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE
.
1