POST account/active/1
Request Information
URI Parameters
None.
Body Parameters
ActiveAccount| Name | Description | Type | Additional information |
|---|---|---|---|
| OTPCode | string |
None. |
|
| Password | string |
None. |
|
| ConfirmPassword | string |
None. |
|
| Message | string |
None. |
|
| ErrorCode | string |
None. |
|
| UserName | string |
None. |
|
| TaxCode | string |
None. |
|
| PhoneNumber | string |
None. |
|
| string |
None. |
||
| UserLogin | string |
None. |
|
| ActiveType | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"OTPCode": "sample string 1",
"Password": "sample string 2",
"ConfirmPassword": "sample string 3",
"Message": "sample string 4",
"ErrorCode": "sample string 5",
"UserName": "sample string 6",
"TaxCode": "sample string 7",
"PhoneNumber": "sample string 8",
"Email": "sample string 9",
"UserLogin": "sample string 10",
"ActiveType": "sample string 11"
}
application/xml, text/xml
Sample:
<ActiveAccount xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MISA.MEINVOICE.AppV2.Contract"> <ActiveType>sample string 11</ActiveType> <ConfirmPassword>sample string 3</ConfirmPassword> <Email>sample string 9</Email> <ErrorCode>sample string 5</ErrorCode> <Message>sample string 4</Message> <OTPCode>sample string 1</OTPCode> <Password>sample string 2</Password> <PhoneNumber>sample string 8</PhoneNumber> <TaxCode>sample string 7</TaxCode> <UserLogin>sample string 10</UserLogin> <UserName>sample string 6</UserName> </ActiveAccount>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ServiceResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Success |
Trạng thái: true thành công, false thất bại |
boolean |
None. |
| ErrorCode |
Mã lỗi chính |
string |
None. |
| Errors |
Thông báo: thường là thông báo lỗi |
Collection of string |
None. |
| Data |
Dữ liệu trả về dạng string Nếu đầu vào là object sẽ tự động Serialize thành string |
Object |
None. |
| CustomData | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"ErrorCode": "sample string 2",
"Errors": [
"sample string 1",
"sample string 2"
],
"Data": "{}",
"CustomData": "{}"
}
application/xml, text/xml
Sample:
<ServiceResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MISA.MeInvoice.Contract">
<CustomData xmlns:d2p1="http://www.w3.org/2001/XMLSchema" i:type="d2p1:string">{}</CustomData>
<Data xmlns:d2p1="http://www.w3.org/2001/XMLSchema" i:type="d2p1:string">{}</Data>
<ErrorCode>sample string 2</ErrorCode>
<Errors xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</Errors>
<Success>true</Success>
</ServiceResult>