Retrieve all Call Targets

get
https://{api-gateway-hostname}
/v2/callback/callTargets

For a 200 response code, the response body is an object containing data, an array of objects describing all call targets for an organization.

responses
/
200
data
object
callTargets
object
Auth
:
Server Variables
:
curl --request GET \
--url https://api.getmindful.com/v2/callback/callTargets \
--header 'Accept: application/json' \
--header 'Authorization: Bearer 123'
Response Example
1
{
2
"data": {
3
"callTargets": {
4
"id": 0,
5
"name": "string"
6
}
7
}
8
}