> For the complete documentation index, see [llms.txt](https://docs.xibosignage.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.xibosignage.com/developer/integrate/openapi/resolution.md).

# Resolution

Resolutions

## Resolution Search

> Search Resolutions this user has access to

```json
{"openapi":"3.1.1","info":{"title":"Xibo API","version":"4.0"},"tags":[{"name":"resolution","description":"Resolutions"}],"servers":[{"url":"/api"}],"security":[{"auth":["write:all","read:all"]}],"components":{"securitySchemes":{"auth":{"type":"oauth2","flows":{"authorizationCode":{"authorizationUrl":"/api/authorize","tokenUrl":"/api/authorize/access_token","scopes":{"read:all":"read access","write:all":"write access"}}}}},"schemas":{"Resolution":{"properties":{"resolutionId":{"description":"The ID of this Resolution","type":"integer"},"resolution":{"description":"The resolution name","type":"string"},"width":{"description":"The display width of the resolution","type":"number","format":"double"},"height":{"description":"The display height of the resolution","type":"number","format":"double"},"designerWidth":{"description":"The designer width of the resolution","type":"number","format":"double"},"designerHeight":{"description":"The designer height of the resolution","type":"number","format":"double"},"version":{"description":"The layout schema version","type":"integer"},"enabled":{"description":"A flag indicating whether this resolution is enabled or not","type":"integer"},"userId":{"description":"The userId who owns this Resolution","type":"integer"}}}}},"paths":{"/resolution":{"get":{"tags":["resolution"],"summary":"Resolution Search","description":"Search Resolutions this user has access to","operationId":"resolutionSearch","parameters":[{"schema":{"type":"integer"},"name":"resolutionId","in":"query","description":"Filter by Resolution Id","required":false},{"schema":{"type":"string"},"name":"resolution","in":"query","description":"Filter by Resolution Name","required":false},{"schema":{"type":"string"},"name":"partialResolution","in":"query","description":"Filter by Partial Resolution Name","required":false},{"schema":{"type":"integer"},"name":"enabled","in":"query","description":"Filter by Enabled","required":false},{"schema":{"type":"integer"},"name":"width","in":"query","description":"Filter by Resolution width","required":false},{"schema":{"type":"integer"},"name":"height","in":"query","description":"Filter by Resolution height","required":false}],"responses":{"200":{"description":"successful operation","content":{"application/json":{"schema":{"type":"array","items":{"$ref":"#/components/schemas/Resolution"}}}}}}}}}}
```

## Add Resolution

> Add new Resolution

```json
{"openapi":"3.1.1","info":{"title":"Xibo API","version":"4.0"},"tags":[{"name":"resolution","description":"Resolutions"}],"servers":[{"url":"/api"}],"security":[{"auth":["write:all","read:all"]}],"components":{"securitySchemes":{"auth":{"type":"oauth2","flows":{"authorizationCode":{"authorizationUrl":"/api/authorize","tokenUrl":"/api/authorize/access_token","scopes":{"read:all":"read access","write:all":"write access"}}}}},"schemas":{"Resolution":{"properties":{"resolutionId":{"description":"The ID of this Resolution","type":"integer"},"resolution":{"description":"The resolution name","type":"string"},"width":{"description":"The display width of the resolution","type":"number","format":"double"},"height":{"description":"The display height of the resolution","type":"number","format":"double"},"designerWidth":{"description":"The designer width of the resolution","type":"number","format":"double"},"designerHeight":{"description":"The designer height of the resolution","type":"number","format":"double"},"version":{"description":"The layout schema version","type":"integer"},"enabled":{"description":"A flag indicating whether this resolution is enabled or not","type":"integer"},"userId":{"description":"The userId who owns this Resolution","type":"integer"}}}}},"paths":{"/resolution":{"post":{"tags":["resolution"],"summary":"Add Resolution","description":"Add new Resolution","operationId":"resolutionAdd","responses":{"201":{"description":"successful operation","headers":{"Location":{"description":"Location of the new record","schema":{"type":"string"}}},"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Resolution"}}}}},"requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"resolution":{"type":"string","description":"A name for the Resolution"},"width":{"type":"integer","description":"The Display Width of the Resolution"},"height":{"type":"integer","description":"The Display Height of the Resolution"}},"required":["resolution","width","height"]}}}}}}}}
```

## Edit Resolution

> Edit new Resolution

```json
{"openapi":"3.1.1","info":{"title":"Xibo API","version":"4.0"},"tags":[{"name":"resolution","description":"Resolutions"}],"servers":[{"url":"/api"}],"security":[{"auth":["write:all","read:all"]}],"components":{"securitySchemes":{"auth":{"type":"oauth2","flows":{"authorizationCode":{"authorizationUrl":"/api/authorize","tokenUrl":"/api/authorize/access_token","scopes":{"read:all":"read access","write:all":"write access"}}}}},"schemas":{"Resolution":{"properties":{"resolutionId":{"description":"The ID of this Resolution","type":"integer"},"resolution":{"description":"The resolution name","type":"string"},"width":{"description":"The display width of the resolution","type":"number","format":"double"},"height":{"description":"The display height of the resolution","type":"number","format":"double"},"designerWidth":{"description":"The designer width of the resolution","type":"number","format":"double"},"designerHeight":{"description":"The designer height of the resolution","type":"number","format":"double"},"version":{"description":"The layout schema version","type":"integer"},"enabled":{"description":"A flag indicating whether this resolution is enabled or not","type":"integer"},"userId":{"description":"The userId who owns this Resolution","type":"integer"}}}}},"paths":{"/resolution/{resolutionId}":{"put":{"tags":["resolution"],"summary":"Edit Resolution","description":"Edit new Resolution","operationId":"resolutionEdit","parameters":[{"schema":{"type":"integer"},"name":"resolutionId","in":"path","description":"The Resolution ID to Edit","required":true}],"responses":{"200":{"description":"successful operation","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Resolution"}}}}},"requestBody":{"content":{"multipart/form-data":{"schema":{"type":"object","properties":{"resolution":{"type":"string","description":"A name for the Resolution"},"width":{"type":"integer","description":"The Display Width of the Resolution"},"height":{"type":"integer","description":"The Display Height of the Resolution"}},"required":["resolution","width","height"]}}}}}}}}
```

## Delete Resolution

> Delete Resolution

```json
{"openapi":"3.1.1","info":{"title":"Xibo API","version":"4.0"},"tags":[{"name":"resolution","description":"Resolutions"}],"servers":[{"url":"/api"}],"security":[{"auth":["write:all","read:all"]}],"components":{"securitySchemes":{"auth":{"type":"oauth2","flows":{"authorizationCode":{"authorizationUrl":"/api/authorize","tokenUrl":"/api/authorize/access_token","scopes":{"read:all":"read access","write:all":"write access"}}}}}},"paths":{"/resolution/{resolutionId}":{"delete":{"tags":["resolution"],"summary":"Delete Resolution","description":"Delete Resolution","operationId":"resolutionDelete","parameters":[{"schema":{"type":"integer"},"name":"resolutionId","in":"path","description":"The Resolution ID to Delete","required":true}],"responses":{"204":{"description":"successful operation"}}}}}}
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.xibosignage.com/developer/integrate/openapi/resolution.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
