GET v1/Companies({CompanyId})/Customers
This call returns all the Customers in a Company
Information:
Base URL:
https://api.covasoft.net/crm
Example of a call would be:
https://api.covasoft.net/crm/v1/Companies({{CompanyId}})/Customers?$skip=0&$top=100
Paging accomplished with $top & $skip. Maximum of 100 customers per page
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| CompanyId |
Company Id from your onboarding package |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Returns all the Customers in a Company
Collection of CustomersByCompanyReturn| Name | Description | Type | Additional information |
|---|---|---|---|
| PrimaryName | string |
None. |
|
| Title | string |
None. |
|
| AlternateName | string |
None. |
|
| MiddleName | string |
None. |
|
| FamilyName | string |
None. |
|
| ReferralSource | string |
None. |
|
| Notes | string |
None. |
|
| UniqueIdentifier | string |
None. |
|
| Id | globally unique identifier |
None. |
|
| CustomerTypeId | integer |
None. |
|
| CustomerType | string |
None. |
|
| DateOfBirth | date |
None. |
|
| PricingGroupId | integer |
None. |
|
| Disabled | boolean |
None. |
|
| DoNotContact | boolean |
None. |
|
| Version | integer |
None. |
|
| MergedIntoCustomerId | globally unique identifier |
None. |
|
| LastModifiedDateUtc | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"PrimaryName": "sample string 1",
"Title": "sample string 2",
"AlternateName": "sample string 3",
"MiddleName": "sample string 4",
"FamilyName": "sample string 5",
"ReferralSource": "sample string 6",
"Notes": "sample string 7",
"UniqueIdentifier": "sample string 8",
"Id": "591c7550-5499-4d00-a02e-0952e068d916",
"CustomerTypeId": 10,
"CustomerType": "sample string 11",
"DateOfBirth": "2025-11-21T14:55:37.5971567+00:00",
"PricingGroupId": 1,
"Disabled": true,
"DoNotContact": true,
"Version": 14,
"MergedIntoCustomerId": "e156abf8-9150-40e2-99d5-b34b0fae760a",
"LastModifiedDateUtc": "2025-11-21T14:55:37.5971567+00:00"
},
{
"PrimaryName": "sample string 1",
"Title": "sample string 2",
"AlternateName": "sample string 3",
"MiddleName": "sample string 4",
"FamilyName": "sample string 5",
"ReferralSource": "sample string 6",
"Notes": "sample string 7",
"UniqueIdentifier": "sample string 8",
"Id": "591c7550-5499-4d00-a02e-0952e068d916",
"CustomerTypeId": 10,
"CustomerType": "sample string 11",
"DateOfBirth": "2025-11-21T14:55:37.5971567+00:00",
"PricingGroupId": 1,
"Disabled": true,
"DoNotContact": true,
"Version": 14,
"MergedIntoCustomerId": "e156abf8-9150-40e2-99d5-b34b0fae760a",
"LastModifiedDateUtc": "2025-11-21T14:55:37.5971567+00:00"
}
]