Get all Automation block information that can be used for blueprint steps
Headers
-
Content-Type string
-
Accept string
GET /api/v1/automation-blocks
curl \
-X GET https://api.plannrcrm.com/api/v1/automation-blocks \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json"
Response examples (200)
{
"data": [
{
"icon": "star",
"name": "Add a tag to a client",
"type": "account.tag",
"params": {
"tag": {
"type": "string",
"description": "The name of the tag to store against the account"
},
"account_uuid": {
"type": "string",
"description": "UUID of the account to store tag against"
}
},
"returns": {
"tag": {
"type": "string",
"description": "the name of the tag stored against the account"
}
},
"description": "will add an existing tag or create a new one to the account of the given \"account_uuid\" ",
"isCondition": "false"
}
]
}