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 CustomersByCompanyReturnName | 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": "aed2af4a-159e-4c5a-9493-cd2a76b03928", "CustomerTypeId": 10, "CustomerType": "sample string 11", "DateOfBirth": "2025-07-22T18:31:52.8019471+00:00", "PricingGroupId": 1, "Disabled": true, "DoNotContact": true, "Version": 14, "MergedIntoCustomerId": "e20888d5-b426-4517-b56e-c01ed703229d", "LastModifiedDateUtc": "2025-07-22T18:31:52.8019471+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": "aed2af4a-159e-4c5a-9493-cd2a76b03928", "CustomerTypeId": 10, "CustomerType": "sample string 11", "DateOfBirth": "2025-07-22T18:31:52.8019471+00:00", "PricingGroupId": 1, "Disabled": true, "DoNotContact": true, "Version": 14, "MergedIntoCustomerId": "e20888d5-b426-4517-b56e-c01ed703229d", "LastModifiedDateUtc": "2025-07-22T18:31:52.8019471+00:00" } ]