Options for using the "provisioning-activities" API to pull provisioning logs for a campaign

I am looking for the parameters for using provisioning-activities. I do not see this API listed in the API guide.
I have found _dc, fields, sort, filters (dateCreated), offset, and limit.
What else is available.

Thanks

Hey Chris,

Are you trying to gather audit logs for provisioning activities through an API call? (to confirm I understand)

Can you please share with me the full API call for ‘provisioning-activities’ and where you found this so that I can review it and compare against other API documentation?

Thanks

Hi Jordan,
I have been able to use search to collect the data I was looking for. I pulled the API from an IDN F12 traffic trace (I think).
Here is my postman call:
{{api-url}}/v2/provisioning-activities?_dc=1626726603230&fields=full&sort=status&filters=dateCreated%20ge%20%222021-09-07T20%3A30%3A03.230Z%22&offset=430&limit=250
I was looking for failed provisioning attempts.

Thanks,
Chris

@ChrisOlsen You could try using the search API. Here are a couple examples:

Successes are under “Modify Account Passed”
Search for: attributes.interface:“Attribute Synchronization Refresh” AND attributes.provisioningResult:“Committed”

Failures are under “Modify Account Failed”
Search for: attributes.interface:“Attribute Synchronization Refresh” AND attributes.provisioningResult:“Failed”

Yes that is basically what I am using.
action:Certification AND status:Failure AND created:[now-1w TO now] AND (source.name:Source)

Thanks for the update @ChrisOlsen. Did you still need help with the provisioning-activities API, or are you good now?

Hey @ChrisOlsen Just wanted to check in with you on Colin’s question - do you still need assistance with this request?

Thanks for asking. I think we have our requirement covered by using search.