POST api/timecode/search
Request Information
URI Parameters
None.
Body Parameters
GetTimeCodeParamName | Description | Type | Additional information |
---|---|---|---|
Query | string |
None. |
|
LanguageId | string |
None. |
|
TaskSetId | string |
None. |
|
MatterId | string |
None. |
|
MemberId | string |
None. |
|
PageSize | integer |
None. |
|
PageIndex | integer |
None. |
|
IsFirst | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{ "Query": "sample string 1", "LanguageId": "sample string 2", "TaskSetId": "sample string 3", "MatterId": "sample string 4", "MemberId": "sample string 5", "PageSize": 6, "PageIndex": 7, "IsFirst": true }
application/xml, text/xml
Sample:
<GetTimeCodeParam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Dexco.Acumin.Services.Models"> <IsFirst>true</IsFirst> <LanguageId>sample string 2</LanguageId> <MatterId>sample string 4</MatterId> <MemberId>sample string 5</MemberId> <PageIndex>7</PageIndex> <PageSize>6</PageSize> <Query>sample string 1</Query> <TaskSetId>sample string 3</TaskSetId> </GetTimeCodeParam>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
AsyncResultOfTimeCodeAndTotalRecordOutputName | Description | Type | Additional information |
---|---|---|---|
Data | Collection of TimeCode |
None. |
|
Output | TotalRecordOutput |
None. |
Response Formats
application/json, text/json
Sample:
{ "Data": [ { "TimeCodeId": "sample string 1", "Code": "sample string 2", "Caption": "sample string 3", "Description": "sample string 4", "IsChargeable": true, "CodeAndName": "(sample string 2) sample string 3" }, { "TimeCodeId": "sample string 1", "Code": "sample string 2", "Caption": "sample string 3", "Description": "sample string 4", "IsChargeable": true, "CodeAndName": "(sample string 2) sample string 3" } ], "Output": { "TotalRecord": 1 } }
application/xml, text/xml
Sample:
<AsyncResultOfTimeCodeTotalRecordOutputtpsGLeSZ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Dexco.Web.Domain"> <Data> <TimeCode> <Caption>sample string 3</Caption> <Code>sample string 2</Code> <Description>sample string 4</Description> <IsChargeable>true</IsChargeable> <TimeCodeId>sample string 1</TimeCodeId> </TimeCode> <TimeCode> <Caption>sample string 3</Caption> <Code>sample string 2</Code> <Description>sample string 4</Description> <IsChargeable>true</IsChargeable> <TimeCodeId>sample string 1</TimeCodeId> </TimeCode> </Data> <Output> <TotalRecord>1</TotalRecord> </Output> </AsyncResultOfTimeCodeTotalRecordOutputtpsGLeSZ>