Get list of clients
get
/PASService/rest/services/v1/clients
Gets a list of the latest 100 clients. Also, define expand attributes to expand clients through sub-resources, such as addresses and phones. For each client, the response contains an array of all client fields.
Request
Query Parameters
-
expand: string
When this parameter is provided, the specified children are included in the resource payload (instead of just a link). The value of this query parameter is "all" or "the name of the child resource". More than one child can be specified using comma as a separator. Example:?expand=Employees,Localizations. Nested children can also be provided following the format "Child.NestedChild" (Example: ?expand=Employees.Managers). If a nested child is provided (Example: Employees.Managers), the missing children will be processed implicitly. For example, "?expand=Employees.Managers" is the same as "?expand=Employees,Employees.Managers" (which will expand Employees and Managers). More than one child can be specified using comma as a separator. For example: "?expand=Employees,Localizations". Nested children can also be provided following the format: "Child.NestedChild" For example:"?expand=Employees.Managers" If a nested child is provided (Example:Employees.Managers), the missing children will be processed implicitly i.e.,"?expand=Employees.Managers" is the same as "?expand=Employees,Employees.Managers", which will expand both Employees and Managers.
-
limit: integer(int32)
This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.
-
offset: integer(int32)
Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.
-
q: string
This query parameter defines the where clause. The resource collection will be queried using the provided expressions. The value of this query parameter is one or more expressions. Example: ?q=Deptno>=10 and <= 30;loc!="NY.=>
There's no request body for this operation.
Back to TopResponse
200 Response
This operation fetches the list of clients sucessfully.
Examples
This example describes how to get a list of the latest 100 clients. Also, define expand attributes to expand a client by its sub-resources, such as addresses and phones.
Example cURL Command
Use the following cURL command to submit a request on the REST resource:
curl \ -X GET \ -H "Content-Type: application/json" \ -u 'Authorization: Basic dXNlcm5hbWU6cGFzc3dvcmQ=' \ -L "http://server:port/PASService/rest/services/v1/clients"
Example Response Body
The following shows an example of the response body in JSON format:
{
"count": 32,
"offset": 0,
"limit": 100,
"clients": [
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/D15D650D-987B-4EB2-BF64-3F60DF61C190",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/D15D650D-987B-4EB2-BF64-3F60DF61C190/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/D15D650D-987B-4EB2-BF64-3F60DF61C190/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=01",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {},
"dateOfBirth": null,
"dateOfDeath": null,
"updatedGmt": null,
"companyName": "Prototype Company",
"email": null,
"prefix": null,
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": "US",
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": null,
"birthCountryCode": null,
"citizenshipCountryCode": null,
"birthRegionCode": null,
"primaryPhone": null,
"textField1": null,
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": null,
"phones": null,
"clientId": "D15D650D-987B-4EB2-BF64-3F60DF61C190",
"firstName": null,
"lastName": null,
"middleInitial": null,
"taxId": null,
"type": "01",
"taxIdType": null,
"status": null,
"companyId": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/23706747-021C-465F-BD2C-15CC18DCDA4D",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/23706747-021C-465F-BD2C-15CC18DCDA4D/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/23706747-021C-465F-BD2C-15CC18DCDA4D/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=01",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {},
"dateOfBirth": null,
"dateOfDeath": null,
"updatedGmt": null,
"companyName": "Prototype Group Child Company",
"email": null,
"prefix": null,
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": "US",
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": null,
"birthCountryCode": null,
"citizenshipCountryCode": null,
"birthRegionCode": null,
"primaryPhone": null,
"textField1": null,
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": null,
"phones": null,
"clientId": "23706747-021C-465F-BD2C-15CC18DCDA4D",
"firstName": null,
"lastName": null,
"middleInitial": null,
"taxId": null,
"type": "01",
"taxIdType": null,
"status": null,
"companyId": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/23706747-021C-465F-BD2C-15CC18DCDA4D",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/23706747-021C-465F-BD2C-15CC18DCDA4D/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/23706747-021C-465F-BD2C-15CC18DCDA4D/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=01",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {},
"dateOfBirth": null,
"dateOfDeath": null,
"updatedGmt": null,
"companyName": "Prototype Group Child Company",
"email": null,
"prefix": null,
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": "US",
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": null,
"birthCountryCode": null,
"citizenshipCountryCode": null,
"birthRegionCode": null,
"primaryPhone": null,
"textField1": null,
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": null,
"phones": null,
"clientId": "23706747-021C-465F-BD2C-15CC18DCDA4D",
"firstName": null,
"lastName": null,
"middleInitial": null,
"taxId": null,
"type": "01",
"taxIdType": null,
"status": null,
"companyId": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/65249EE7-DE8F-4798-AD5A-D20E42D99C12",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/65249EE7-DE8F-4798-AD5A-D20E42D99C12/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/65249EE7-DE8F-4798-AD5A-D20E42D99C12/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=01",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {},
"dateOfBirth": null,
"dateOfDeath": null,
"updatedGmt": null,
"companyName": "Prototype Child Company",
"email": null,
"prefix": null,
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": "US",
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": null,
"birthCountryCode": null,
"citizenshipCountryCode": null,
"birthRegionCode": null,
"primaryPhone": null,
"textField1": null,
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": null,
"phones": null,
"clientId": "65249EE7-DE8F-4798-AD5A-D20E42D99C12",
"firstName": null,
"lastName": null,
"middleInitial": null,
"taxId": null,
"type": "01",
"taxIdType": null,
"status": null,
"companyId": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/65249EE7-DE8F-4798-AD5A-D20E42D99C12",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/65249EE7-DE8F-4798-AD5A-D20E42D99C12/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/65249EE7-DE8F-4798-AD5A-D20E42D99C12/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=01",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {},
"dateOfBirth": null,
"dateOfDeath": null,
"updatedGmt": null,
"companyName": "Prototype Child Company",
"email": null,
"prefix": null,
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": "US",
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": null,
"birthCountryCode": null,
"citizenshipCountryCode": null,
"birthRegionCode": null,
"primaryPhone": null,
"textField1": null,
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": null,
"phones": null,
"clientId": "65249EE7-DE8F-4798-AD5A-D20E42D99C12",
"firstName": null,
"lastName": null,
"middleInitial": null,
"taxId": null,
"type": "01",
"taxIdType": null,
"status": null,
"companyId": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/A1E20C74-9484-4239-9D79-DA2CC4685734",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/A1E20C74-9484-4239-9D79-DA2CC4685734/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/A1E20C74-9484-4239-9D79-DA2CC4685734/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=02",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=MaritalStatus&codeValue=00",
"rel": "codes/maritalStatus",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {
"Accounts": [
{
"index": 0,
"BankAccountName": null,
"BankRoutingNumber": null,
"AccountType": {
"textValue": "01",
"optionText": "Checking"
},
"BankAccountNumber": null
}
]
},
"dateOfBirth": "1997-11-04T00:00:00Z",
"dateOfDeath": null,
"updatedGmt": "2023-09-19T09:38:44Z",
"companyName": null,
"email": null,
"prefix": "01",
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": "US",
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": "00",
"birthCountryCode": "CA",
"citizenshipCountryCode": "CA",
"birthRegionCode": null,
"primaryPhone": null,
"textField1": "00",
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": [
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/A1E20C74-9484-4239-9D79-DA2CC4685734/addresses/1525C0BD-F80F-4B8D-9F6E-FCD736AAFAC5",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
}
]
}
],
"phones": null,
"clientId": "A1E20C74-9484-4239-9D79-DA2CC4685734",
"firstName": "ramya",
"lastName": "ramthis",
"middleInitial": "fsfsdfsdf",
"taxId": "999999999",
"type": "02",
"taxIdType": null,
"status": "Active",
"companyId": null,
"TaxIDSource": {
"textValue": "01",
"optionText": "Application"
},
"PersonSponsorID": null,
"LetterSendDate": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/CF8BFC00-56AA-4667-93BF-71755409CD43",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/CF8BFC00-56AA-4667-93BF-71755409CD43/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/CF8BFC00-56AA-4667-93BF-71755409CD43/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=02",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=MaritalStatus&codeValue=00",
"rel": "codes/maritalStatus",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {
"Accounts": [
{
"index": 0,
"BankAccountName": null,
"BankRoutingNumber": null,
"AccountType": {
"textValue": "01",
"optionText": "Checking"
},
"BankAccountNumber": null
}
]
},
"dateOfBirth": "1990-01-01T00:00:00Z",
"dateOfDeath": null,
"updatedGmt": "2023-02-07T08:23:50Z",
"companyName": null,
"email": null,
"prefix": "01",
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": "US",
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": "00",
"birthCountryCode": "CA",
"citizenshipCountryCode": "CA",
"birthRegionCode": null,
"primaryPhone": null,
"textField1": "00",
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": null,
"phones": null,
"clientId": "CF8BFC00-56AA-4667-93BF-71755409CD43",
"firstName": "QA",
"lastName": "Client",
"middleInitial": null,
"taxId": "123456789",
"type": "02",
"taxIdType": null,
"status": "Active",
"companyId": null,
"TaxIDSource": {
"textValue": "01",
"optionText": "Application"
},
"LetterSendDate": null,
"PersonSponsorID": null,
"TransactionField": null,
"TestField": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/1DAAAA07-C997-4386-A80E-F17550D41384",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/1DAAAA07-C997-4386-A80E-F17550D41384/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/1DAAAA07-C997-4386-A80E-F17550D41384/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=02",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=MaritalStatus&codeValue=00",
"rel": "codes/maritalStatus",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {
"Accounts": [
{
"index": 0,
"BankAccountName": null,
"BankRoutingNumber": null,
"AccountType": {
"textValue": "01",
"optionText": "Checking"
},
"BankAccountNumber": null
}
]
},
"dateOfBirth": "1990-01-01T00:00:00Z",
"dateOfDeath": null,
"updatedGmt": "2023-02-01T08:31:12Z",
"companyName": null,
"email": null,
"prefix": "04",
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": "US",
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": "00",
"birthCountryCode": "CA",
"citizenshipCountryCode": "CA",
"birthRegionCode": null,
"primaryPhone": null,
"textField1": "00",
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": null,
"phones": null,
"clientId": "1DAAAA07-C997-4386-A80E-F17550D41384",
"firstName": "Client",
"lastName": "Client",
"middleInitial": null,
"taxId": "987654321",
"type": "02",
"taxIdType": null,
"status": "Active",
"companyId": null,
"TaxIDSource": {
"textValue": "01",
"optionText": "Application"
},
"LetterSendDate": null,
"PersonSponsorID": null,
"TransactionField": null,
"TestField": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/98F805D8-C5A9-44E4-AD52-366069979FE5",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/98F805D8-C5A9-44E4-AD52-366069979FE5/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/98F805D8-C5A9-44E4-AD52-366069979FE5/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=02",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=MaritalStatus&codeValue=00",
"rel": "codes/maritalStatus",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {
"Accounts": [
{
"index": 0,
"BankAccountName": null,
"BankRoutingNumber": null,
"AccountType": {
"textValue": "01",
"optionText": "Checking"
},
"BankAccountNumber": null
}
]
},
"dateOfBirth": "1980-01-01T00:00:00Z",
"dateOfDeath": null,
"updatedGmt": "2023-01-31T06:13:08Z",
"companyName": null,
"email": null,
"prefix": "01",
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": null,
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": "00",
"birthCountryCode": "CA",
"citizenshipCountryCode": "CA",
"birthRegionCode": null,
"primaryPhone": null,
"textField1": "00",
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": null,
"phones": null,
"clientId": "98F805D8-C5A9-44E4-AD52-366069979FE5",
"firstName": "Jon",
"lastName": "Client",
"middleInitial": null,
"taxId": "123456789",
"type": "02",
"taxIdType": null,
"status": "Active",
"companyId": null,
"TaxIDSource": {
"textValue": "01",
"optionText": "Application"
},
"PersonSponsorID": null,
"LetterSendDate": null,
"TransactionField": null,
"TestField": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/7A51150D-EA45-4271-B64D-8ADC849F5751",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/7A51150D-EA45-4271-B64D-8ADC849F5751/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/7A51150D-EA45-4271-B64D-8ADC849F5751/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=02",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=MaritalStatus&codeValue=00",
"rel": "codes/maritalStatus",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {
"Accounts": [
{
"index": 0,
"BankAccountName": null,
"BankRoutingNumber": null,
"AccountType": {
"textValue": "01",
"optionText": "Checking"
},
"BankAccountNumber": null
}
]
},
"dateOfBirth": "1990-01-01T00:00:00Z",
"dateOfDeath": null,
"updatedGmt": "2023-01-31T06:12:44Z",
"companyName": null,
"email": null,
"prefix": "04",
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": null,
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": "00",
"birthCountryCode": "CA",
"citizenshipCountryCode": "CA",
"birthRegionCode": null,
"primaryPhone": null,
"textField1": "00",
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": null,
"phones": null,
"clientId": "7A51150D-EA45-4271-B64D-8ADC849F5751",
"firstName": "Charlie",
"lastName": "Client",
"middleInitial": null,
"taxId": "123456789",
"type": "02",
"taxIdType": null,
"status": "Active",
"companyId": null,
"TaxIDSource": {
"textValue": "01",
"optionText": "Application"
},
"PersonSponsorID": null,
"LetterSendDate": null,
"TransactionField": null,
"TestField": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/DD0A1EAF-829D-4B3C-B2E3-3ECAC0D143AC",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/DD0A1EAF-829D-4B3C-B2E3-3ECAC0D143AC/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/DD0A1EAF-829D-4B3C-B2E3-3ECAC0D143AC/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=02",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=MaritalStatus&codeValue=00",
"rel": "codes/maritalStatus",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {
"Accounts": [
{
"index": 0,
"BankAccountName": null,
"BankRoutingNumber": null,
"AccountType": {
"textValue": "01",
"optionText": "Checking"
},
"BankAccountNumber": null
}
]
},
"dateOfBirth": "1979-01-01T00:00:00Z",
"dateOfDeath": null,
"updatedGmt": "2023-01-19T06:59:10Z",
"companyName": null,
"email": null,
"prefix": "04",
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": "US",
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": "00",
"birthCountryCode": "CA",
"citizenshipCountryCode": "CA",
"birthRegionCode": null,
"primaryPhone": null,
"textField1": "00",
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": [
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/DD0A1EAF-829D-4B3C-B2E3-3ECAC0D143AC/addresses/0BF657F2-C9FC-4871-A744-1535FD77F8D5",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
}
]
}
],
"phones": null,
"clientId": "DD0A1EAF-829D-4B3C-B2E3-3ECAC0D143AC",
"firstName": "asdf",
"lastName": "asdf",
"middleInitial": null,
"taxId": "123456789",
"type": "02",
"taxIdType": null,
"status": "Active",
"companyId": null,
"TaxIDSource": {
"textValue": "01",
"optionText": "Application"
},
"LetterSendDate": null,
"PersonSponsorID": null,
"TransactionField": null,
"TestField": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/90B3BDCC-EB30-48F1-8CA4-E224BAB68EB3",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/90B3BDCC-EB30-48F1-8CA4-E224BAB68EB3/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/90B3BDCC-EB30-48F1-8CA4-E224BAB68EB3/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=02",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=MaritalStatus&codeValue=00",
"rel": "codes/maritalStatus",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {
"Accounts": [
{
"index": 0,
"BankAccountName": null,
"BankRoutingNumber": null,
"AccountType": {
"textValue": "01",
"optionText": "Checking"
},
"BankAccountNumber": null
}
]
},
"dateOfBirth": "1980-01-01T00:00:00Z",
"dateOfDeath": null,
"updatedGmt": "2023-01-19T06:56:00Z",
"companyName": null,
"email": null,
"prefix": "04",
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": "US",
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": "00",
"birthCountryCode": "CA",
"citizenshipCountryCode": "CA",
"birthRegionCode": null,
"primaryPhone": null,
"textField1": "00",
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": [
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/90B3BDCC-EB30-48F1-8CA4-E224BAB68EB3/addresses/FAE07D9D-3222-4EDB-A162-57A1A6FAC59C",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
}
]
}
],
"phones": null,
"clientId": "90B3BDCC-EB30-48F1-8CA4-E224BAB68EB3",
"firstName": "demo123",
"lastName": "demo123",
"middleInitial": null,
"taxId": "123456789",
"type": "02",
"taxIdType": null,
"status": "Active",
"companyId": null,
"TaxIDSource": {
"textValue": "01",
"optionText": "Application"
},
"LetterSendDate": null,
"PersonSponsorID": null,
"TransactionField": null,
"TestField": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/C1376CB2-ED32-43AD-8AF2-3FCC7E230E22",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/C1376CB2-ED32-43AD-8AF2-3FCC7E230E22/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/C1376CB2-ED32-43AD-8AF2-3FCC7E230E22/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=02",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=MaritalStatus&codeValue=00",
"rel": "codes/maritalStatus",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {
"Accounts": [
{
"index": 0,
"BankAccountName": null,
"BankRoutingNumber": null,
"AccountType": {
"textValue": "01",
"optionText": "Checking"
},
"BankAccountNumber": null
}
]
},
"dateOfBirth": "1990-01-01T00:00:00Z",
"dateOfDeath": null,
"updatedGmt": "2022-04-22T07:07:57Z",
"companyName": null,
"email": null,
"prefix": "04",
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": "US",
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": "00",
"birthCountryCode": "CA",
"citizenshipCountryCode": "CA",
"birthRegionCode": null,
"primaryPhone": null,
"textField1": "00",
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": null,
"phones": null,
"clientId": "C1376CB2-ED32-43AD-8AF2-3FCC7E230E22",
"firstName": "test01",
"lastName": "test01",
"middleInitial": null,
"taxId": "123456789",
"type": "02",
"taxIdType": null,
"status": "Active",
"companyId": null,
"TaxIDSource": {
"textValue": "01",
"optionText": "Application"
},
"LetterSendDate": null,
"PersonSponsorID": null,
"TransactionField": null,
"TestField": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/2E52E0E8-CBA6-42A5-8F3F-4E26BEEB3522",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/2E52E0E8-CBA6-42A5-8F3F-4E26BEEB3522/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/2E52E0E8-CBA6-42A5-8F3F-4E26BEEB3522/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=02",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=MaritalStatus&codeValue=00",
"rel": "codes/maritalStatus",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {
"Accounts": [
{
"index": 0,
"BankAccountName": null,
"BankRoutingNumber": null,
"AccountType": {
"textValue": "01",
"optionText": "Checking"
},
"BankAccountNumber": null
}
]
},
"dateOfBirth": "1994-02-13T00:00:00Z",
"dateOfDeath": null,
"updatedGmt": "2021-11-09T12:30:58Z",
"companyName": null,
"email": null,
"prefix": "04",
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": null,
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": "00",
"birthCountryCode": "CA",
"citizenshipCountryCode": "CA",
"birthRegionCode": null,
"primaryPhone": null,
"textField1": "00",
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": [
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/2E52E0E8-CBA6-42A5-8F3F-4E26BEEB3522/addresses/736B2E89-2B85-4916-AA56-BA127B639FDE",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
}
]
}
],
"phones": null,
"clientId": "2E52E0E8-CBA6-42A5-8F3F-4E26BEEB3522",
"firstName": "Raju",
"lastName": "rani",
"middleInitial": null,
"taxId": "564452233",
"type": "02",
"taxIdType": null,
"status": "Active",
"companyId": null,
"TaxIDSource": {
"textValue": "01",
"optionText": "Application"
},
"LetterSendDate": null,
"PersonSponsorID": null,
"TransactionField": null,
"TestField": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/9FDA25AB-95AB-47FE-856E-639E85559312",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/9FDA25AB-95AB-47FE-856E-639E85559312/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/9FDA25AB-95AB-47FE-856E-639E85559312/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=02",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=MaritalStatus&codeValue=00",
"rel": "codes/maritalStatus",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {
"Accounts": [
{
"index": 0,
"BankAccountName": null,
"BankRoutingNumber": null,
"AccountType": {
"textValue": "01",
"optionText": "Checking"
},
"BankAccountNumber": null
}
]
},
"dateOfBirth": "1997-11-11T00:00:00Z",
"dateOfDeath": null,
"updatedGmt": "2021-11-09T11:39:20Z",
"companyName": null,
"email": null,
"prefix": "04",
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": "US",
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": "00",
"birthCountryCode": "CA",
"citizenshipCountryCode": "CA",
"birthRegionCode": null,
"primaryPhone": null,
"textField1": "00",
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": null,
"phones": null,
"clientId": "9FDA25AB-95AB-47FE-856E-639E85559312",
"firstName": "Raju",
"lastName": "rani",
"middleInitial": null,
"taxId": "897788766",
"type": "02",
"taxIdType": null,
"status": "Active",
"companyId": null,
"TaxIDSource": {
"textValue": "01",
"optionText": "Application"
},
"PersonSponsorID": null,
"LetterSendDate": null,
"TransactionField": null,
"TestField": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/2B4123D2-FA8D-4C50-B2F4-E70B7A3EE4E6",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/2B4123D2-FA8D-4C50-B2F4-E70B7A3EE4E6/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/2B4123D2-FA8D-4C50-B2F4-E70B7A3EE4E6/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=02",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=MaritalStatus&codeValue=00",
"rel": "codes/maritalStatus",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {
"Accounts": [
{
"index": 0,
"BankAccountName": null,
"BankRoutingNumber": null,
"AccountType": {
"textValue": "01",
"optionText": "Checking"
},
"BankAccountNumber": null
}
]
},
"dateOfBirth": "1990-12-12T00:00:00Z",
"dateOfDeath": null,
"updatedGmt": "2021-11-09T11:09:57Z",
"companyName": null,
"email": null,
"prefix": "04",
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": "US",
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": "00",
"birthCountryCode": "CA",
"citizenshipCountryCode": "CA",
"birthRegionCode": null,
"primaryPhone": null,
"textField1": "00",
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": [
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/2B4123D2-FA8D-4C50-B2F4-E70B7A3EE4E6/addresses/4601C543-4420-4432-BB79-1E9C89F2F0F3",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
}
]
}
],
"phones": null,
"clientId": "2B4123D2-FA8D-4C50-B2F4-E70B7A3EE4E6",
"firstName": "Bahu",
"lastName": "bali",
"middleInitial": null,
"taxId": "989898899",
"type": "02",
"taxIdType": null,
"status": "Active",
"companyId": null,
"TaxIDSource": {
"textValue": "01",
"optionText": "Application"
},
"PersonSponsorID": null,
"LetterSendDate": null,
"TransactionField": null,
"TestField": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/B6C8E247-58A2-404F-BB41-4102233BF9D6",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/B6C8E247-58A2-404F-BB41-4102233BF9D6/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/B6C8E247-58A2-404F-BB41-4102233BF9D6/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=02",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=MaritalStatus&codeValue=00",
"rel": "codes/maritalStatus",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {
"Accounts": [
{
"index": 0,
"BankAccountName": null,
"BankRoutingNumber": null,
"AccountType": {
"textValue": "01",
"optionText": "Checking"
},
"BankAccountNumber": null
}
]
},
"dateOfBirth": "1990-01-01T00:00:00Z",
"dateOfDeath": null,
"updatedGmt": "2021-11-09T09:01:51Z",
"companyName": null,
"email": null,
"prefix": "04",
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": null,
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": "00",
"birthCountryCode": "CA",
"citizenshipCountryCode": "CA",
"birthRegionCode": null,
"primaryPhone": null,
"textField1": "test",
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": null,
"phones": null,
"clientId": "B6C8E247-58A2-404F-BB41-4102233BF9D6",
"firstName": "PBTest1",
"lastName": "PBTest1",
"middleInitial": null,
"taxId": "980102912",
"type": "02",
"taxIdType": null,
"status": "Active",
"companyId": null,
"TaxIDSource": {
"textValue": "01",
"optionText": "Application"
},
"PersonSponsorID": null,
"LetterSendDate": null,
"TransactionField": null,
"TestField": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/EFAA09EC-2C7B-4431-B4AC-5851B8BDCFC7",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/EFAA09EC-2C7B-4431-B4AC-5851B8BDCFC7/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/EFAA09EC-2C7B-4431-B4AC-5851B8BDCFC7/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=02",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=MaritalStatus&codeValue=00",
"rel": "codes/maritalStatus",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {
"Accounts": [
{
"index": 0,
"BankAccountName": null,
"BankRoutingNumber": null,
"AccountType": {
"textValue": "01",
"optionText": "Checking"
},
"BankAccountNumber": null
}
]
},
"dateOfBirth": "1990-01-01T00:00:00Z",
"dateOfDeath": null,
"updatedGmt": "2021-11-09T09:01:15Z",
"companyName": null,
"email": null,
"prefix": "04",
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": "US",
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": "00",
"birthCountryCode": "CA",
"citizenshipCountryCode": "CA",
"birthRegionCode": null,
"primaryPhone": null,
"textField1": "00",
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": null,
"phones": null,
"clientId": "EFAA09EC-2C7B-4431-B4AC-5851B8BDCFC7",
"firstName": "PB_reqCL01",
"lastName": "PB_reqCL01",
"middleInitial": null,
"taxId": "908123031",
"type": "02",
"taxIdType": null,
"status": "Active",
"companyId": null,
"TaxIDSource": {
"textValue": "01",
"optionText": "Application"
},
"PersonSponsorID": "test",
"LetterSendDate": null,
"TransactionField": null,
"TestField": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/5FD995B1-3BD8-4D78-BF06-BFCD8EA416D2",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/5FD995B1-3BD8-4D78-BF06-BFCD8EA416D2/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/5FD995B1-3BD8-4D78-BF06-BFCD8EA416D2/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=02",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=MaritalStatus&codeValue=01",
"rel": "codes/maritalStatus",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {
"Accounts": [
{
"index": 0,
"BankAccountName": null,
"BankRoutingNumber": null,
"AccountType": {
"textValue": "01",
"optionText": "Checking"
},
"BankAccountNumber": null
}
]
},
"dateOfBirth": "1991-01-01T00:00:00Z",
"dateOfDeath": null,
"updatedGmt": "2021-11-08T11:16:35Z",
"companyName": null,
"email": null,
"prefix": "01",
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": "US",
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": "01",
"birthCountryCode": "US",
"citizenshipCountryCode": "US",
"birthRegionCode": null,
"primaryPhone": null,
"textField1": "00",
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": [
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/5FD995B1-3BD8-4D78-BF06-BFCD8EA416D2/addresses/086F5CF6-1F26-4B29-AFAC-6C39CFB498D9",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
}
]
}
],
"phones": null,
"clientId": "5FD995B1-3BD8-4D78-BF06-BFCD8EA416D2",
"firstName": "SS_ListBill_First_01",
"lastName": "SS_ListBill_First_01",
"middleInitial": "SS_ListBill_First_01",
"taxId": "456234123",
"type": "02",
"taxIdType": null,
"status": "Active",
"companyId": null,
"TaxIDSource": {
"textValue": "01",
"optionText": "Application"
},
"PersonSponsorID": null,
"LetterSendDate": null,
"TransactionField": null,
"TestField": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/3F9E5B49-06FD-4DDC-8939-A3B94E669935",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/3F9E5B49-06FD-4DDC-8939-A3B94E669935/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/3F9E5B49-06FD-4DDC-8939-A3B94E669935/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=02",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=MaritalStatus&codeValue=00",
"rel": "codes/maritalStatus",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {
"Accounts": [
{
"index": 0,
"BankAccountName": null,
"BankRoutingNumber": null,
"AccountType": {
"textValue": "01",
"optionText": "Checking"
},
"BankAccountNumber": null
}
]
},
"dateOfBirth": "1990-01-01T00:00:00Z",
"dateOfDeath": null,
"updatedGmt": "2021-11-03T05:43:35Z",
"companyName": null,
"email": null,
"prefix": "01",
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": "US",
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": "00",
"birthCountryCode": "CA",
"citizenshipCountryCode": "CA",
"birthRegionCode": null,
"primaryPhone": null,
"textField1": "00",
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": null,
"phones": null,
"clientId": "3F9E5B49-06FD-4DDC-8939-A3B94E669935",
"firstName": "dad",
"lastName": "dad123",
"middleInitial": null,
"taxId": "123456789",
"type": "02",
"taxIdType": null,
"status": "Active",
"companyId": null,
"TaxIDSource": {
"textValue": "01",
"optionText": "Application"
},
"PersonSponsorID": null,
"LetterSendDate": null,
"TransactionField": null,
"TestField": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/1E6C63C6-E420-409E-886E-36CA76080E70",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/1E6C63C6-E420-409E-886E-36CA76080E70/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/1E6C63C6-E420-409E-886E-36CA76080E70/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=02",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=MaritalStatus&codeValue=00",
"rel": "codes/maritalStatus",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {
"Accounts": [
{
"index": 0,
"BankAccountName": "ryttyrty",
"BankRoutingNumber": "4555656",
"AccountType": {
"textValue": "01",
"optionText": "Checking"
},
"BankAccountNumber": "fgfggfg"
}
]
},
"dateOfBirth": "2000-01-01T00:00:00Z",
"dateOfDeath": null,
"updatedGmt": "2021-10-28T09:08:46Z",
"companyName": null,
"email": null,
"prefix": "01",
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": "US",
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": "00",
"birthCountryCode": "CA",
"citizenshipCountryCode": "CA",
"birthRegionCode": null,
"primaryPhone": null,
"textField1": "00",
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": [
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/1E6C63C6-E420-409E-886E-36CA76080E70/addresses/110734E6-A724-4DE7-8C46-07EB9D8C9DB3",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
}
]
}
],
"phones": null,
"clientId": "1E6C63C6-E420-409E-886E-36CA76080E70",
"firstName": "ApplyBy",
"lastName": "Fund",
"middleInitial": null,
"taxId": "343234565",
"type": "02",
"taxIdType": null,
"status": "Active",
"companyId": null,
"TaxIDSource": {
"textValue": "01",
"optionText": "Application"
},
"PersonSponsorID": null,
"LetterSendDate": null,
"TransactionField": null,
"TestField": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/24F6AA21-BF7D-498F-B513-AF2D3C03192B",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/24F6AA21-BF7D-498F-B513-AF2D3C03192B/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/24F6AA21-BF7D-498F-B513-AF2D3C03192B/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=02",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=MaritalStatus&codeValue=00",
"rel": "codes/maritalStatus",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {
"Accounts": [
{
"index": 0,
"BankAccountName": null,
"BankRoutingNumber": null,
"AccountType": {
"textValue": "01",
"optionText": "Checking"
},
"BankAccountNumber": null
}
]
},
"dateOfBirth": "1990-10-07T00:00:00Z",
"dateOfDeath": null,
"updatedGmt": "2021-10-28T08:23:47Z",
"companyName": null,
"email": null,
"prefix": "04",
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": "US",
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": "00",
"birthCountryCode": "CA",
"citizenshipCountryCode": "CA",
"birthRegionCode": null,
"primaryPhone": null,
"textField1": "00",
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": null,
"phones": null,
"clientId": "24F6AA21-BF7D-498F-B513-AF2D3C03192B",
"firstName": "John",
"lastName": "Smith",
"middleInitial": null,
"taxId": "123123123",
"type": "02",
"taxIdType": null,
"status": "Active",
"companyId": null,
"TaxIDSource": {
"textValue": "01",
"optionText": "Application"
},
"PersonSponsorID": null,
"LetterSendDate": null,
"TransactionField": null,
"TestField": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/7F82737B-515C-4F5D-97B5-1B903976CF00",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/7F82737B-515C-4F5D-97B5-1B903976CF00/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/7F82737B-515C-4F5D-97B5-1B903976CF00/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=02",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=MaritalStatus&codeValue=00",
"rel": "codes/maritalStatus",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {
"Accounts": [
{
"index": 0,
"BankAccountName": "asdasd",
"BankRoutingNumber": "22334",
"AccountType": {
"textValue": "01",
"optionText": "Checking"
},
"BankAccountNumber": "1232"
}
]
},
"dateOfBirth": "1990-10-07T00:00:00Z",
"dateOfDeath": null,
"updatedGmt": "2021-10-28T06:32:57Z",
"companyName": null,
"email": null,
"prefix": "01",
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": "US",
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": "00",
"birthCountryCode": "CA",
"citizenshipCountryCode": "CA",
"birthRegionCode": null,
"primaryPhone": null,
"textField1": "00",
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": null,
"phones": null,
"clientId": "7F82737B-515C-4F5D-97B5-1B903976CF00",
"firstName": "John",
"lastName": "Smith",
"middleInitial": null,
"taxId": "123456789",
"type": "02",
"taxIdType": null,
"status": "Active",
"companyId": null,
"TaxIDSource": {
"textValue": "01",
"optionText": "Application"
},
"PersonSponsorID": null,
"LetterSendDate": null,
"TransactionField": null,
"TestField": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/E324DF7E-094D-4B4A-9DAF-06F4310B2A43",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/E324DF7E-094D-4B4A-9DAF-06F4310B2A43/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/E324DF7E-094D-4B4A-9DAF-06F4310B2A43/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=02",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=MaritalStatus&codeValue=00",
"rel": "codes/maritalStatus",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {
"Accounts": [
{
"index": 0,
"BankAccountName": null,
"BankRoutingNumber": null,
"AccountType": {
"textValue": "01",
"optionText": "Checking"
},
"BankAccountNumber": null
}
]
},
"dateOfBirth": "1995-01-01T00:00:00Z",
"dateOfDeath": null,
"updatedGmt": "2021-10-27T05:28:34Z",
"companyName": null,
"email": null,
"prefix": "01",
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": "US",
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": "00",
"birthCountryCode": "CA",
"citizenshipCountryCode": "CA",
"birthRegionCode": null,
"primaryPhone": null,
"textField1": "00",
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": [
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/E324DF7E-094D-4B4A-9DAF-06F4310B2A43/addresses/09B847EA-A684-40C0-B0C7-E00C2D4EC0F6",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
}
]
}
],
"phones": null,
"clientId": "E324DF7E-094D-4B4A-9DAF-06F4310B2A43",
"firstName": "testing bug",
"lastName": null,
"middleInitial": null,
"taxId": "786543895",
"type": "02",
"taxIdType": null,
"status": "Active",
"companyId": null,
"TaxIDSource": {
"textValue": "01",
"optionText": "Application"
},
"PersonSponsorID": null,
"LetterSendDate": null,
"TransactionField": null,
"TestField": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/662402F0-BE38-4B26-B2E2-24B35C373D56",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/662402F0-BE38-4B26-B2E2-24B35C373D56/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/662402F0-BE38-4B26-B2E2-24B35C373D56/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=02",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=MaritalStatus&codeValue=00",
"rel": "codes/maritalStatus",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {
"Accounts": [
{
"index": 0,
"BankAccountName": null,
"BankRoutingNumber": null,
"AccountType": {
"textValue": "01",
"optionText": "Checking"
},
"BankAccountNumber": null
}
]
},
"dateOfBirth": "1995-01-01T00:00:00Z",
"dateOfDeath": null,
"updatedGmt": "2021-10-26T07:03:45Z",
"companyName": null,
"email": null,
"prefix": "01",
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": "US",
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": "00",
"birthCountryCode": "CA",
"citizenshipCountryCode": "CA",
"birthRegionCode": null,
"primaryPhone": null,
"textField1": "00",
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": null,
"phones": null,
"clientId": "662402F0-BE38-4B26-B2E2-24B35C373D56",
"firstName": "nby",
"lastName": null,
"middleInitial": null,
"taxId": "765437890",
"type": "02",
"taxIdType": null,
"status": "Active",
"companyId": null,
"TaxIDSource": {
"textValue": "01",
"optionText": "Application"
},
"PersonSponsorID": null,
"LetterSendDate": null,
"TransactionField": null,
"TestField": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/FAEE1B1A-FDA9-4210-BF3C-41EE66407E05",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/FAEE1B1A-FDA9-4210-BF3C-41EE66407E05/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/FAEE1B1A-FDA9-4210-BF3C-41EE66407E05/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=02",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=MaritalStatus&codeValue=01",
"rel": "codes/maritalStatus",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {
"Accounts": [
{
"index": 0,
"BankAccountName": null,
"BankRoutingNumber": null,
"AccountType": {
"textValue": "02",
"optionText": "Savings"
},
"BankAccountNumber": "111"
}
]
},
"dateOfBirth": "1991-10-01T00:00:00Z",
"dateOfDeath": null,
"updatedGmt": "2021-10-25T13:45:48Z",
"companyName": null,
"email": null,
"prefix": "01",
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": "US",
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": "01",
"birthCountryCode": "US",
"citizenshipCountryCode": "US",
"birthRegionCode": null,
"primaryPhone": null,
"textField1": "00",
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": null,
"phones": null,
"clientId": "FAEE1B1A-FDA9-4210-BF3C-41EE66407E05",
"firstName": "FN",
"lastName": "LN",
"middleInitial": null,
"taxId": "123456789",
"type": "02",
"taxIdType": null,
"status": "Active",
"companyId": null,
"TaxIDSource": {
"textValue": "01",
"optionText": "Application"
},
"PersonSponsorID": null,
"LetterSendDate": null,
"TransactionField": null,
"TestField": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/51E5DE70-E54C-4FA2-A5F5-9040560061F8",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/51E5DE70-E54C-4FA2-A5F5-9040560061F8/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/51E5DE70-E54C-4FA2-A5F5-9040560061F8/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=17",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {},
"dateOfBirth": null,
"dateOfDeath": null,
"updatedGmt": "2021-10-25T09:28:46Z",
"companyName": null,
"email": null,
"prefix": null,
"sex": null,
"suffix": null,
"legalResidenceCountryCode": null,
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": null,
"birthCountryCode": null,
"citizenshipCountryCode": null,
"birthRegionCode": null,
"primaryPhone": null,
"textField1": null,
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": "02",
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": null,
"phones": null,
"clientId": "51E5DE70-E54C-4FA2-A5F5-9040560061F8",
"firstName": "werwerwer",
"lastName": "werwer",
"middleInitial": null,
"taxId": null,
"type": "17",
"taxIdType": null,
"status": "Active",
"companyId": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/FD8C0455-0ABD-43BD-AE20-A1C75EC624C4",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/FD8C0455-0ABD-43BD-AE20-A1C75EC624C4/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/FD8C0455-0ABD-43BD-AE20-A1C75EC624C4/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=17",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {},
"dateOfBirth": null,
"dateOfDeath": null,
"updatedGmt": "2021-10-25T09:28:03Z",
"companyName": null,
"email": null,
"prefix": null,
"sex": null,
"suffix": null,
"legalResidenceCountryCode": null,
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": null,
"birthCountryCode": null,
"citizenshipCountryCode": null,
"birthRegionCode": null,
"primaryPhone": null,
"textField1": null,
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": "02",
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": null,
"phones": null,
"clientId": "FD8C0455-0ABD-43BD-AE20-A1C75EC624C4",
"firstName": "erwerwer",
"lastName": "werwer",
"middleInitial": null,
"taxId": null,
"type": "17",
"taxIdType": null,
"status": "Active",
"companyId": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/FB7F2745-7307-437F-9628-57414930DB80",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/FB7F2745-7307-437F-9628-57414930DB80/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/FB7F2745-7307-437F-9628-57414930DB80/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=02",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=MaritalStatus&codeValue=00",
"rel": "codes/maritalStatus",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {
"Accounts": [
{
"index": 0,
"BankAccountName": null,
"BankRoutingNumber": null,
"AccountType": {
"textValue": "01",
"optionText": "Checking"
},
"BankAccountNumber": null
}
]
},
"dateOfBirth": "1995-01-01T00:00:00Z",
"dateOfDeath": null,
"updatedGmt": "2021-10-25T09:10:12Z",
"companyName": null,
"email": null,
"prefix": "04",
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": "US",
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": "00",
"birthCountryCode": "CA",
"citizenshipCountryCode": "CA",
"birthRegionCode": null,
"primaryPhone": null,
"textField1": "00",
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": [
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/FB7F2745-7307-437F-9628-57414930DB80/addresses/409048A1-1FF0-46E7-8863-01A5575D29F9",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
}
]
}
],
"phones": [
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/FB7F2745-7307-437F-9628-57414930DB80/phones/32A07FBC-3CB8-4B87-9FE2-4CA2973ACBAE",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
}
]
}
],
"clientId": "FB7F2745-7307-437F-9628-57414930DB80",
"firstName": "hi",
"lastName": "bye",
"middleInitial": null,
"taxId": "145656767",
"type": "02",
"taxIdType": null,
"status": "Active",
"companyId": null,
"TaxIDSource": {
"textValue": "01",
"optionText": "Application"
},
"PersonSponsorID": null,
"LetterSendDate": null,
"TransactionField": null,
"TestField": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/02295BF1-AFE0-4A22-8037-5A7F8512F36B",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/02295BF1-AFE0-4A22-8037-5A7F8512F36B/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/02295BF1-AFE0-4A22-8037-5A7F8512F36B/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=02",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=MaritalStatus&codeValue=00",
"rel": "codes/maritalStatus",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {
"Accounts": [
{
"index": 0,
"BankAccountName": null,
"BankRoutingNumber": null,
"AccountType": {
"textValue": "01",
"optionText": "Checking"
},
"BankAccountNumber": null
}
]
},
"dateOfBirth": "1980-01-01T00:00:00Z",
"dateOfDeath": null,
"updatedGmt": "2021-10-25T09:08:41Z",
"companyName": null,
"email": null,
"prefix": "04",
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": null,
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": "00",
"birthCountryCode": "CA",
"citizenshipCountryCode": "CA",
"birthRegionCode": null,
"primaryPhone": null,
"textField1": "00",
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": null,
"phones": null,
"clientId": "02295BF1-AFE0-4A22-8037-5A7F8512F36B",
"firstName": "bye",
"lastName": "bye",
"middleInitial": null,
"taxId": "123456789",
"type": "02",
"taxIdType": null,
"status": "Active",
"companyId": null,
"TaxIDSource": {
"textValue": "01",
"optionText": "Application"
},
"LetterSendDate": null,
"PersonSponsorID": null,
"TransactionField": null,
"TestField": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/4D6032F4-96BD-424E-AF13-D08034CFDE8A",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/4D6032F4-96BD-424E-AF13-D08034CFDE8A/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/4D6032F4-96BD-424E-AF13-D08034CFDE8A/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=01",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=02",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=MaritalStatus&codeValue=00",
"rel": "codes/maritalStatus",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {
"Accounts": [
{
"index": 0,
"BankAccountName": null,
"BankRoutingNumber": null,
"AccountType": {
"textValue": "01",
"optionText": "Checking"
},
"BankAccountNumber": null
}
]
},
"dateOfBirth": "2000-01-01T00:00:00Z",
"dateOfDeath": null,
"updatedGmt": "2021-09-18T14:22:38Z",
"companyName": null,
"email": null,
"prefix": "02",
"sex": "01",
"suffix": null,
"legalResidenceCountryCode": "US",
"additionalPrefix": null,
"additionalSuffix": null,
"title": null,
"maritalStatus": "00",
"birthCountryCode": "CA",
"citizenshipCountryCode": "CA",
"birthRegionCode": null,
"primaryPhone": null,
"textField1": "00",
"textField2": null,
"checkBox1": null,
"checkBox2": null,
"radio1": null,
"radio2": null,
"combo1": null,
"combo2": null,
"entityTypeCode": "CLIENT",
"date1": null,
"date2": null,
"addresses": [
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/4D6032F4-96BD-424E-AF13-D08034CFDE8A/addresses/409C7F34-83CA-44DD-9409-5EBAF32A4077",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
}
]
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/4D6032F4-96BD-424E-AF13-D08034CFDE8A/addresses/82A92D79-813C-4CE3-8E7C-7CB7A0377CB6",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
}
]
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/4D6032F4-96BD-424E-AF13-D08034CFDE8A/addresses/B7122932-80D4-44A8-8B6A-6E61469F97F4",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
}
]
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/4D6032F4-96BD-424E-AF13-D08034CFDE8A/addresses/CAC29A0D-FC93-482F-AD31-AB56F094758B",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
}
]
}
],
"phones": null,
"clientId": "4D6032F4-96BD-424E-AF13-D08034CFDE8A",
"firstName": "testing",
"lastName": "tester1",
"middleInitial": null,
"taxId": "123456789",
"type": "02",
"taxIdType": null,
"status": "Active",
"companyId": null,
"TaxIDSource": {
"textValue": "01",
"optionText": "Application"
},
"PersonSponsorID": null,
"LetterSendDate": null,
"TransactionField": null,
"TestField": null
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/695634AC-F8AF-4109-ABA7-E849D08C1049",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/695634AC-F8AF-4109-ABA7-E849D08C1049/addresses",
"rel": "addresses",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/clients/695634AC-F8AF-4109-ABA7-E849D08C1049/phones",
"rel": "phones",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientEntityType&codeValue=CLIENT",
"rel": "codes/entityTypeCode",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientSex&codeValue=M",
"rel": "codes/sex",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=TaxIDType&codeValue=D",
"rel": "codes/taxIdType",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientType&codeValue=02",
"rel": "codes/type",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=MaritalStatus&codeValue=00",
"rel": "codes/maritalStatus",
"mediaType": "application/json",
"method": "GET"
},
{
"href": "http://server:port/PASService/rest/services/v1/codes?codeName=ClientStatus&codeValue=Active",
"rel": "codes/status",
"mediaType": "application/json",
"method": "GET"
}
],
"multiFields": {},
"dateOfBirth": "2020-01-06T00:00:00Z",
"dateOfDeath": "2080-01-06T00:00:00Z",
"updatedGmt": "2020-01-06T00:00:00Z",
"companyName": "BSA",
"email": "sa@mail.com",
"prefix": "04",
"sex": "M",
"suffix": "mr",
"legalResidenceCountryCode": "US",
"additionalPrefix": "Mr",
"additionalSuffix": "Jo",
"title": "John",
"maritalStatus": "00",
"birthCountryCode": "CA",
"citizenshipCountryCode": "CA",
"birthRegionCode": "CA",
"primaryPhone": "11212-124",
"textField1": "Shubhakankshi Bhukta",
"textField2": "Shubhakankshi",
"checkBox1": "A",
"checkBox2": "C",
"radio1": "True",
"radio2": "False",
"combo1": "C",
"combo2": "R",
"entityTypeCode": "CLIENT",
"date1": "2020-01-06T00:00:00Z",
"date2": "2020-01-06T00:00:00Z",
"addresses": null,
"phones": [
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/695634AC-F8AF-4109-ABA7-E849D08C1049/phones/51838C90-97CC-4B3C-A42F-78E02848C763",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
}
]
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/695634AC-F8AF-4109-ABA7-E849D08C1049/phones/714D7379-D203-4E31-908B-B2B828755061",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
}
]
},
{
"links": [
{
"href": "http://server:port/PASService/rest/services/v1/clients/695634AC-F8AF-4109-ABA7-E849D08C1049/phones/AAFA413E-6D0A-4B67-A3A6-4BE2E7E3E84A",
"rel": "self",
"mediaType": "application/json",
"method": "GET"
}
]
}
],
"clientId": "695634AC-F8AF-4109-ABA7-E849D08C1049",
"firstName": "OIPA",
"lastName": "QA1",
"middleInitial": "Jo",
"taxId": "923846729",
"type": "02",
"taxIdType": "D",
"status": "Active",
"companyId": null
}
]
}