POST Equ/RepairHistorySave?callId={callId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| callId | integer |
Required |
Body Parameters
Equ_RepairHistory| Name | Description | Type | Additional information |
|---|---|---|---|
| IId | integer |
None. |
|
| StandardId | integer |
None. |
|
| RepairId | integer |
None. |
|
| Title | string |
None. |
|
| RepairTime | date |
None. |
|
| CreateTime | date |
None. |
|
| UserId | integer |
None. |
|
| TempFileName | string |
None. |
|
| VoucherFileName | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"IId": 1,
"StandardId": 1,
"RepairId": 1,
"Title": "sample string 2",
"RepairTime": "2026-04-16 19:59:42",
"CreateTime": "2026-04-16 19:59:42",
"UserId": 1,
"TempFileName": "sample string 3",
"VoucherFileName": "sample string 4"
}
application/xml, text/xml
Sample:
<Equ_RepairHistory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeldingAPI.Models.EF"> <CreateTime>2026-04-16T19:59:42.5066935+08:00</CreateTime> <IId>1</IId> <RepairId>1</RepairId> <RepairTime>2026-04-16T19:59:42.5066935+08:00</RepairTime> <StandardId>1</StandardId> <TempFileName>sample string 3</TempFileName> <Title>sample string 2</Title> <UserId>1</UserId> <VoucherFileName>sample string 4</VoucherFileName> </Equ_RepairHistory>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
BaseResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | integer |
None. |
|
| Msg | string |
None. |
|
| Token | string |
None. |
|
| Key | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": 1,
"Msg": "sample string 2",
"Token": "sample string 3",
"Key": "sample string 4"
}
application/xml, text/xml
Sample:
<BaseResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WeldingAPI.Models"> <Key>sample string 4</Key> <Msg>sample string 2</Msg> <Success>1</Success> <Token>sample string 3</Token> </BaseResult>