Create clients

post

/PASService/rest/services/clients

Creates single or multiple clients

Request

Supported Media Types
Body ()
Root Schema : schema
Type: string
Back to Top

Response

Supported Media Types

Default Response

successful operation
Back to Top

Examples

This example describes how to create a single or multiple clients.

Example cURL Command

Use the following cURL command to submit a request on the REST resource:

curl -X POST -H "Accept: application/json" -u username:password "server:port/PASService/rest/services/clients"

Example Request Body

The following shows an example of the request body in JSON format:

"{
  "clients": [
    {
      "dateOfBirth": "2020-01-06T00:00:00Z",
      "dateOfDeath": "2080-03-06T00:00:00Z",
      "updatedGmt": "2020-01-06T00:00:00Z",
      "companyName": "2020-01-06T00:00:00Z",
      "email": "sea@mail.com",
      "prefix": "04",
      "sex": "M",
      "suffix": "Mr",
      "legalResidenceCountryCode": "US",
      "additionalPrefix": "Mr",
      "additionalSuffix": "John",
      "title": "John",
      "maritalStatus": "00",
      "birthCountryCode": "CA",
      "citizenshipCountryCode": "CA",
      "birthRegionCode": "CA",
      "primaryPhone": "2323-2323",
      "textField1": "Shubhakankshi Bhukta",
      "textField2": "Shubhakankshi",
      "checkBox1": "Yes",
      "checkBox2": "Yes",
      "radio1": "True",
      "radio2": "True",
      "combo1": "A",
      "combo2": "B",
      "entityTypeCode": "CLIENT",
      "date1": "2020-01-06T00:00:00Z",
      "date2": "2020-01-06T00:00:00Z",
      "addresses": [
        
      ],
      "phones": [
        
      ],
      "clientId": "695634AC-F8AF-4109-ABA7-E849D08C1049",
      "firstName": "OIPA",
      "lastName": "QA1",
      "middleInitial": "Mr",
      "taxId": "923846729",
      "type": "02",
      "taxIdType": "A",
      "status": "Active",
      "companyId": "05711222-7DB3-4EBD-A821-57A30A699B88"
    }
  ]
}"

Example Response Body

The following shows an example of the response body in JSON format:

"{
  "clients": [
    "EA8B3C28-6950-407A-84DB-211AA99B0A2C"
  ]
}"
Back to Top