Important Update: Archer Community Scheduled Maintenance on November 23–24 - New Community Launching Soon! Learn More..
2022-04-06 12:59 PM
Hi,
My objective is to set the related records field I have on the application using RESTful API call from C#.
I get the feed from XML document, which I consume, getting all the required fields.
Which API should I use? And if there is any sample code, that would be perfect.
I believe if I need to add a user to different groups, then I should be using this API!
/api/core/system/user
Thank you
2022-04-06 01:40 PM - edited 2022-04-06 01:41 PM
REST API or CONTENT API can be utilized. @JeffLetterman made a very good guideline in here:
2022-04-06 01:40 PM - edited 2022-04-06 01:41 PM
REST API or CONTENT API can be utilized. @JeffLetterman made a very good guideline in here:
2022-04-14 12:12 PM - edited 2022-04-14 04:00 PM
Awesome.
Now, if I create/update a cross reference using the example you provided, like
Cross-Reference (Type = 9)
"13907": {
"Type": 9,
"Tag": "My Contacts (Cross-Reference to Contacts)",
"Value": [
{
"ContentId": 205522
},
{
"ContentId": 318794
},
{
"ContentId": 325672
}
],
"FieldId": 13907
}
Which API shall I use to delete the record, if I need to do that later. I searched the REST API collection, and I only found the Delete Content Record, which uses a contentid.
Not sure if it's the right API, then how would I get the contentid.
Thank you