View Automation


                https://api.ocamba.com/v2/ocamba/ebs/automations/{id}
            

Retrieves the details of a certain Automation that has previously been created if a valid identifier was provided


Name
Description
idstringrequired
Unique identifier for the object defined as a path parameter.


Example: 12345

Name
Description
viewstring
Ocamba API returns full representation of the resource using the “view=full” query parameter. If not specified, the default view will be used.

Note that the “fields” parameter has precedence over the “view” parameter.


Example: view=full/default

tip
1 If you don't know the automation id, list the automations to find it.
200 Arrow
{
    "total":1,
    "items":[
        {
            "id":"10001",
            "company_id":"6197120",
            "status":"active",
            "name":"Push welcome",
            "description":"Push adex welcome notification",
            "event":{
                "id":"1000",
                "integration_id":"10000"
            },
            "actions":{
                "id":"1002",
                "integration_id":"10000",
                "data":{
                    "user_id":"{{event.user_id}}",
                    "zone_id":"12345678"
                }
            },
            "create_time":"2022-07-02 12:30:40",
            "update_time":"2022-07-05 13:19:10"
        }
    ]
}