How to fetch picklist using Eloqua rest Api - eloqua

I have a form in Eloqua which I need to translate in my project. I have added checkboxes/radiobuttons and the options are used from picklist. I am able to fetch all the fields except the picklist. How can fetch the picklist using Rest Api so that I can send them out for translation?
Help is appreciated.

You can retrieve a single picklist by id using the Retrieve an option list Application API endpoint, or you can retrieve a list of picklists using the Retrieve a list of option lists Application API endpoint.

Related

how to get documents attached to a list item via graph api or sdk method?

Need to fetch this csv file from the list item via api/sdk method. Tried this api:
https://graph.microsoft.com/v1.0/sites/siteId/lists/listId/items/itemId , got the list item but not the attachments in it.
CRUD operations for list item's attachment are not supported by Graph API.
According this list item's attachment feature is in backlog.
Alternative is to use SharePoint API.
Its right as user2250152 mentioned,list items attachment is not supported by graph but you can raise a feature request here: https://techcommunity.microsoft.com/t5/microsoft-365-developer-platform/idb-p/Microsoft365DeveloperPlatform
Hope this helps.

Retrieve contact list name and members via Graph API

I'm trying to retrieve "contact lists" (distribution lists) from a Microsoft 365 account using the Graph API and direct http calls. Right now I use this URL:
https://graph.microsoft.com/v1.0/users/{userid}/contactfolders/{folderid}/contacts?$top=500&$count=true
This does retrieve the various contacts I have, but not the names of any contact lists or their members. The "count" of items that is retrieved does include those contact lists but not their actual data.
I have tried the "people" and "groups" endpoints but those retrieve different information, not what I am looking for.
I know I can use EWS for this purpose, and I have, but I'm trying to convert my existing application to 100% Graph. I would appreciate any information, thanks.
I've sent a user voice requesting for this feature: https://techcommunity.microsoft.com/t5/microsoft-365-developer-platform/fetch-contact-group-using-graph-api/idi-p/3262621
Do support if you think there's no feature currently available in Graph API to fetch contact list!

Create custom work items

I need to create a custom work item type from a build task, Is this possible with current VSTS Rest API?
I have reffered the Work items Referance, It doesn't contain info on this.
Based on the REST API document and this blog about timeline, REST API for customization is not supported now.

Eloqua- Update/Delete bulk campaigns using API

There are so many outdated information on Eloqua Bulk and REST API.However, I have found a resource which seems to be the latest one:
https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAC/index.html
I have retrieved a list of campaigns using REST API.Here is what I am trying to accomplish using REST or Bulk API: I have to retrieve a list of campaigns matching certain criteria and then make changes to a field in all campaigns, then update the list of Campaigns using BULK or REST API.
is it possible to update the list of Campaigns using Bulk or REST API?Can I delete the list of Campaigns using Bulk or REST API?
Campaigns are not exposed in the bulk API. You'll have to use the rest API and there's no support for batch updates or deletes.
I agree, the REST/Bulk documentation is weak.
Unfortunately, you can not update the list. Why ?
Bulk API:
is designed to act on primitive data (contact, account, CO, and his own metadata aka imports/exports/syncs)
Campaigns are complex data, so they are not exposed in Bulk.
REST API:
Give you access to the list of all campaigns (good news right ?)
Data can be modified in REST but only one by one
REST is not designed for mass update. Even for contacts !
The answer is no: you can not update the list of campaigns using Bulk or REST API (not without using a program doing iteration for you).

Eloqua - How to obtain 'Form Submit' activity information, including Campaign name, using BULK API

I would like to obtain 'Form Submit' activity information using the BULK API.
This link provides a list of activity fields I can specify as a part of the export definition. It includes the 'CampaignId'. I would additionally like to obtain the Campaign name associated with this CampaignId.
Is there a way to achieve this via the same BULK API export definition or do I have to make additional BULK API/REST API calls?
You would need to make an additional REST API call to retrieve the Campaign Name using the GET /assets/campaign/{id} endpoint.

Resources