GET api/external/v1/Customer?since={since}&DepartmentGUID={DepartmentGUID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
since

date

None.

DepartmentGUID

string

None.

Body Parameters

None.

Response Information

Resource Description

Collection of SFE.Common.PublicEntities.CustomerVM
NameDescriptionTypeAdditional information
Id

integer

None.

GUID

string

None.

Created

date

None.

Modified

date

None.

AlphaNumId

string

None.

Name

string

None.

Colour

string

None.

DepartmentId

integer

None.

DepartmentGUID

string

None.

DepartmentAlphaNumId

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "id": 1,
    "guid": "sample string 1",
    "created": "2024-11-15T23:23:25.4118407Z",
    "modified": "2024-11-15T23:23:25.4118407Z",
    "alphaNumId": "sample string 3",
    "name": "sample string 4",
    "colour": "sample string 5",
    "departmentId": 6,
    "departmentGUID": "sample string 7",
    "departmentAlphaNumId": "sample string 8"
  },
  {
    "id": 1,
    "guid": "sample string 1",
    "created": "2024-11-15T23:23:25.4118407Z",
    "modified": "2024-11-15T23:23:25.4118407Z",
    "alphaNumId": "sample string 3",
    "name": "sample string 4",
    "colour": "sample string 5",
    "departmentId": 6,
    "departmentGUID": "sample string 7",
    "departmentAlphaNumId": "sample string 8"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCustomerVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SFE.Common.PublicEntities">
  <CustomerVM>
    <AlphaNumId>sample string 3</AlphaNumId>
    <Colour>sample string 5</Colour>
    <Created>2024-11-15T23:23:25.4118407+00:00</Created>
    <DepartmentAlphaNumId>sample string 8</DepartmentAlphaNumId>
    <DepartmentGUID>sample string 7</DepartmentGUID>
    <DepartmentId>6</DepartmentId>
    <GUID>sample string 1</GUID>
    <Id>1</Id>
    <Modified>2024-11-15T23:23:25.4118407+00:00</Modified>
    <Name>sample string 4</Name>
  </CustomerVM>
  <CustomerVM>
    <AlphaNumId>sample string 3</AlphaNumId>
    <Colour>sample string 5</Colour>
    <Created>2024-11-15T23:23:25.4118407+00:00</Created>
    <DepartmentAlphaNumId>sample string 8</DepartmentAlphaNumId>
    <DepartmentGUID>sample string 7</DepartmentGUID>
    <DepartmentId>6</DepartmentId>
    <GUID>sample string 1</GUID>
    <Id>1</Id>
    <Modified>2024-11-15T23:23:25.4118407+00:00</Modified>
    <Name>sample string 4</Name>
  </CustomerVM>
</ArrayOfCustomerVM>