Triggers_getTrigger

Get trigger by id. Supply query parameters to filter the list.

SecuritybearerAuth
Request
path Parameters
id
required
string

Trigger id.

Responses
200

Ok

get/triggers/{id}
Request samples

service.triggers.get(trigger_id='trigger_id')

# 
# Get Trigger object
# 
# **Prerequisites**: You must be in the role of an *owner* or *developer*. You must have a service.
# 
# :param str trigger_id: trigger id
# :param str  trigger_name: trigger name
# :return: Trigger entity
# :rtype: dtlpy.entities.trigger.Trigger
# 
# 
Response samples
application/json
{
  • "type": "Event",
  • "id": "string",
  • "url": "string",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z",
  • "creator": "string",
  • "name": "string",
  • "projectId": "string",
  • "active": true
}