API Documentation
Agent ¶
Overview
An Agent is a represantation of a Real Estate Agent
Get Agent ¶
Get AgentGET/agents/{id}
Example URI
GET /agents/820451e4-4b95-47b0-856e-30aa805274a7
URI Parameters
- id
string(required) Example: 820451e4-4b95-47b0-856e-30aa805274a7
Response
200Body
{
"code": "OK",
"data": {
"id": "820451e4-4b95-47b0-856e-30aa805274a7",
"email": "[email protected]",
"mlsid": "00920130",
"fax": "(972) 264-4703",
"full_name": "Gholi Sweet",
"first_name": "Gholi",
"last_name": "Sweet",
"middle_name": null,
"phone_number": "(972) 264-4703",
"nar_number": "797500044",
"office_mui": "15512742",
"status": "Active",
"office_mlsid": "RCHT01X",
"work_phone": "(469) 358-8080",
"generational_name": null,
"matrix_unique_id": "155155530",
"updated_at": 1765163365.82033,
"deleted_at": null,
"created_at": 1765163365.820331,
"mls": "NTREIS",
"license_number": null,
"designation": null,
"nrds": "01053140",
"type": "agent",
"office_id": null,
"secret_questions": [
"(972) XXX-XX03",
"jewellxxxxxxxxxxxxxal.net",
"(469) XXX-XX80"
]
}
}Search for an agent ¶
Search for an agentGET/agents/search?mlsid=
Example URI
GET /agents/search?mlsid=
URI Parameters
- q
string(required) Example: Gholi
Response
200Body
{
"code": "OK",
"data": [
{
"id": "820451e4-4b95-47b0-856e-30aa805274a7",
"email": "[email protected]",
"mlsid": "00920130",
"fax": "(972) 264-4703",
"full_name": "Gholi Sweet",
"first_name": "Gholi",
"last_name": "Sweet",
"middle_name": null,
"phone_number": "(972) 264-4703",
"nar_number": "797500044",
"office_mui": "15512742",
"status": "Active",
"office_mlsid": "RCHT01X",
"work_phone": "(469) 358-8080",
"generational_name": null,
"matrix_unique_id": "155155530",
"updated_at": 1765163365.82033,
"deleted_at": null,
"created_at": 1765163365.820331,
"mls": "NTREIS",
"license_number": null,
"designation": null,
"nrds": "01053140",
"type": "agent",
"office_id": null,
"secret_questions": [
"(972) XXX-XX03",
"jewellxxxxxxxxxxxxxal.net",
"(469) XXX-XX80"
]
}
],
"info": {
"count": 1,
"total": 0
}
}Get all agents of an office ¶
Get all agents of an officeGET/agents/search?officemlsid=
Example URI
GET /agents/search?officemlsid=
URI Parameters
- officemlsid
string(required) Example: RCHT01X- mls
string(required) Example: NTREIS
Response
200Body
{
"code": "OK",
"data": [
{
"id": "820451e4-4b95-47b0-856e-30aa805274a7",
"email": "[email protected]",
"mlsid": "00920130",
"fax": "(972) 264-4703",
"full_name": "Gholi Sweet",
"first_name": "Gholi",
"last_name": "Sweet",
"middle_name": null,
"phone_number": "(972) 264-4703",
"nar_number": "797500044",
"office_mui": "15512742",
"status": "Active",
"office_mlsid": "RCHT01X",
"work_phone": "(469) 358-8080",
"generational_name": null,
"matrix_unique_id": "155155530",
"updated_at": 1765163365.82033,
"deleted_at": null,
"created_at": 1765163365.820331,
"mls": "NTREIS",
"license_number": null,
"designation": null,
"nrds": "01053140",
"type": "agent",
"office_id": null,
"secret_questions": [
"(972) XXX-XX03",
"jewellxxxxxxxxxxxxxal.net",
"(469) XXX-XX80"
]
}
],
"info": {
"count": 1,
"total": 0
}
}