# Method/URI Header

This is a line consisting of the method of the request, followed by the request URI, followed by the HTTP version. i.e.

`POST /api/1.0/event?action=getEventList HTTP/1.0`

This example is for a request, to iVvy’s api ‘event’ namespace, calling the ‘getEventList’ API call, using HTTP version 1.0. Note the HTTP method for calls to the iVvy API are all POST requests. The api version being called is 1.0. Currently supported versions are:

* 1.0

The URI in the request must always start with /api/{version} (where {version} is the specific api version, e.g. 1.0) followed by the namespace of the eventual api call to make. All requests must also provide the action parameter indicating the API call to invoke.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developer.ivvy.com/getting-started/creating-the-request/method-uri-header.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
