Lead Activity Type ID for a specific activity type | Community
Skip to main content
Level 1
May 25, 2022
Solved

Lead Activity Type ID for a specific activity type

  • May 25, 2022
  • 1 reply
  • 3268 views

Hi all,

 

I am not sure what board is more appropriate for this question, so please move to the right board!

 

I need to find the activityTypeId for the activityTypeName called "Change Program Member Data". We don't have any data for this type of activity but all activity types have an ID for auditing purposes. Please point me to where I can find this information.

 

These are example activityTypeName's with corresponding activityTypeId's for reference

"Add to List", 24

"Change Data Value", 13

"New Lead", 12

 

Thank you in advance. 

 

 

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Darshil_Shah1

It's 123!

You can double check the activity type id in your instance using the Describe activity type GET API call. Below is the entire JSON for the "Change Program Member Data" activity for your reference:

{ "id": 123, "name": "Change Program Member Data", "description": "Change Program Member Data", "primaryAttribute": { "name": "Program ID", "dataType": "integer" }, "attributes": [{ "name": "Attribute Display Name", "dataType": "string" }, { "name": "Attribute Name", "dataType": "integer" }, { "name": "New Value", "dataType": "mixed" }, { "name": "Old Value", "dataType": "mixed" }, { "name": "Reason", "dataType": "string" }, { "name": "Source", "dataType": "string" }] }

Hope this is helpful!

 

1 reply

Darshil_Shah1
Community Advisor and Adobe Champion
Darshil_Shah1Community Advisor and Adobe ChampionAccepted solution
Community Advisor and Adobe Champion
May 25, 2022

It's 123!

You can double check the activity type id in your instance using the Describe activity type GET API call. Below is the entire JSON for the "Change Program Member Data" activity for your reference:

{ "id": 123, "name": "Change Program Member Data", "description": "Change Program Member Data", "primaryAttribute": { "name": "Program ID", "dataType": "integer" }, "attributes": [{ "name": "Attribute Display Name", "dataType": "string" }, { "name": "Attribute Name", "dataType": "integer" }, { "name": "New Value", "dataType": "mixed" }, { "name": "Old Value", "dataType": "mixed" }, { "name": "Reason", "dataType": "string" }, { "name": "Source", "dataType": "string" }] }

Hope this is helpful!