Are there REST APIs to retrieve entity metadata for  eloqua objects?

There is a list of all the objects which can be accessed by REST for CRUD in this link: REST API - Documentation for Core Objects under the Core Objects section.
For each of the objects listed under the  Core Objects section are there is a field metadata under the Properties section.
For example for Email object, REST API - Accessing Emails , under the Properties section, there corresponding entries for fields of Emails object under the
Name ,Type, Description and Validations headings.
Is there a REST API for retrieving the same information i.e. the field metadata for an eloqua object programmatically ?
If not , it is a serious hindrance to building systems that are metadata driven and also since SOAP support is being deprecated...

Metadata is 'top level' information on the object, and available whether you query the individual object (a single form, or email asset) or query for multiple objects of that type (list all forms, list all emails). Consider using a depth of minimal or partial for faster performance if the specific configuration of those objects is not important..
Example:
GET /assets/forms?depth=minimal&count=2
Returns:
  "elements":
    "type":"Form",
    "currentStatus":"Draft",
    "id":"19",
    "createdAt":"1409623550",
    "createdBy":"8",
    "depth":"minimal",
    "folderId":"7",
    "name":"zzztestCS_3-9381543541_AutocompleteTest",
    "permissions":"fullControl",
    "updatedAt":"1409623623",
    "updatedBy":"8"
    "type":"Form",
    "currentStatus":"Draft",
    "id":"22",
    "createdAt":"1409781207",
    "createdBy":"11",
    "depth":"minimal",
    "folderId":"466",
    "name":"daisychain1",
    "permissions":"fullControl",
    "updatedAt":"1412779449",
    "updatedBy":"20"
  "page":1,
  "pageSize":2,
  "total":130
Without limiting the count to 2, this would return up to 1000 results if you had multiple forms in your system and give you a basic top level view of each. Similarly, you can use GET /assets/form/{id}?depth=minimal to get the same sort of information.
Other endpoints can be found on the REST livedocs page here (requires authentication):
https://secure.eloqua.com/api/docs/Dynamic/Rest/1.0/Reference.aspx
Regards,
Bojan

