Relative request path: | api/orgs/{organisationId}/journaltypes/{journalTypeId} |
Property | Description |
---|---|
organisationId | |
journalTypeId | journalType id |
Request parameters:
Request parameters:
Request parameters:
Property | Description |
---|---|
JournalTypeId | Journal type id. |
Code | Journal type code. |
DisplayCode | Journal type display code. |
This method returns result of type 'SAOP.API.Models.JournalType.JournalType'.
/// Journal type details.
public class JournalType
{
// Journal type id.
public long JournalTypeId { get; set; }
// Journal type code.
public string Code { get; set; }
// Journal type display code.
public string DisplayCode { get; set; }
}