Post Bulk Activities on Opportunities
Posts bulk activities on a single opportunity.
- Specify the opportunity by passing the
OpportunityIdin the query string. You can get this by calling the Get Opportunity by Lead Id API. - You can multiple objects with
ActivityEventandActivityOwnerEmailin the JSON body, to specify the activities you want to post on the opportunity.
Notes:
- To skip validating dropdown activity fields, pass an additional parameter
"ValidateDropDownOptions" : true. This is helpful if you’re passing drop-down values stored on Mavis DB. - You can post up to 25 activities in a single call.
- The user calling this API must have access to view the associated lead and opportunity.
- You can also pass custom fields by specifying their “SchemaNames” and “Values” within the
Fieldsparameter.
API URL
URL Parameters
| Parameter | Description |
|---|---|
| opportunityId | Opportunity Id of the opportunity you want to post the activities to. |
Request
Content-Type: application/json[
{
"ActivityEvent":208,
"ActivityNote":"PAN collected",
"ActivityOwnerEmail":"sri.sudhan@example.com",
"Fields":[
{
"SchemaName":"mx_Custom_2",
"Value":"AAAAA1111A"
}
]
},
{
"ActivityEvent":102,
"ActivityNote":"Meeting completed",
"ActivityOwnerEmail":"sri.sudhan@example.com"
}
]
Request Parameters
| Parameter | Description |
|---|---|
| ActivityEvent | Activity event code. This is a mandatory field. To obtain the activity event code, navigate to My Profile>Settings>Leads>Activities and Scores>Custom Activities and Scores. Against the Display Name, you’ll find the Code. |
| ActivityNote | The activity note you want to post. |
| ActivityOwnerEmail | Email Id of the activity owner. This is a mandatory field. |
| Fields | The activity fields you want to update. Pass the fields as attribute-value pairs, by mentioning the “Schema Names” and the values for it. To find the “Schema Names” to a custom activity, navigate to My Profile>Settings>Leads>Activities and Scores>Custom Activities & Scores . Against the activity type, click the |
Response
{
"Response":[
{
"ProspectActivityId":"c965269e-754c-4c4f-9b75-714ae56aa4af",
"RowNumber":1,
"ActivityCreated":true
},
{
"ProspectActivityId":"dbeeedbc-4fbd-4547-a7bf-04a940dd82e6",
"RowNumber":2,
"ActivityCreated":true
}
]
}
HTTP Response Codes
| Code | Description |
|---|---|
| 200 OK | This is the status code for successful API call. |
| 401 Unauthorized | The API call was made with invalid access credentials. Check your AccessKey and SecretKey. |
| 400 Bad Request | The message body on the request is not as per API specification. Make sure that content type is set to “application/json” and the JSON body has correct attribute names and structure. |
| 404 Not Found | The API could not be found. Please check the API signature. |
| 429 Too Many Requests | API calls exceeded the limit of 25 in 5 second(s) |
| 500 Internal Server Error | The API called failed. There could be many reasons for it. Check the exception message to get more details. |

