Get Event Template

Get event template with specified identifier.

Get Event Template

GET https://environment.monterosa.cloud/api/v2/event_templates/:event_template_id

Path Parameters

NameTypeDescription

event_template_id

string

Event Template ID.

Headers

NameTypeDescription

Authorization

string

Bearer JmsmU5gZb6xNVUgQGoKcQLvQjRhKAUSb

Content-Type

string

application/vnd.api+json

{
  "data": {
    "id": "b9cb1ba0-d1d3-4f44-8248-d78f8bd4a323",
    "type": "event_templates",
    "attributes": {
      "duration": 600,
      "name": "Event Template",
      "settings": [
        {
          "key": "text",
          "values": {
            "all": "value"
          }
        }
      ]
    },
    "relationships": {
      "elements": {
        "links": {
          "related": "https://environment.lvis.io/api/v2/event_templates/b9cb1ba0-d1d3-4f44-8248-d78f8bd4a323/elements"
        }
      },
      "project": {
        "data": {
          "id": "2773ab5e-227a-4e66-8749-84da7d94c2d2",
          "type": "projects"
        }
      }
    },
    "links": {
      "self": "https://environment.lvis.io/api/v2/event_templates/b9cb1ba0-d1d3-4f44-8248-d78f8bd4a323"
    }
  }
}

Example

curl --request GET \
  --url https://environment.monterosa.cloud/api/v2/event_templates/b9cb1ba0-d1d3-4f44-8248-d78f8bd4a323 \
  --header 'Authorization: Bearer JmsmU5gZb6xNVUgQGoKcQLvQjRhKAUSb' \
  --header 'Content-Type: application/vnd.api+json'