OPTIONS AddOrUpdateOrganization
Request Information
URI Parameters
None.
Body Parameters
OrganizationDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| name | string |
None. |
|
| isArchived | boolean |
None. |
|
| timezone | string |
None. |
|
| userPasswordExpirationDays | integer |
None. |
|
| maxFailedLoginCount | integer |
None. |
|
| allowPIN | boolean |
None. |
|
| PINMinLength | integer |
None. |
|
| customIdentifier1 | string |
None. |
|
| customIdentifier2 | string |
None. |
|
| customIdentifier3 | string |
None. |
|
| customIdentifier4 | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": 1,
"name": "sample string 1",
"isArchived": true,
"timezone": "sample string 2",
"userPasswordExpirationDays": 1,
"maxFailedLoginCount": 1,
"allowPIN": true,
"PINMinLength": 1,
"customIdentifier1": "sample string 3",
"customIdentifier2": "sample string 4",
"customIdentifier3": "sample string 5",
"customIdentifier4": "sample string 6"
}
application/xml, text/xml
Sample:
<OrganizationDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SecureMessagingAPI.Controllers"> <PINMinLength>1</PINMinLength> <allowPIN>true</allowPIN> <customIdentifier1>sample string 3</customIdentifier1> <customIdentifier2>sample string 4</customIdentifier2> <customIdentifier3>sample string 5</customIdentifier3> <customIdentifier4>sample string 6</customIdentifier4> <id>1</id> <isArchived>true</isArchived> <maxFailedLoginCount>1</maxFailedLoginCount> <name>sample string 1</name> <timezone>sample string 2</timezone> <userPasswordExpirationDays>1</userPasswordExpirationDays> </OrganizationDTO>
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.