POST api/support/contact

Contact.

Request Information

URI Parameters

None.

Body Parameters

SupportContact
NameDescriptionTypeAdditional information
email

Customer e-mail

string

None.

subject

E-Mail Subject

string

None.

company_id

Company ID (NULL for Admin)

integer

None.

type

E-Mail type (Flickrocket, ProtectSoftware)

EmailType

None.

behavior

E-Mail behavior (SendAndStore, SendOnly, StoreOnly)

EmailBehavior

None.

data

E-Mail content (special key: -newline-)

Collection of Pair of string [key] and string [value]

None.

Request Format

{
  "email": "sample string 1",
  "subject": "sample string 2",
  "company_id": 1,
  "type": 0,
  "behavior": 0,
  "data": [
    {
      "Key": "sample string 1",
      "Value": "sample string 2"
    },
    {
      "Key": "sample string 1",
      "Value": "sample string 2"
    }
  ]
}

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.