POST api/FEContact/CreateContactUs

Request Information

URI Parameters

None.

Body Parameters

ContactUsCreateData
NameDescriptionTypeAdditional information
ContactType

string

String length: inclusive between 0 and 5

ContactPerson

string

Required

Matching regular expression pattern: ^[\u4e00-\u9fff]+$

String length: inclusive between 0 and 20

ContactMail

string

String length: inclusive between 0 and 40

ContactPhoneNumber

string

Matching regular expression pattern: ^\d*$

String length: inclusive between 0 and 10

Message

string

Matching regular expression pattern: ^[\u4e00-\u9fffA-Za-z0-9 ,。、!?;:「」『』()《》〈〉【】—…]*$

String length: inclusive between 0 and 100

Request Formats

application/json, text/json

Sample:
{
  "ContactType": "sample string 1",
  "ContactPerson": "sample string 2",
  "ContactMail": "sample string 3",
  "ContactPhoneNumber": "sample string 4",
  "Message": "sample string 5"
}

application/xml, text/xml

Sample:
<ContactModel.ContactUsCreateData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IRMS.Models">
  <ContactMail>sample string 3</ContactMail>
  <ContactPerson>sample string 2</ContactPerson>
  <ContactPhoneNumber>sample string 4</ContactPhoneNumber>
  <ContactType>sample string 1</ContactType>
  <Message>sample string 5</Message>
</ContactModel.ContactUsCreateData>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

BaseResultOfObject
NameDescriptionTypeAdditional information
body

Object

None.

isSuccess

boolean

None.

message

string

None.

code

string

None.

response

Enum

None.

exception

string

None.

Response Formats

application/json

Sample:

Sample not available.

text/json

Sample:

Sample not available.

application/xml, text/xml

Sample:
<BaseModels.BaseResultOfanyTypeRvdAXEcW xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IRMS.Models">
  <body />
  <exception>sample string 3</exception>
  <isSuccess>true</isSuccess>
  <response i:nil="true" />
</BaseModels.BaseResultOfanyTypeRvdAXEcW>