Contact update - API

Hi all

May I know if the BlackBerry 10 supports the detection of the "LastModifyChange" API for contacts? Is there an API that can stand to listen to the contact patch in the back end even, demand has been swept to close?

Thanks in advance

There is no API to access this, its follow-up by the system.
apps headless comes with 10.2, probably including this requirement (listening in the background).

Tags: BlackBerry Developers

Similar Questions

  • Most of the Contacts updated with the help of API bulk?

    I'm just curious to know what the maximum number of contacts that someone was able to update using the largest rest api or if there are published limits?  1000 contacts? 10000? 100000? 1000000?

    Thank you

    Russ

    Hello Russell,

    You can find the post below useful

    http://topliners.Eloqua.com/community/code_it/blog/2013/08/12/data-uploadimport-file-size-limits

    Thank you

  • How to upgrade the email address of contact via API?

    Hello

    I am trying to add our automatic email contact Eloqua update CRM functionality, since they change in the CRM. I was not able to find examples of code update contact, except for here:

    http://www.Scribd.com/doc/96110821/EloquaWebServicesAPI1-2DeveloperGuide#outer_page_36

    However, I have 3 questions:

    ' 1. my implementation (see the Java code below) returns this error: ' < UnexpectedErrorFault xmlns = "https://secure.eloqua.com/API/1.2" xmlns:i ="http://www.w3.org/2001/XMLSchema-instance" / > ". Is there a newspaper eloqua I can check what's going on?

    2. how and where we specify the ID of the record, we want to update?

    3. because the enamel is a unique key in Eloqua, the API will allow even an API call to change? Another post, it seemed it would be set at the level of the "dynamicEntity", but that doesn't change anything for me. In the code below you'll see - dynamicEntity.setId (523038);

    Thank you.

    Example code:

    ===================================================

    Public Shared Sub main (String [] args) throws exceptions

    {

    # Configuration of the web service client.

    Configure credentials for web service call

    String company = "mycompany";

    String username = "myUsername";

    String password = "MonMotpasse";

    Heel of EloquaStub = new EloquaStub ("https://secure.eloqua.com/API/1.2/Service.svc");

    ServiceClient sc = stub._getServiceClient ();

    Options = sc.getOptions ();

    sc.engageModule ("rampart");

    options.setUserName (company + "\\"+username);

    options.setPassword (password);

    //############################################################################

    call the web service

    updateContact (heel, sc);

    }

    public private static Sub updateContact (EloquaStub heel, sc ServiceClient) throws Exception {}

    Define an object of type entity contact

    EntityType contactType = new EntityType();

    contactType.setID (0);

    contactType.setName ("Conact");

    contactType.setType ("Base");

    Create an array of dynamic entities

    Entities ArrayOfDynamicEntity = new ArrayOfDynamicEntity();

    Create a new dynamic entity and add it to the table

    DynamicEntity dynamicEntity = new DynamicEntity();

    dynamicEntity.setEntityType (contactType);

    dynamicEntity.setId (523038);

    DynamicEntityFields fieldValueCollection = new DynamicEntityFields();

    Email field

    EmailField EntityFields_type0 = new EntityFields_type0();

    emailField.setInternalName ("C_EmailAddress");

    emailField.setValue ("[email protected]" "");

    FirstName field

    EntityFields_type0 firstNameField = new EntityFields_type0();

    firstNameField.setInternalName ("C_FirstName");

    firstNameField.setValue ("testEloqua1");

    fieldValueCollection.addEntityFields (emailField);

    fieldValueCollection.addEntityFields (firstNameField);

    dynamicEntity.setFieldValueCollection (fieldValueCollection);

    entities.addDynamicEntity (dynamicEntity);

    try {}

    Call the web service

    Result ArrayOfUpdateResult = stub.update (entities);

    System.out.println ("updateContact - done!');

    }

    catch (Exception ex) {}

    System.out.println ("updateContact - ERROR:"+ ex.getMessage () ');

    }

    }

    ===================================================

    Hello Lazar,

    We have a blog which deals with this topic: Eloqua REST API - how can I update address E-mail of Contact. Please let me know if you need more information.

    Hope you find it useful.

    Thank you

    Fred

  • Decommissioned in OS3 contacts updated

    I just bought the watch 4 days ago and just updated to watch OS3.  Why in the world did take the contacts out completely?  So now I have to either go to dock, phone, Contacts to only be able to call someone, or use siri, who sometimes works.  I only have the option to call my contacts and not "scribble" or text them.  For me, this is a step backwards.  I can return it.  Very upsetting.

    Hello

    It is a community of user-oriented support.

    You can let Apple know your opinion here:

    https://www.Apple.com/feedback/watch.html

  • Problems when creating extension using pim contact webworks API

    Hello

    I need to create an extension that use webworks APIs to get all contact data as well as launch the contact selector and must obtain the name of the contact, numbers and Base 64 of contact image chain.

    Now, I have a few quesries below:

    1. I tried to reach my api requirement with webworks. For this, I did changes in the config.xml file.



    <>ermissions >
    <>Ermit > access_pimdomain_contactsermit >
    ermissions >

    and able to access the API of pim.contact placed here: C:\Program Research In Motion\BlackBerry 10 WebWorks SDK 1.0.4.11\Framework\ext\pim.contacts

    But when I tried to get all contacts by using the getContactAccounts() method, it gives me two accounts simcontacts and LocalContacts and their identity papers are respectively 2 and 19.

    I found that I can get the list of contacts using the example of the contacts. but this is to limit the length to 20.

    http://supportforums.BlackBerry.com/T5/Web-and-WebWorks-development/need-help-with-BB10-WebWorks-con...

    2.i have not found any documentaion appropriate for the fields of my contact: name, numbers and Base 64 of contact image chain like the way they gave in the native SDK documentation.

    Please share any code example that is in all fields of contact data of Singla retrieving.

    3. I need to share my contact plugin and need to expose certain methods of my plugin webworks.

    How can I reach it?

    Is it possible to get the code side native for pim.contact plugin, so that I can add methods more in it and can expose these methods more Web app works by making the required in index.js and client.js chnages.

    Help, please.

    I checked and there seems to be a problem with the API that has been fixed for version Gold SDK. Here you can find a similar position:
    http://supportforums.BlackBerry.com/T5/Web-and-WebWorks-development/need-help-with-BB10-WebWorks-con...

    And more information on the real fix here:
    https://github.com/BlackBerry/Cordova-BlackBerry-plugins/pull/80

    It seems that it was default 0, which gave 20 results, as opposed to-1, the expected default value.

    For now, if you simply pass a high value for limit, which should get the contacts (i.e. 1000). I know that's not ideal, but a workaround for now.

    For plugins, the best starting point would be the following.

    WebWorks SDK 1.0:
    https://github.com/BlackBerry/WebWorks-community-APIs/tree/master/BB10/template

    WebWorks SDK 2.0:
    https://github.com/BlackBerry/WebWorks-community-APIs/tree/master/BB10-Cordova/template

  • Contact update failed

    just try some things with Contacts

    having trouble updating a Contact

    at first tried to add custom, attributes but it does not

    and then did you do something simple like:

    if (contact.id()) {
    builder = contact.edit();
    builder.addAttribute(
        ContactAttributeBuilder().setKind(AttributeKind::Phone)
        .setSubKind(AttributeSubKind::Home).setValue("080311234567890"));
    Contact updatedContact = ContactService().updateContact(builder);
    

    Contact was not updated

    We get a connection error that the account was not found

    updateContact called with account id  4   contact id:  6
    PUT
    URL Buffer: http://127.0.0.1:8888/contact/4/6
    Curl Easy perform
    Curl Easy GetInfo response code
    Curl easy getInfo content_length_download
    Curl Error Code 0
    Response Code 404
    Status Code 404
    Exception String The account was not found
    Error occurred! Investigate!  updateContactHelper  L 372
    

    any idea?

    good news:

    January OS / SDK update fixed that.

    Now I can update Contacts as expected.

  • Is it possible to create a combination of work Flexfield affectedly update API

    Hello

    When updating an assignment of people with an API using e.g.

    hr_assignment_api.update_emp_asg

    hr_assignment_api.update_emp_asg_criteria

    hr_assignment_api.update_cwk_asg

    hr_assignment_api.update_cwk_asg_criteria

    etc.

    Is it possible to create a job Flexfield, dynamically, for example by changing Segment of job values to the parameters of the update of transfer API (assume dynamic insertion in active employment Flexfield).

    Thank you

    Sanjay

    Not possible unfortunately. The only place where that would happen is on the Group of people, where combinations are created dynamically based on values supplied for group of segments. Job, you must specify a value for p_job_id who must already exist as a valid job.

    Jobs can be created using hr_job_api.create_job

    Clive

  • Update API causes to R12

    Dear all,

    I use an oracle API UPDATE to update certain values, so I'm able to update the required fields, but it is for some areas it refreshes NULL in the database I want to retain the value existing sp please help me on this.

    Start_date value data is January 22, 15 '

    in API I don't pass any value as field but it updated with null, I want to keep existing value.please help me with that.

    Thank you

    Hello

    Oracle of the API (for most of the associated CAW) still retains the current value of this table (column), if there is no value passed. Also it will not accept values explicitly if passed as NULL or apostrophes ".

    In order to reduce an existing value to zero, Oracle provided the variables below.

    FND_API. For the NUMBER data type G_MISS_NUM

    FND_API. G_MISS_CHAR for the VARCHAR data type

    FND_API. G_MISS_DATE for the DATE data type

    It is not useful here.

  • Employees update api contract error

    Dear,

    I'm trying to update the employees contract expires date using api below:

    DECLARE

    V_OBJECT_VERSION_NUMBER PER_CONTRACTS_F.OBJECT_VERSION_NUMBER%TYPE;

    V_EFFECTIVE_START_DATE PER_CONTRACTS_F.EFFECTIVE_START_DATE%TYPE;

    V_EFFECTIVE_END_DATE PER_CONTRACTS_F.EFFECTIVE_END_DATE%TYPE;

    L_REFERENCE VARCHAR2 (100);

    L_TYPE VARCHAR2 (100);

    L_STATUS VARCHAR2 (100);

    NUMBER OF L_CONTRACT_ID;

    NUMBER OF L_OBJECT_VERSION_NUMBER;

    NUMBER OF L_PERSON_ID;

    L_EMPLOYMENT_STATUS VARCHAR2 (100);

    NUMBER OF L_DURATION;

    L_CONTRACTUAL_JOB_TITLE VARCHAR2 (100);

    L_DURATION_UNITS VARCHAR2 (10);

    DATE OF L_EFFECTIVE_START_DATE;

    DATE OF L_EFFECTIVE_END_DATE;

    CURSOR C

    IS

    SELECT PCFO. CTR_INFORMATION2, PAPFO. EMPLOYEE_NUMBER

    OF PCFO PER_CONTRACTS_F@NEWTOOLD, PER_ALL_PEOPLE_F@NEWTOOLD PAPFO

    WHERE 1 = 1

    AND PAPFO. PERSON_ID = 1593

    AND PCFO. PERSON_ID = PAPFO. PERSON_ID

    AND TRUNC (SYSDATE) BETWEEN PAPFO. EFFECTIVE_START_DATE

    AND PAPFO. EFFECTIVE_END_DATE

    AND PCFO. CTR_INFORMATION2 IS NOT NULL;

    BEGIN

    -FND_GLOBAL. APPS_INITIALIZE (1111, 24178, 800);

    FOR REC C

    LOOP

    SELECT THE PCF. OBJECT_VERSION_NUMBER,

    REFERENCE,

    TYPE,

    STATUS,

    CONTRACT_ID,

    WOMEN'S WEAR. PERSON_ID,

    PCF. CTR_INFORMATION1 EMPLOYMENT_STATUS,

    DURATION,

    CONTRACTUAL_JOB_TITLE,

    DURATION_UNITS,

    WOMEN'S WEAR. EFFECTIVE_START_DATE,

    PCF. EFFECTIVE_END_DATE

    BY L_OBJECT_VERSION_NUMBER,

    L_REFERENCE,

    L_TYPE,

    L_STATUS,

    L_CONTRACT_ID,

    L_PERSON_ID,

    L_EMPLOYMENT_STATUS,

    L_DURATION,

    L_CONTRACTUAL_JOB_TITLE,

    L_DURATION_UNITS,

    L_EFFECTIVE_START_DATE,

    L_EFFECTIVE_END_DATE

    OF FCP, WOMEN'S WEAR PER_ALL_PEOPLE_F PER_CONTRACTS_F

    WHERE 1 = 1

    AND THE PCF. PERSON_ID = WOMEN'S WEAR. PERSON_ID

    AND WOMEN'S WEAR. EMPLOYEE_NUMBER = REC EMPLOYEE_NUMBER.

    AND TRUNC (SYSDATE) BETWEEN WOMEN'S WEAR. EFFECTIVE_START_DATE

    AND WOMEN'S WEAR. EFFECTIVE_END_DATE;

    () HR_SA_CONTRACT_API.update_sa_contract

    P_VALIDATE = > FALSE,

    P_CONTRACT_ID = > L_CONTRACT_ID,

    P_EFFECTIVE_START_DATE = > V_EFFECTIVE_START_DATE, V_EFFECTIVE_START_DATE,.

    P_EFFECTIVE_END_DATE = > V_EFFECTIVE_END_DATE, V_EFFECTIVE_END_DATE,.

    P_OBJECT_VERSION_NUMBER = > L_OBJECT_VERSION_NUMBER,

    P_PERSON_ID = > L_PERSON_ID,

    P_REFERENCE = > L_REFERENCE,

    P_TYPE = > L_TYPE,.

    P_STATUS = > L_STATUS,.

    -P_DURATION = > L_DURATION,

    -P_DURATION_UNITS = > L_DURATION_UNITS,

    -P_CONTRACTUAL_JOB_TITLE = > L_CONTRACTUAL_JOB_TITLE,

    P_EFFECTIVE_DATE = > L_EFFECTIVE_START_DATE,

    P_DATETRACK_MODE = > "CORRECTION."

    p_expiry_date = > REC. CTR_INFORMATION2.

    P_EMPLOYMENT_STATUS = > L_EMPLOYMENT_STATUS

    );

    END LOOP;

    END;


    but I got this error:

    ORA-01722: invalid number

    ORA-06512: at "APPS.HR_CONTRACT_API", line 847

    ORA-06512: at "APPS.HR_SA_CONTRACT_API", line 314

    ORA-06512: at the level of the line 65

    Any help?

    Thank you.

    I have corrected the problem.

    Enjoy.

  • Rules update API in bulk?

    Hello

    I currently have my import Setup to always use the update rule, but it seems to me to be better to use the rule to update IfNewIsNotNull for some fields.

    Y at - there no way to set different update rules for different areas or importation of any should use the same rule?

    I saw the update rule FieldRule import, but I don't know if this is for the Type field.

    Thank you

    Chris

    Hi Chris,

    You can accomplish this by using the following update rule: 'useFieldRule '. The import will use the default update logic applied to each field.

    To access field properties, click Setup, fields and views, and then select a Contact field.

    Note that each Contact field contains its own default update logic:

    Hope this helps and please let me know if you need more information.

    Thank you

    Fred

  • Update API categories missing categoryTypeId

    I would be very interested to understand why BC development team suddenly pulled out of the field of categoryTypeId according to the results of the API.

    I welcome the new features of update or remove, but this suppression of field threw a key in my works.

    Basically, the field CategoryTypeId indicates the 'level' of a particular category in British Colombia. (42 = Level1, Level2 43 = 140 = Level3, etc..)

    (By the way, I would be curious to know why 42, 43 and 140 have been chosen rather than saying: 1,2,3... but I digress.)


    In any case, I was using the field CategoryTypeId to create a game from the category "cascading" selects as shown below:

    (i.e., you select a directory in the first select statement and the second, select appears containing the next level of categories filtered for this selection of repertoire and so forth.)

    {resource module_data = 'categories' version = "v3" collection model = 'directories' = "" where = "------{'categoryTypeId': '42'------}"}

    {resource module_data = 'categories' version = "v3" collection = "categories" template = "" where = "------{'categoryTypeId': '43'------}"}

    {resource module_data = 'categories' version = "v3" collection model = "subcategories" = "" where = "------{'categoryTypeId': '140'------}"}

    I wrote a JS function which makes the display and hiding the results filtered out of the screening.

    My big problem is the update today, which has removed this field.  Assuming that there is currently no way to put this back, I'd be happy to explain why it has been deleted, as this caused me suddenly having to redefine the component architecture key of the user interface of the site.

    In addition, I'd also appreciate ideas as to how this might be accomplished another way (easily?) using other fields and/or {categorylist}

    Thank you

    -Bruce

    Hi Bruce,.

    I'm really sorry for this bug. We will reintroduce this field tomorrow until the end of the day. I don't know how the values where chosen for categoryTypeId but another question.

    Again, I apologize for this issue.

    Kind regards

    Radu

  • The Windows Update API questions

    I have lots of questions about the functioning of Windows Update through WUAPI.  Where it would be appropriate to ask/discuss those?

    Transfer your question in this forum: http://social.microsoft.com/Forums/en-US/whatforum/threads

    Otherwise...

    MSDN forums
    http://social.msdn.Microsoft.com/forums/en/categories/

    TechNet forums
    http://social.technet.Microsoft.com/forums/en/categories/

    [This is really a forum of end-user/consumer.]

  • Update API to iOS7

    Hello. I'm a Creative Director in an internal Department of MKTG and my former designer, is no longer with the company, took care to create an iPad via InDesign application. I have all the source files, seven INDD files, seven Folio files and a final IPA file that we send to our global IT Department, who then take it and do what is necessary to put on our internal society App Store for our end users (sales force - in the House) to download on their mobile devices.

    The IPA was built under an older version of DPS, and now that v28 is out, who is responsible for iOS7, I just want to rebuild and create a new file API to send it to our global Ministry so that they can then deploy it to all users who are now on iOS7 on their iPads.

    I'm just trying to understand the workflow and what is needed. I know the app icons have new sizes in iOS7, but beyond that I do create a new iPA? Can I use the existing files in the folio?

    FYI, the seven fact sheets are all for a last 'app '. I don't know the exact terminology.

    Thank you very much.

    I guess that's a business who houses folios. You do not have

    He had to do something for the folios at all.

    Just use the app Builder to create a new version of the app to help

    version 28. The app Builder is a Wizard of sorts. Just follow the

    instructions.

  • How to get my contacts from my iPhone and ipad to update my iMac

    Hello

    As far as I can tell, I have my contacts updated in place to sync between my iPhone and iMac.  I have 193 contacts on my iPhone and iPad.

    On the iPhone and the iPad, they show that the

    All the iCloud

    two groups I created, family and a working group, the two appear under that.

    on my iMac, I see 36 contacts and a mismash of groups which are old.

    Thus, it seems that my contacts are not synchronized to the iMac.  In iCloud on my iMac, I have verified contacts.

    I don't know what else to do.  Any suggestions?

    Michelle

    Hello BellaMichelle,

    Thank you for reaching out to the Community Support from Apple. I know how important it is to have your contacts consistently on all of your devices, especially if you need stay in touch throughout the day. I will do all I can to help. Looks like you have configured correctly the things, but synchronization may have just gotten hung up.

    One of the easiest ways we can try to kick start things must simply sign your Mac off iCloud and then again to make a new connection. After a few minutes, the contacts should begin to update. To do this, you can open your system preferences, click the iCloud and click Disconnect. Your Mac will give you the option to keep or remove certain information. Whenever the option is available, do not forget to click on "continue on my Mac.

    Once you have disconnected, go ahead and reboot then reconnect and give contacts for a few minutes to download and update.

    If they are not always appear, while he would have to do is go to iCloud on a computer using this link: iCloud.  When you are there, click on Contacts and see if they all appear correctly there.

    The entire community is here to help.

    -Best regards-

  • How knowledge uninstalled the update via the API INTERFACE?

    Hello

    I want to know, how do I find information on uninstalled update api interface?
    There are an interface called 'IUpdateHistoryEntry' which has properties of 'Operation', but what I see is, even if I install an update and then uninstall this update, history interface returns only '1 day' with 'install' enum value.
    Appreciate the help.
    Thank you
    Aurélien

    Hi chat2amrat,

    Your question of Windows vista is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for the IT audience Pro on MSDN. Please post your question to the MSDN Windows vista forum.

    http://social.msdn.Microsoft.com/forums/en/windowsgeneraldevelopmentissues/threads

Maybe you are looking for

  • need help to copy the profile and find the menu bar.

    I am trying to move my files of thunderbird etc to a new computer and need to do it manually due to hardware problem causing no internet. I tried going in C file and found Thunderbird. No other success find the bar of menus or profile. This is why I

  • Question of photos

    I tried to sync my iPad (Yes, an old) to the computer and received this message.  I have not beaten as I have read that it will delete all my pictures from the computer if I follow through.  He worked very hard and update the operating system has not

  • DVP11 - Display Driver stopped responding and has recovered

    Hey guys,. Last month I had problems with the display driver.  Sometimes when I'm on the desktop (using Microsoft office products), the screen entirely black flash mode for a few seconds, once my office reappears, a message will be will jump to the t

  • BlackBerry Smartphones BB Desktop Manager

    Hi, im new BB who always used Nokia. One problem I've found is how to access and change the details of your telephone directory on the computer rather than the BB? I want to add addresses, move numbers autour etc. but may not know how. Bright ideas o

  • 6500 E709n installed but does not print

    I have an Officejet 6500 wireless printer.  It works fine with my windows laptop.  I tried to install it on my Macbook Pro and have failed miserably.  The installer tells me that the printer has been installed successfully.  However, when I try and p