Relative request path: | api/orgs/{organisationId}/journals/vodstandard |
Property | Description |
---|---|
organisationId | organisation id |
DateTo | Date to. |
DateFrom | Date from. |
JournalId | JournalId. |
FromJournalId | JournalId from. |
CurrentPage | Current page index starting with 1 for first page. |
PageSize | Page size defines number of records returned per page. |
SortField | Field name that is used for sorting/ordering result rows. |
Order | Sort order: A - ascending; D - descending |
Filter options:
/// Journal VOD Standard search filter.
public class JournalVODFilter
{
// Date to.
public DateTime? DateTo { get; set; }
// Date from.
public DateTime? DateFrom { get; set; }
// JournalId.
public long? JournalId { get; set; }
// JournalId from.
public long? FromJournalId { get; set; }
// Current page index starting with 1 for first page.
public int CurrentPage { get; set; }
// Page size defines number of records returned per page.
public int PageSize { get; set; }
// Field name that is used for sorting/ordering result rows.
public string SortField { get; set; }
// Sort order: A - ascending; D - descending
public string Order { get; set; }
}
Request parameters:
Filter options:
/// Journal VOD Standard search filter.
class JournalVODFilter
{
// Date to.
public $DateTo;
// Date from.
public $DateFrom;
// JournalId.
public $JournalId;
// JournalId from.
public $FromJournalId;
// Current page index starting with 1 for first page.
public $CurrentPage;
// Page size defines number of records returned per page.
public $PageSize;
// Field name that is used for sorting/ordering result rows.
public $SortField;
// Sort order: A - ascending; D - descending
public $Order;
}
Request parameters:
Filter options:
/// Journal VOD Standard search filter.
public class JournalVODFilter
{
// Date to.
public Date DateTo;
// Date from.
public Date DateFrom;
// JournalId.
public Long JournalId;
// JournalId from.
public Long FromJournalId;
// Current page index starting with 1 for first page.
public Integer CurrentPage;
// Page size defines number of records returned per page.
public Integer PageSize;
// Field name that is used for sorting/ordering result rows.
public String SortField;
// Sort order: A - ascending; D - descending
public String Order;
}
Request parameters:
Property | Description |
---|---|
Version | |
Content | |
StatusCode | |
ReasonPhrase | |
Headers | |
RequestMessage | |
IsSuccessStatusCode |
This method returns result of type 'HttpResponseMessage'.
This method returns result of type 'HttpResponseMessage'.
This method returns result of type 'HttpResponseMessage'.