GET | /posts/comment |
---|
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Id | query | long? | No | |
UserId | query | long? | No | |
PostId | query | long? | No | |
ContentContains | query | string | No | |
UpVotesAbove | query | long? | No | |
UpVotesBelow | query | long? | No | |
DownVotesAbove | query | long? | No | |
DownVotes | query | long? | No | |
FavoritesAbove | query | long? | No | |
FavoritesBelow | query | long? | No | |
WordCountAbove | query | int? | No | |
WordCountBelow | query | int? | No | |
ReportCountAbove | query | int? | No | |
ReportCountBelow | query | int? | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Skip | form | int? | No | |
Take | form | int? | No | |
OrderBy | form | string | No | |
OrderByDesc | form | string | No | |
Include | form | string | No | |
Fields | form | string | No | |
Meta | form | Dictionary<string, string> | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Id | form | long | No | |
PostId | form | long | No | |
UserId | form | int | No | |
ReplyId | form | long? | No | |
Content | form | string | No | |
ContentHtml | form | string | No | |
Score | form | int | No | |
Rank | form | int | No | |
UpVotes | form | long | No | |
DownVotes | form | long | No | |
Favorites | form | long | No | |
WordCount | form | int | No | |
ReportCount | form | int | No | |
Deleted | form | DateTime? | No | |
Hidden | form | DateTime? | No | |
Modified | form | DateTime | No | |
Created | form | DateTime | No | |
CreatedBy | form | string | No | |
RefId | form | long? | No | |
RefSource | form | string | No | |
RefUrn | form | string | No |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Offset | form | int | No | |
Total | form | int | No | |
Results | form | List<T> | No | |
Meta | form | Dictionary<string, string> | No | |
ResponseStatus | form | ResponseStatus | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
GET /posts/comment HTTP/1.1 Host: techstacks.io Accept: text/csv
HTTP/1.1 200 OK Content-Type: text/csv Content-Length: length {"offset":0,"total":0,"results":[{"id":0,"postId":0,"userId":0,"replyId":0,"content":"String","contentHtml":"String","score":0,"rank":0,"upVotes":0,"downVotes":0,"favorites":0,"wordCount":0,"reportCount":0,"deleted":"0001-01-01T00:00:00.0000000","hidden":"0001-01-01T00:00:00.0000000","modified":"0001-01-01T00:00:00.0000000","created":"0001-01-01T00:00:00.0000000","createdBy":"String","refId":0,"refSource":"String","refUrn":"String"}],"meta":{"String":"String"},"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}