Book a Demo

Author Topic: Bookmark through API interface  (Read 2901 times)

ramhog69

  • EA Novice
  • *
  • Posts: 6
  • Karma: +0/-0
    • View Profile
Bookmark through API interface
« on: October 30, 2008, 07:58:00 am »
Is there a way to Bookmark a package through the API automation interface.  I can bookmark an item through the UI.  In the API I haven't seen anything that even remotely looks like it will bookmark an item.

Thank you.
Kalvin

jkorman

  • EA User
  • **
  • Posts: 99
  • Karma: +0/-0
    • View Profile
Re: Bookmark through API interface
« Reply #1 on: November 01, 2008, 12:54:46 am »
Appears that the bookmark is stored in the t_object table "tagged" attribute. Can't find anything in the api that manipulates this value. A value of 0 is no bookmark, 1 is bookmarked. You should be able to use the repository SQLQuery to get/set the value.

Jim

RealAlex

  • EA Novice
  • *
  • Posts: 13
  • Karma: +0/-0
    • View Profile
Re: Bookmark through API interface
« Reply #2 on: November 19, 2008, 09:07:36 pm »
When using repository SQLQuery you can only use SELECT. No update or delete will have effect, so you will need to see if you can change the tagged value of the package or the element associated to the package.

Otherwise you could simply open a direct database connection and use your own queries...