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": "4396a9b0-57cc-4973-9ce9-f924f18c7ef6",
    "CustomerTypeId": 10,
    "CustomerType": "sample string 11",
    "DateOfBirth": "2025-10-31T04:37:51.7389414+00:00",
    "PricingGroupId": 1,
    "Disabled": true,
    "DoNotContact": true,
    "Version": 14,
    "MergedIntoCustomerId": "af472a8a-bc93-47ba-9e38-2555afa168ed",
    "LastModifiedDateUtc": "2025-10-31T04:37:51.7389414+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": "4396a9b0-57cc-4973-9ce9-f924f18c7ef6",
    "CustomerTypeId": 10,
    "CustomerType": "sample string 11",
    "DateOfBirth": "2025-10-31T04:37:51.7389414+00:00",
    "PricingGroupId": 1,
    "Disabled": true,
    "DoNotContact": true,
    "Version": 14,
    "MergedIntoCustomerId": "af472a8a-bc93-47ba-9e38-2555afa168ed",
    "LastModifiedDateUtc": "2025-10-31T04:37:51.7389414+00:00"
  }
]