POST api/v2.0/ResourceLibrary/AddToFavorites?documentKey={documentKey}
Add the specified Document to the Authenticated User's Favorite List.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| documentKey |
DocumentKey of a Document. |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
DocumentFavorite| Name | Description | Type | Additional information |
|---|---|---|---|
| ContactKey | globally unique identifier |
None. |
|
| DocumentKey | globally unique identifier |
None. |
|
| CreatedOn | date |
None. |
Response Formats
application/json, text/json
Sample:
{
"ContactKey": "db2cc602-bcf4-44fb-bae0-7678a50e1e12",
"DocumentKey": "a7169259-b00e-46ca-b8be-ff7dd4da7066",
"CreatedOn": "2026-07-09T20:36:55.2544308Z"
}
application/xml, text/xml
Sample:
<DocumentFavorite xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HigherLogic.API.Models.Enterprise.ResourceLibrary"> <ContactKey>db2cc602-bcf4-44fb-bae0-7678a50e1e12</ContactKey> <CreatedOn>2026-07-09T16:36:55.2544308-04:00</CreatedOn> <DocumentKey>a7169259-b00e-46ca-b8be-ff7dd4da7066</DocumentKey> </DocumentFavorite>