None.
None.
Name | Description | Usage |
---|---|---|
keyword | Searches for items based on keyword matching. | GET v3/content/articles?search=keyword |
Name | Description | Usage |
---|---|---|
index | The index to retrieve when requesting paged results. | GET v3/content/articles?page=index~{value} |
size | The size of the page when requesting paged results. | GET v3/content/articles?page=size~{value} |
Name | Description | Type | Additional Info |
---|---|---|---|
Articles | The list of articles. | Collection of ArticleSummaryV3 | None. |
NextPageUrl | The URL of the next page of data for the list. | string | None. |
PageIndex | The index of the requested page. | integer | None. |
PageSize | The size of the requested page. | integer | None. |
TotalPages | The total number of pages, based on total results and page size. | integer | None. |
TotalResults | The total number of results. | integer | None. |
Error | The response error, if any. | ResponseErrorV3 | None. |
Sample:
{ "Articles": [ { "ArticleId": "sample string 1", "Type": "sample string 2", "Published": "2024-11-21T06:50:18.9647128+00:00", "Title": "sample string 3", "Summary": "sample string 4", "ThumbnailImage": "sample string 5", "Audiences": [ "sample string 1", "sample string 2" ], "Categories": [ "sample string 1", "sample string 2" ], "Topics": [ "sample string 1", "sample string 2" ] }, { "ArticleId": "sample string 1", "Type": "sample string 2", "Published": "2024-11-21T06:50:18.9647128+00:00", "Title": "sample string 3", "Summary": "sample string 4", "ThumbnailImage": "sample string 5", "Audiences": [ "sample string 1", "sample string 2" ], "Categories": [ "sample string 1", "sample string 2" ], "Topics": [ "sample string 1", "sample string 2" ] } ], "NextPageUrl": "sample string 1", "PageIndex": 1, "PageSize": 1, "TotalPages": 1, "TotalResults": 1, "Error": { "ErrorId": 1, "ErrorMessage": "sample string 1" } }
Sample:
/**/ typeof === 'function' && ({"Articles":[{"ArticleId":"sample string 1","Type":"sample string 2","Published":"2024-11-21T06:50:18.9647128+00:00","Title":"sample string 3","Summary":"sample string 4","ThumbnailImage":"sample string 5","Audiences":["sample string 1","sample string 2"],"Categories":["sample string 1","sample string 2"],"Topics":["sample string 1","sample string 2"]},{"ArticleId":"sample string 1","Type":"sample string 2","Published":"2024-11-21T06:50:18.9647128+00:00","Title":"sample string 3","Summary":"sample string 4","ThumbnailImage":"sample string 5","Audiences":["sample string 1","sample string 2"],"Categories":["sample string 1","sample string 2"],"Topics":["sample string 1","sample string 2"]}],"NextPageUrl":"sample string 1","PageIndex":1,"PageSize":1,"TotalPages":1,"TotalResults":1,"Error":{"ErrorId":1,"ErrorMessage":"sample string 1"}});