List bounded receptionist outcome delivery targets
GET
/v1/receptionist-action-targets
const url = 'https://api.vocapable.com/v1/receptionist-action-targets';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.vocapable.com/v1/receptionist-action-targets \ --header 'Authorization: Bearer <token>'The control-center view of native outcome routing and its latest evidence.
The catalog is fixed in ReceptionistActionOutcome; this route never renders a
tenant-defined executable tool, schema, command, or signing secret. Delivery counts
are an observation of the durable ledger, not a promise that an external receiver
completed business work.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Response List Receptionist Action Targets V1 Receptionist Action Targets Get
Array<object>
ReceptionistActionTargetSummaryOne native action outcome plus the target’s present delivery health.
object
id
required
Id
string
outcome_type
required
Outcome Type
string
event_type
required
Event Type
string
endpoint_id
required
Endpoint Id
string
endpoint_url
required
Endpoint Url
string
endpoint_status
required
Endpoint Status
string
delivery_count
required
Delivery Count
integer
signing_secret_source
Signing Secret Source
string
created_at
required
Created At
string format: date-time
updated_at
required
Updated At
string format: date-time
Example
[ { "signing_secret_source": "webhook_endpoint_create_or_rotate" }]