# API conventions

A projection (query) table stores the current-state for an aggregate change (event) stream. This is the reason there are no API methods available to create, modify, or delete entities stored in these tables in the same way this is done for base relational tables. Instead, changes to the state of an aggregate can be done **only** using commands.

```csharp
// HTTP method and route
[HttpHead("$CollectionPath/$CollectionKey")]

// Authorization and filters
[HybridAuthorize($EntityPolicy.Assert)]

// OpenAPI metadata
[ProducesResponseType<bool>(StatusCodes.Status200OK)]
[EndpointName("assert$EntityName")]

public async Task<ActionResult<bool>> AssertAsync(
    $PrimaryKeyMethodParameters, 
    CancellationToken cancellation = default)
{
    var exists = await _$EntityNameVariableService.AssertAsync($PrimaryKeyMethodArguments, cancellation);
    return exists ? Ok() : NotFound();
}
```


---

# 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://docs.shiftiq.com/contributors/conventions/api-conventions.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.
