> For the complete documentation index, see [llms.txt](https://help.paintscout.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.paintscout.com/developers/settings-quote-types.md).

# Settings   Quote Types

## GET /settings/quoteTypes

> List Quote Types

```json
{"openapi":"3.0.0","info":{"title":"Core API","version":"v2"},"servers":[{"url":"https://openapi.paintscout.com/v2"}],"security":[{"BearerAuth":[]}],"components":{"securitySchemes":{"BearerAuth":{"type":"http","scheme":"bearer"}},"schemas":{"QuoteType":{"type":"object","additionalProperties":false,"properties":{"id":{"type":"string","description":"The unique ID of the quote type."},"label":{"type":"string","description":"The display label of the quote type."},"active":{"type":"boolean","description":"Whether this quote type is active & usable"},"defaultHourlyRate":{"type":"number","description":"The default hourly rate for this quote type"},"defaultTerms":{"type":"string","description":"The default terms template for this quote type"},"defaultAreaType":{"type":"string","description":"The default area type for this quote type"},"defaultPresentation":{"type":"string","description":"The default presentation template for this quote type"},"overrideCompanyOptions":{"type":"boolean","description":"Whether this quote type overrides global company options"},"companyOptions":{"type":"object","description":"Custom company options for this quote type","additionalProperties":true}},"required":["id","label"]},"Error":{"type":"object","additionalProperties":false,"properties":{"errors":{"type":"array","items":{"type":"string"},"description":"Array of error messages"}}}}},"paths":{"/settings/quoteTypes":{"get":{"summary":"List Quote Types","operationId":"listQuoteTypes","tags":["Settings - Quote Types"],"responses":{"200":{"description":"List of quote types","content":{"application/json":{"schema":{"type":"object","properties":{"totalRows":{"type":"number"},"rows":{"type":"array","items":{"$ref":"#/components/schemas/QuoteType"}}}}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Not Authorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"Unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}}}}
```

## POST /settings/quoteTypes

> Create Quote Type

```json
{"openapi":"3.0.0","info":{"title":"Core API","version":"v2"},"servers":[{"url":"https://openapi.paintscout.com/v2"}],"security":[{"BearerAuth":[]}],"components":{"securitySchemes":{"BearerAuth":{"type":"http","scheme":"bearer"}},"schemas":{"QuoteType":{"type":"object","additionalProperties":false,"properties":{"id":{"type":"string","description":"The unique ID of the quote type."},"label":{"type":"string","description":"The display label of the quote type."},"active":{"type":"boolean","description":"Whether this quote type is active & usable"},"defaultHourlyRate":{"type":"number","description":"The default hourly rate for this quote type"},"defaultTerms":{"type":"string","description":"The default terms template for this quote type"},"defaultAreaType":{"type":"string","description":"The default area type for this quote type"},"defaultPresentation":{"type":"string","description":"The default presentation template for this quote type"},"overrideCompanyOptions":{"type":"boolean","description":"Whether this quote type overrides global company options"},"companyOptions":{"type":"object","description":"Custom company options for this quote type","additionalProperties":true}},"required":["id","label"]},"Error":{"type":"object","additionalProperties":false,"properties":{"errors":{"type":"array","items":{"type":"string"},"description":"Array of error messages"}}}}},"paths":{"/settings/quoteTypes":{"post":{"summary":"Create Quote Type","operationId":"createQuoteType","tags":["Settings - Quote Types"],"requestBody":{"description":"Data for creating a new quote type","required":true,"content":{"application/json":{"schema":{"type":"object","additionalProperties":false,"properties":{"label":{"type":"string","description":"The display label of the quote type."},"active":{"type":"boolean","description":"Whether this quote type is active & usable"},"defaultHourlyRate":{"type":"number","description":"The default hourly rate for this quote type"},"defaultTerms":{"type":"string","description":"The default terms template for this quote type"},"defaultAreaType":{"type":"string","description":"The default area type for this quote type"},"defaultPresentation":{"type":"string","description":"The default presentation template for this quote type"},"overrideCompanyOptions":{"type":"boolean","description":"Whether this quote type overrides global company options"},"companyOptions":{"type":"object","description":"Custom company options for this quote type","additionalProperties":true}},"required":["label"]}}}},"responses":{"200":{"description":"Successfully created quote type","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QuoteType"}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Not Authorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"409":{"description":"Conflict - Quote type already exists","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"Unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}}}}
```

## GET /settings/quoteTypes/{id}

> Retrieve Quote Type

```json
{"openapi":"3.0.0","info":{"title":"Core API","version":"v2"},"servers":[{"url":"https://openapi.paintscout.com/v2"}],"security":[{"BearerAuth":[]}],"components":{"securitySchemes":{"BearerAuth":{"type":"http","scheme":"bearer"}},"schemas":{"QuoteType":{"type":"object","additionalProperties":false,"properties":{"id":{"type":"string","description":"The unique ID of the quote type."},"label":{"type":"string","description":"The display label of the quote type."},"active":{"type":"boolean","description":"Whether this quote type is active & usable"},"defaultHourlyRate":{"type":"number","description":"The default hourly rate for this quote type"},"defaultTerms":{"type":"string","description":"The default terms template for this quote type"},"defaultAreaType":{"type":"string","description":"The default area type for this quote type"},"defaultPresentation":{"type":"string","description":"The default presentation template for this quote type"},"overrideCompanyOptions":{"type":"boolean","description":"Whether this quote type overrides global company options"},"companyOptions":{"type":"object","description":"Custom company options for this quote type","additionalProperties":true}},"required":["id","label"]},"Error":{"type":"object","additionalProperties":false,"properties":{"errors":{"type":"array","items":{"type":"string"},"description":"Array of error messages"}}}}},"paths":{"/settings/quoteTypes/{id}":{"get":{"summary":"Retrieve Quote Type","operationId":"getQuoteType","tags":["Settings - Quote Types"],"parameters":[{"name":"id","in":"path","description":"ID of the Quote Type","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"Details about the quote type","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QuoteType"}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Not Authorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"Unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}}}}
```

## PUT /settings/quoteTypes/{id}

> Update Quote Type

```json
{"openapi":"3.0.0","info":{"title":"Core API","version":"v2"},"servers":[{"url":"https://openapi.paintscout.com/v2"}],"security":[{"BearerAuth":[]}],"components":{"securitySchemes":{"BearerAuth":{"type":"http","scheme":"bearer"}},"schemas":{"QuoteType":{"type":"object","additionalProperties":false,"properties":{"id":{"type":"string","description":"The unique ID of the quote type."},"label":{"type":"string","description":"The display label of the quote type."},"active":{"type":"boolean","description":"Whether this quote type is active & usable"},"defaultHourlyRate":{"type":"number","description":"The default hourly rate for this quote type"},"defaultTerms":{"type":"string","description":"The default terms template for this quote type"},"defaultAreaType":{"type":"string","description":"The default area type for this quote type"},"defaultPresentation":{"type":"string","description":"The default presentation template for this quote type"},"overrideCompanyOptions":{"type":"boolean","description":"Whether this quote type overrides global company options"},"companyOptions":{"type":"object","description":"Custom company options for this quote type","additionalProperties":true}},"required":["id","label"]},"Error":{"type":"object","additionalProperties":false,"properties":{"errors":{"type":"array","items":{"type":"string"},"description":"Array of error messages"}}}}},"paths":{"/settings/quoteTypes/{id}":{"put":{"summary":"Update Quote Type","operationId":"updateQuoteType","tags":["Settings - Quote Types"],"parameters":[{"name":"id","in":"path","description":"ID of the Quote Type","required":true,"schema":{"type":"string"}}],"requestBody":{"description":"Updated quote type data","required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/QuoteType"}}}},"responses":{"200":{"description":"Successfully updated quote type","content":{"application/json":{"schema":{"$ref":"#/components/schemas/QuoteType"}}}},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Not Authorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"Unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}}}}
```

## DELETE /settings/quoteTypes/{id}

> Delete Quote Type

```json
{"openapi":"3.0.0","info":{"title":"Core API","version":"v2"},"servers":[{"url":"https://openapi.paintscout.com/v2"}],"security":[{"BearerAuth":[]}],"components":{"securitySchemes":{"BearerAuth":{"type":"http","scheme":"bearer"}},"schemas":{"Error":{"type":"object","additionalProperties":false,"properties":{"errors":{"type":"array","items":{"type":"string"},"description":"Array of error messages"}}}}},"paths":{"/settings/quoteTypes/{id}":{"delete":{"summary":"Delete Quote Type","operationId":"deleteQuoteType","tags":["Settings - Quote Types"],"parameters":[{"name":"id","in":"path","description":"ID of the Quote Type","required":true,"schema":{"type":"string"}}],"responses":{"204":{"description":"Quote type successfully deleted"},"400":{"description":"Bad Request","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"401":{"description":"Not Authorized","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"404":{"description":"Not found","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}},"500":{"description":"Unexpected error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}}}}}}}}
```


---

# 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:

```
GET https://help.paintscout.com/developers/settings-quote-types.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.