Similar Messages

  • How to get Client IP address in oracle apps. Are there any API's.

    hi,
    I have one query
    ->How to get Client IP address in oracle apps. Are there any API's.
    regards,
    krishna

    Hi,
    this is very usefull
    however are this data stored on the db or is only a temporary view?
    I would like to have to keep track of all client connected.
    Thanx a lot

  • Are there any APIs to load FND and other objects

    Hi
    We are having HR2HR configured and running between EBS R12.1.3 and Fusion. But the HR2HR does not bring in data in EBS like in Descriptive Flex Fields (DFF), User Defined Tables (UDT), Extra Information Types (EIT) & Lookups. How can we bring in this data in to Fusion. Are there any APIs? If not what is the Support model from Oracle if we are directly updating the tables?
    Thanks!
    Srinivasa Sunchu

    Happy Camper: Based on doc 1482027.1 in support system:
    DFF is not currently supported by HR2HR.An Enhancement Request (ER) has been logged to request this functionality:
    ER: Bug 12883914 - ER REQUEST - DFF FLEXFIELDS AND EIT'S NEED TO BE INCLUDED IN THE HR2HR AND INTER
    >
    For alternatives and the Support model I do not have answer, will reach out to try to find out.
    Kiran: This is an external forum, so the readers would not have access to internal documentation. Are the HCM scripts available externally i.e. through the support system? If not are there plans for providing them externally ?
    Jani Rautiainen
    Fusion Applications Developer Relations
    https://blogs.oracle.com/fadevrel/

  • Why are there only 10 options under "Set Metadata Format"?

    Why are there only 10 options under "Set Metadata Format"?
    These are:
    Caption
    Title
    Filename
    Author
    Copyright
    Comments
    Keywords
    Date/Time
    Aperture
    Shutter Speed
    Has anyone found a way to to change this?

    Hi.
    Can you find the "Comments" field into the Metadata? Because I don't find it and when I write something in the box Aperture tells me that the box is "unlink" from the metadata...
    How can I add a (free) comment to my photos in a book?
    Thank you very much for your reply
    Bye

  • HT201356 I have accidentally deleted my alternate iCloud (email) address. Are there any possibilities to retrieve it back because my iPad is connected to that email address, and now, I can't log out from it on my iPad, because it doesn't exist?

    I have accidentally deleted my alternate iCloud (email) address. Are there any possibilities to retrieve it back because my iPad is connected to that email address, and now, I can't log out from it on my iPad, because it doesn't exist.
    I have alternate icloud email attached to my iPad and I accidentally delete it from appleid.apple.com. And now I can't log out that iCloud account because it doesn't exist and it can't recognize my password.

    If you mean that Find My Phone is asking for a password to a different Apple ID to your current Apple IDand that ID is a previous version of your current ID, not an entirely different one.
    This feature has been introduced to make stolen phones useless to those that have stolen them.
    However it can also arise when the user has changed their Apple ID details with Apple and not made the same changes to their iCloud account/Find My Phone on their device before upgrading to iOS 7, or if you restore from a previous back up made before you changed your details and some other circumstances.
    The only solution is to change your Apple ID back to its previous state with Apple at My Apple ID using your current password, you don’t need access to this address if it’s previously been used with your Apple ID, once you have saved these details enter the password as requested on your device and then turn off "find my phone" and delete the account from your device. It may take a short while to remove the account.
    You should then change your Apple ID back to its current state, save it once again and then log back in using your current Apple ID. Finally, turn "find my phone" back on once again.
    This article provides more information about Activation Lock.

  • Any java API to get the metadata for a deployed bpel process in soa/bpm11g?

    Hi,
    Just wonder if this is possible, that there is some existing java api to retrieve the metadata (containing activities, isSynchrous, version information etc) for a deployed bpel process? If not, is there any other way to achieve this goal ( or example query database table directly)?
    I can only find this link for soa11g java api. I am able to invoke the bpel process using this API(direct binding) from java client.
    http://download.oracle.com/docs/cd/E14571_01/apirefs.1111/e10659/index.html?overview-tree.html
    Any help will be greatly appreciated.
    Thanks,
    Bin

    What I find so far:
    1. can get some process property values from ComponentInstance class, see its api.
    http://download.oracle.com/docs/cd/E14571_01/apirefs.1111/e10659/oracle/soa/management/facade/ComponentInstance.html
    Please refer http://blogs.oracle.com/soabpm/2009/07/soa_suite_11g_api_tricks_part.html of how to get the component instance (contain the bpel process) from a composite object
    2. in dev_soainfra database schema, the CUBE_INSTANCE table contains most of soa bpel components information. The BPM_CUBE_PROCESS table seems to contain only the process defined in a bpm application. This sounds a little confused, if we want to develop a bpel application, should it be put in soa or bpm application and what is the difference?
    Please feel free to correct any mistakes here.

  • Are there benefits to the Blackmagic Intensity Pro for HDV capture ?

    Are there benefits to the Blackmagic Intensity Pro for HDV capture ? 
    I have a Sony HDR-FX1 that records in HDV 1440 x 1080 
    I have already captured the footage to miniDV tape. 
    Can the intensity card get the full 1920 x 1080 video ? 
    I now use Premiere to capture my video and my HDV is in mpeg2 and my SD is in DV type 2 AVI 
    What format does the intensity card capture at ? 
    Are there other ways to capture that would make the footage better. 
    From what I have read allot of people have had problems with these cards. 
    Im just looking for the best way to get the footage off my camera with the best resolution. 
    Thanks:  Glenn 

    Glenn,
    I have posted this before in the PC Buying Guide (post #23 and later), but have a look at this diagram:
    The problem is that once recorded to tape, the material is compressed to MPEG and there is no way to get the data back, that were lost during compression. The only thing you achieve is that you lose device control, lose all timecode information, lose all metadata like date and timestamp and exposure data and lose the capability of scene detection. There are no gains to compensate the losses.
    Compare it to a glass of orange juice, that was made by heavily compressing oranges. How do you think you can reconstruct the original oranges that the juice came from? Were there 4 large oranges or 6 small ones or a mixture? Were they light colored or were they dark or a mixture of light and dark?
    BlackMagic in their marketing may lead you to believe otherwise, but the truth is they can only guess at how many oranges were used, their size and color. It is nothing more than a guess.

  • Are there any information gathering tools or scripts for Sun VDI 3.1.1?

    Hi,
    Are there any information gathering tools or scripts for Sun VDI 3.1.1?
    for problem reporting or service supportting , such as
    ut_gather, a ksh based tool to collect all Sun Ray related information from a Sun Ray server.
    http://www.sun.com/bigadmin/jsp/descFile.jsp?url=descAll/ut_gather_1_4_6
    http://www.sun.com/service/gdd/index.xml
    Sun Explorer Data Collector in The Sun Services Tools Bundle (STB)
    http://www.sun.com/service/stb/index.jsp
    http://www.unix-consultants.co.uk/examples/scripts/linux/linux-explorer/
    http://www.slideshare.net/Aeroplane23/information-gathering-2
    Windows MPSreports, msinfo32
    Redhat sysreport
    Suse Siga reportconfig
    Any advice would be appreciated.
    Thanks,

    ut_gather versions are available on MOS under reference #1260464.1

  • What 3rd party companies are there that offer a photo printing service for ipad2 users? I suppose I am looking for a similar service to iPhoto on the MacBook pro but so far I've had no joy. I'm uk based.

    What 3rd party companies are there that offer a photo printing service for ipad2 users? I suppose I am looking for a similar service to iPhoto on the MacBook pro but so far I've had no joy. I'm uk based.

    Are these the kind of thing you're looking for:
    http://itunes.apple.com/us/app/lifepics/id323705153?mt=8
    http://itunes.apple.com/us/app/walgreens-for-ipad/id430444027?mt=8
    Matt

  • Are there any new All-in-one printers for sale that use the CLI-221 cartridges?

    We have a MX870 Printer that needs to be replaced but new cartridges were just purchased from Canon.  Are there any new All-in-one printers for sale that use the CLI-221 cartridges?
    Thanks,
    Margaret

    The MX922 (known as the MX926 in Australia) is supported by 10.10 and Windows 7. Whatever site you were looking at may not have updated their details. Here is a link from the Canon Australia web site showing the drivers and applications for this model for 10.10.

  • Are there any magazines with articles and tips for Encore - English language

    Are there any magazines with articles and tips for Encore - English language

    The very best "chronicle" on Encore that I can come up with is Jeff Bellune's Focal Easy Guide to Adobe EncoreDVD 2.0, Focal Press. It was written for EncoreDVD 2.0, but everything in it applies to CS4. Now, as of CS4, Adobe Dynamic Link to PrPro has been greatly improved and strengthened, and that part will have to come from the Help files. The book is still the best resource for 99% of Encore, and I highly recommend it. You will not be disappointed. It is an invaluable reference, whether you have EnDVD 2.0, CS3 or CS4.
    As for magazine articles, Encore is mentioned in some, but I do not recall any specific to the program. Same for books on DVD/BD authoring. I have several, that use Encore for some examples, and other authoring programs for others.
    The closest thing that we have to the PrPRo-Wiki, mentioned in your thread in the PrPro forum, is the wonderful set of Encore FAQ's on this forum. Jeff Bellune and Neil Wilkes have done a great job of rebuilding those, and most were lost, when the forum underwent a major changeover about 1.5 years ago.
    Next, just reading this forum will help one learn how to do much in Encore, and also how to solve any problems.
    One other asset that needs to be pointed out is the link in this ARTICLE to Jim Taylor's DVD FAQ. His book, DVD Demystified, by McGraw Hill, will tell you everything that you would ever want to know about DVD/BD, and his FAQ site will cover most of the important info.
    Great reading in each of those. That is not an all-inclusive list, but all that I can think of for now.
    Good luck,
    Hunt

  • Are there any magazines with articles and tips for Photoshop

    Are there any magazines with articles and tips for Photoshop - English language

    steenmikkelsen wrote:
    Are there any magazines with articles and tips for Photoshop - English language
    I can think of about 10! And then there are all the digital photography magazines too.
    But what's wrong with starting here:
    http://www.adobe.com/support/photoshop/
    (Save the forests!)

  • Are there any magazines with articles and tips for Premiere - English language

    Are there any magazines with articles and tips for Premiere - English language

    I dont know of any regular magazines.  There are occasional articles in video mags.
    But heres some online stuff you can review:
    http://forums.adobe.com/thread/424009
    http://premierepro.wikia.com/wiki/Adobe_Premiere_Pro_Wiki
    http://forums.adobe.com/thread/424418

  • Are there any magazines with articles and tips for AE - English language

    Are there any magazines with articles and tips for AE - English language

    I'm afraid not. Mags like Computer Arts and others have occasional articles interspersed or specials (Computer Arts Projects) but if you want my opinion: You can find much better resources online. Most of these print articles are really quite generic and aimed e.g. at 3D artists who only do the occasional piece of work in AE...
    Mylenium

  • ITUNES - Are there disadvantages to using different Apple IDs for inistalling the .app?

    ITUNES - Are there disadvantages to using different Apple IDs for inistalling the .app file not overwrite the previous one at itunes?

    In my opinion it is best to use one Apple ID on your computer and iPad. Using multiple IDs causes confusion.
    I also suggest that each person with their own iOS device have their own unique Apple ID. On the computer create different accounts for each user so that iTunes on each account can be associated with the correct Apple ID.

Maybe you are looking for

  • Invoice output not coming properly

    Dear Experts, I have maintained condition record for the billing type and assigned it to the printer. Some of the invoices output are coming properly but for 4 to 5 invoices, print out prview is just skipping and when I click for printing, the system

  • Concatenating multiple rows from asingle column

    hi, Could anyone help me in writing a query for following I have columns A B 1 a 1 b 1 c 2 d 2 e 3 f 3 g O/p C 1 abc, 2 de, 3 fg can anyone help me out in writing this ...I appriciate it. Thanks,

  • Displaying table using DBMS_OUTPUT using OWA

    Dear All, I have created a procedure to display a table in DBMS_OUTPUT (Thanks to Michaels) using OWA package. PROCEDURE showtable (tablename VARCHAR2) AS b BOOLEAN; OUT CLOB; irows INTEGER := 1; BEGIN OWA.cgi_var_name (1) := 1; OWA.init_cgi_env (OWA

  • Can't use additional content

    I download additional content, install, but after, open a box saying "you need to download additional content". i alread install 10 times, and i can't use additional content.

  • Problem when configure a domain

    Hi, I have LiveCycle Policy Server 7.0.2 deployed in Jboss 3.2.5. It was successful to test server when I configured an LDAP query. However, I run into exceptions when I synchronized Directories manually. ~ERROR~com.adobe.edc.server.errors.exception.