# Get Event Template

## Get Event Template

<mark style="color:blue;">`GET`</mark> `https://environment.monterosa.cloud/api/v2/event_templates/:event_template_id`

#### Path Parameters

| Name                | Type   | Description        |
| ------------------- | ------ | ------------------ |
| event\_template\_id | string | Event Template ID. |

#### Headers

| Name          | Type   | Description                             |
| ------------- | ------ | --------------------------------------- |
| Authorization | string | Bearer JmsmU5gZb6xNVUgQGoKcQLvQjRhKAUSb |
| Content-Type  | string | application/vnd.api+json                |

{% tabs %}
{% tab title="200 " %}

```javascript
{
  "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"
    }
  }
}
```

{% endtab %}
{% endtabs %}

## Example

```bash
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'
```
