FieldEx Developer
developer notes

Get All Project Contacts By Projects

The ProjectContactGetAllByProject API allows you to retrieve all existing Project Contacts by Project.

Method API Endpoint
GET {{endpoint}}/api/ext/contact

Headers

Key Value
Content-Type application/json
Authorization Bearer{{token}}

Filter Fields

Parameter Type Example Required Description
customerId Number 1 true Customer ID for filtering
projectId Number 9 true Project ID for filtering
siteId Number 3 true Site ID for filtering
search String test true Specifies the search query

API Query Example

Method API Call
GET api/ext/contacts?customerId=&projectId =9&siteId=&search=t

Example Response

// 200 Response Code
[
    {
      "id": 131,
      "title": null,
      "fullName": "helooo",
      "email": null,
      "phone": "01245784512",
      "type": "PUBLIC",
      "designation": null
    }
]