POST Services

Request Information

URI Parameters

None.

Body Parameters

ServiceToCreate
NameDescriptionTypeAdditional information
ServicePointId

integer

None.

Keyword

string

None.

Description

string

None.

Enabled

boolean

None.

MessageTag

string

None.

MoveToFolderId

integer

None.

IsPrivate

boolean

None.

ServiceType

string

None.

Configuration

XElement

None.

Request Formats

application/json, text/json

Sample:
{
  "ServicePointId": 1,
  "Keyword": "sample string 2",
  "Description": "sample string 3",
  "Enabled": true,
  "MessageTag": "sample string 5",
  "MoveToFolderId": 1,
  "IsPrivate": true,
  "ServiceType": "sample string 7",
  "Configuration": null
}

application/xml, text/xml

Sample:
<Service xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Keyword>sample string 2</Keyword>
  <Description>sample string 3</Description>
  <Enabled>true</Enabled>
  <MessageTag>sample string 5</MessageTag>
  <MoveToFolderId>1</MoveToFolderId>
  <IsPrivate>true</IsPrivate>
  <ServiceType>sample string 7</ServiceType>
  <ServicePointId>1</ServicePointId>
</Service>

Response Information

Resource Description

integer

Response Formats

application/json, text/json

Sample:
1

application/xml, text/xml

Sample:
<int>1</int>