POST api/users/ImportUser
Imports the User supplied into Sertica Sync User Import Queue
User is imported into SERTICA next time SERTICA Sync routing is executed
Required Headers:
Authorization: Basic Http Authorization with valid Sertica credentials
Returns:
200 OK - If supplied credentials are valid
401 Unauthorized - If credentials are invalid
Request Information
URI Parameters
None.
Body Parameters
User| Name | Description | Type | Additional information |
|---|---|---|---|
| UserNo | string |
Required Max length: 20 |
|
| Name | string |
Max length: 80 |
|
| Title | string |
Max length: 80 |
|
| string |
Max length: 255 |
||
| Phone | string |
Max length: 50 |
|
| Login | string |
Required Max length: 50 |
|
| Password | string |
Max length: 20 |
|
| WindowsLogon | string |
Max length: 60 |
|
| Language | string |
Required Max length: 10 |
|
| Access | boolean |
Required |
|
| IMONo | string |
Max length: 50 |
|
| ExternalGroupNo | string |
Required Max length: 50 |
|
| SignOn | date |
None. |
|
| SignOff | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserNo": "sample string 1",
"Name": "sample string 2",
"Title": "sample string 3",
"Email": "sample string 4",
"Phone": "sample string 5",
"Login": "sample string 6",
"Password": "sample string 7",
"WindowsLogon": "sample string 8",
"Language": "sample string 9",
"Access": true,
"IMONo": "sample string 10",
"ExternalGroupNo": "sample string 11",
"SignOn": "2026-01-11T09:34:47.653726+02:00",
"SignOff": "2026-01-11T09:34:47.653726+02:00"
}
application/xml, text/xml
Sample:
<User xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <UserNo>sample string 1</UserNo> <Name>sample string 2</Name> <Title>sample string 3</Title> <Email>sample string 4</Email> <Phone>sample string 5</Phone> <Login>sample string 6</Login> <Password>sample string 7</Password> <WindowsLogon>sample string 8</WindowsLogon> <Language>sample string 9</Language> <Access>true</Access> <IMONo>sample string 10</IMONo> <ExternalGroupNo>sample string 11</ExternalGroupNo> <SignOn>2026-01-11T09:34:47.653726+02:00</SignOn> <SignOff>2026-01-11T09:34:47.653726+02:00</SignOff> </User>
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |