# Reserved keyword on Azure Error

&#x20;

{% code fullWidth="true" %}

```
Error: 
   Bin blocked: Bin Access-Control-Allow-Origin Missing Header	


Below code in Angular UI does not work.

 headers = new HttpHeaders()
    .set('content-type', 'application/json')
    .set('Access-Control-Allow-Origin', '*')
    .set('charset','utf-8');

 this.httpClient.get<any>(this.rootURL + 'api/bin/list', { headers: this.headers })


Solutions:

1. change bin to bins
2. change bin to ashbin   
   example: Change 'api/bin/create' to 'api/ashbin/create'   
3. 
  UI: if(type=='Bin') type = 'Bins';
  API: if(type=='Bins')  type = 'Bin';

```

{% endcode %}


---

# 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://ai-candy2023.gitbook.io/introduction/programming/azure-service/reserved-keyword-on-azure-error.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.
