Jan 10, 2024
		
	
	
		| API Endpoint | /api/v2/public/requesters/ | 
| Method | GET | 
| Request Data | Requester list and details | 
Get Requester List and Details
- 
	This endpoint allows you to fetch requester(s) list and details in Service Desk. 
Sample Response
Success Response: Status code 200
[{
	"id": 1,
	"name": "Lisa Taylor",
	"email": "[email protected]",
	"phones": [],
	"custom_fields": [
		{
			"id": 5,
			"name": "Address",
			"type": "text",
			"value": null
		}
	],
	"primary_phone": null,
	"groups": [
		{
			"id": 1,
			"name": "Sample Internal Group",
			"description": "",
			"available_time": null
		},
		{
			"id": 2,
			"name": "Sample Internal Group",
			"description": "",
			"available_time": null
		}
	],
	"primary_contact_group": null,
	"created_at": "2023-08-11T08:47:01Z",
	"updated_at": "2023-09-15T06:45:14Z"
}]
| API Endpoint | /api/v2/public/requesters/<id>/ | 
| Method | GET | 
| Request Data | Requester list and details | 
Get Requester List and Details by id
- 
	This endpoint allows you to fetch requester(s) list and details by id in Service Desk. 
Sample Response
Success Response: Status code 200
{
	"id": 1,
	"name": "Lisa Taylor",
	"email": "[email protected]",
	"phones": [],
	"custom_fields": [
		{
			"id": 5,
			"name": "Address",
			"type": "text",
			"value": null
		}
	],
	"primary_phone": null,
	"groups": [
		{
			"id": 1,
			"name": "Sample Internal Group",
			"description": "",
			"available_time": null
		},
		{
			"id": 2,
			"name": "Sample Internal Group",
			"description": "",
			"available_time": null
		}
	],
	"primary_contact_group": null,
	"created_at": "2023-08-11T08:47:01Z",
	"updated_at": "2023-09-15T06:45:14Z"
}

