# Claims

You may find descriptions of endpoints for work with claims bellow.

## POST /claims/filter

> Filter claims

```json
{"openapi":"3.1.1","info":{"title":"Public Gateway Documentation","version":"2.0.0"},"servers":[{"url":"https://gw.new.skladon.net/v2"}],"security":[{"authorization":[],"XApiKey":[]}],"components":{"securitySchemes":{"authorization":{"type":"apiKey","name":"authorization","in":"header"}},"schemas":{"ClaimsGridResponse":{"type":"object","properties":{"statusCode":{"type":"number","default":200},"message":{"type":"string"},"data":{"$ref":"#/components/schemas/ClaimsGrid"}},"required":["statusCode","message"]},"ClaimsGrid":{"type":"object","properties":{"data":{"$ref":"#/components/schemas/Claims"},"request":{"$ref":"#/components/schemas/ClaimGridRequest"},"totalCount":{"type":"number"}}},"Claims":{"type":"array","items":{"$ref":"#/components/schemas/Claim"}},"Claim":{"type":"object","properties":{"eshopClaimId":{"type":"string","minLength":1},"eshopOrderId":{"type":"string","minLength":1},"description":{"type":"string","minLength":1},"note":{"type":"string","minLength":1},"eshopNote":{"type":"string","description":"Note from e-shop that is not shown to the customer"},"claimCause":{"$ref":"#/components/schemas/ClaimCauseEnum"},"claimCauseOthersType":{"type":"string","minLength":1},"files":{"$ref":"#/components/schemas/files"}},"required":["eshopClaimId","eshopOrderId","description","claimCause"]},"ClaimCauseEnum":{"type":"string","enum":["lost","damaged","deliveryTimeExceeded","others","trackingLabelsSwapped","duplicatedLabels","missingItems","exceedingItems","swappedItems"]},"files":{"type":"array","description":"You must send all files you received in GET order endpoint. Files you dont send will be deleted.","items":{"$ref":"#/components/schemas/Model4"}},"Model4":{"type":"object","properties":{"fileName":{"type":"string","minLength":1},"fileType":{"type":"string","minLength":1},"fileSize":{"type":"string"},"type":{"type":"string","minLength":1},"data":{"type":"string","description":"base64 encoded data of file. required for new files, not required with update for existing files","minLength":1},"id":{"type":"number","description":"not required for new files, required with update for existing files","minimum":1}},"required":["fileName","fileType","type"]},"ClaimGridRequest":{"type":"object","properties":{"page":{"type":"integer","description":"Page number, can be used for pagination","default":1,"minimum":1},"items":{"type":"integer","description":"items per page","default":10,"minimum":1,"maximum":1000},"columns":{"$ref":"#/components/schemas/ClaimColumns"},"sorts":{"$ref":"#/components/schemas/ClaimSorts"},"filters":{"$ref":"#/components/schemas/OrFilters"}}},"ClaimColumns":{"type":"array","description":"List of columns you want to retrieve. If empty, all possible columns will be retrieved","items":{"$ref":"#/components/schemas/ClaimColumnEnum"}},"ClaimColumnEnum":{"type":"string","enum":["eshopClaimId","eshopOrderId","description","note","claimCause","claimOtherType","status","createdAt","resolutionText","resolver","eshopNote"]},"ClaimSorts":{"type":"array","description":"Array of sorts","items":{"$ref":"#/components/schemas/ClaimSortItem"}},"ClaimSortItem":{"type":"object","properties":{"column":{"$ref":"#/components/schemas/ClaimColumnEnum","description":"Name of the column to order by"},"direction":{"type":"string","description":"Direction of the order","enum":["ASC","DESC","asc","desc"]}},"required":["column","direction"]},"OrFilters":{"type":"array","description":"Array of AndFilters. They will be joined with OR operator.","items":{"$ref":"#/components/schemas/AndFilters"}},"AndFilters":{"type":"array","items":{"$ref":"#/components/schemas/ClaimFilterItem"}},"ClaimFilterItem":{"type":"object","description":"Array of AND filters. Filters you specify in this array will be joined with AND operator.","properties":{"column":{"$ref":"#/components/schemas/ClaimColumnEnum","description":"Name of the column to filter by","minLength":2},"operator":{"type":"string","description":"\n                                eq - equal\n                                neq - not equal\n                                gt -  greater than\n                                gte - greater than or equal\n                                lt - less than\n                                lte - less than equal\n                                in - in array of values (expects array of values in value property)\n                                nin - not in array of values (expects array of values in value property)\n                                like - like\n                                nline - not like\n                                between - between given interval (expects array of two values in value),\n                                nbetween - not between given interval (expects array of two values in value)\n                                null - is null\n                                notnull - is not null\n                                empty - is null or empty string\n                                notempty - is not null neither empty string","enum":["eq","neq","like","nlike","gt","lt","gte","lte","in","nin","between","nbetween","null","notnull","empty","notempty"]},"value":{"type":"string","description":"Value can be string, number, boolean or array"}},"required":["column","operator","value"]},"ErrorMessageResponse":{"type":"object","properties":{"statusCode":{"type":"number"},"message":{"type":"string"}},"required":["statusCode","message"]}}},"paths":{"/claims/filter":{"post":{"summary":"Filter claims","operationId":"postClaimsFilter","parameters":[{"schema":{"type":"string"},"description":"This is the eshop key you receive during onboarding.","name":"x-api-key","in":"header","required":true},{"schema":{"type":"string"},"description":"Token you get from calling /users/login","name":"authorization","in":"header","required":true}],"tags":["Claims"],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClaimsGridResponse"}}}},"401":{"description":"Unauthorized response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorMessageResponse"}}}}},"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClaimGridRequest"}}}}}}}}
```

## GET /claims/{eshopClaimId}

> Get claim

```json
{"openapi":"3.1.1","info":{"title":"Public Gateway Documentation","version":"2.0.0"},"servers":[{"url":"https://gw.new.skladon.net/v2"}],"security":[{"authorization":[],"XApiKey":[]}],"components":{"securitySchemes":{"authorization":{"type":"apiKey","name":"authorization","in":"header"}},"schemas":{"Model6":{"type":"object","properties":{"statusCode":{"type":"number","default":200},"message":{"type":"string"},"data":{"$ref":"#/components/schemas/Model5"}},"required":["statusCode","message"]},"Model5":{"type":"object","properties":{"eshopClaimId":{"type":"string","minLength":1},"eshopOrderId":{"type":"string","minLength":1},"description":{"type":"string","minLength":1},"note":{"type":"string","minLength":1},"eshopNote":{"type":"string","description":"Note from e-shop that is not shown to the customer"},"claimCause":{"$ref":"#/components/schemas/ClaimCauseEnum"},"claimCauseOthersType":{"type":"string","minLength":1},"files":{"$ref":"#/components/schemas/files"},"products":{"$ref":"#/components/schemas/ClaimProductsResponse"},"transportPrice":{"type":"number","minimum":0},"goodsPrice":{"type":"number","minimum":0},"totalServicePrice":{"type":"number","minimum":0},"compensationCurrency":{"type":"string","description":"Currency of compensation"},"status":{"type":"string","enum":["received","inProcess","accepted","partiallyAccepted","rejected","notFound","storno","acceptedWaitingForCompensationFromShipper"]},"closedAt":{"type":"string","format":"date-time","description":"Date and time when the claim was closed"}},"required":["eshopClaimId","eshopOrderId","description","claimCause"]},"ClaimCauseEnum":{"type":"string","enum":["lost","damaged","deliveryTimeExceeded","others","trackingLabelsSwapped","duplicatedLabels","missingItems","exceedingItems","swappedItems"]},"files":{"type":"array","description":"You must send all files you received in GET order endpoint. Files you dont send will be deleted.","items":{"$ref":"#/components/schemas/Model4"}},"Model4":{"type":"object","properties":{"fileName":{"type":"string","minLength":1},"fileType":{"type":"string","minLength":1},"fileSize":{"type":"string"},"type":{"type":"string","minLength":1},"data":{"type":"string","description":"base64 encoded data of file. required for new files, not required with update for existing files","minLength":1},"id":{"type":"number","description":"not required for new files, required with update for existing files","minimum":1}},"required":["fileName","fileType","type"]},"ClaimProductsResponse":{"type":"array","items":{"$ref":"#/components/schemas/ClaimProductResponse"}},"ClaimProductResponse":{"type":"object","properties":{"claimedQuantity":{"type":"number","minimum":1},"sku":{"type":"string"},"lineState":{"type":"string","description":"E for enabled, D for disabled","default":"E","enum":["E","D"]},"resendQuantity":{"type":"number"}},"required":["claimedQuantity","sku","lineState"]},"ErrorMessageResponse":{"type":"object","properties":{"statusCode":{"type":"number"},"message":{"type":"string"}},"required":["statusCode","message"]}}},"paths":{"/claims/{eshopClaimId}":{"get":{"summary":"Get claim","operationId":"getClaimsEshopclaimid","parameters":[{"schema":{"type":"string"},"description":"This is the eshop key you receive during onboarding.","name":"x-api-key","in":"header","required":true},{"schema":{"type":"string"},"description":"Token you get from calling /users/login","name":"authorization","in":"header","required":true},{"schema":{"type":"string"},"name":"eshopClaimId","in":"path","required":true}],"tags":["Claims"],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Model6"}}}},"401":{"description":"Unauthorized response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorMessageResponse"}}}},"404":{"description":"Not found response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorMessageResponse"}}}}}}}}}
```

## POST /claims

> Create claim

```json
{"openapi":"3.1.1","info":{"title":"Public Gateway Documentation","version":"2.0.0"},"servers":[{"url":"https://gw.new.skladon.net/v2"}],"security":[{"authorization":[],"XApiKey":[]}],"components":{"securitySchemes":{"authorization":{"type":"apiKey","name":"authorization","in":"header"}},"schemas":{"Model6":{"type":"object","properties":{"statusCode":{"type":"number","default":200},"message":{"type":"string"},"data":{"$ref":"#/components/schemas/Model5"}},"required":["statusCode","message"]},"Model5":{"type":"object","properties":{"eshopClaimId":{"type":"string","minLength":1},"eshopOrderId":{"type":"string","minLength":1},"description":{"type":"string","minLength":1},"note":{"type":"string","minLength":1},"eshopNote":{"type":"string","description":"Note from e-shop that is not shown to the customer"},"claimCause":{"$ref":"#/components/schemas/ClaimCauseEnum"},"claimCauseOthersType":{"type":"string","minLength":1},"files":{"$ref":"#/components/schemas/files"},"products":{"$ref":"#/components/schemas/ClaimProductsResponse"},"transportPrice":{"type":"number","minimum":0},"goodsPrice":{"type":"number","minimum":0},"totalServicePrice":{"type":"number","minimum":0},"compensationCurrency":{"type":"string","description":"Currency of compensation"},"status":{"type":"string","enum":["received","inProcess","accepted","partiallyAccepted","rejected","notFound","storno","acceptedWaitingForCompensationFromShipper"]},"closedAt":{"type":"string","format":"date-time","description":"Date and time when the claim was closed"}},"required":["eshopClaimId","eshopOrderId","description","claimCause"]},"ClaimCauseEnum":{"type":"string","enum":["lost","damaged","deliveryTimeExceeded","others","trackingLabelsSwapped","duplicatedLabels","missingItems","exceedingItems","swappedItems"]},"files":{"type":"array","description":"You must send all files you received in GET order endpoint. Files you dont send will be deleted.","items":{"$ref":"#/components/schemas/Model4"}},"Model4":{"type":"object","properties":{"fileName":{"type":"string","minLength":1},"fileType":{"type":"string","minLength":1},"fileSize":{"type":"string"},"type":{"type":"string","minLength":1},"data":{"type":"string","description":"base64 encoded data of file. required for new files, not required with update for existing files","minLength":1},"id":{"type":"number","description":"not required for new files, required with update for existing files","minimum":1}},"required":["fileName","fileType","type"]},"ClaimProductsResponse":{"type":"array","items":{"$ref":"#/components/schemas/ClaimProductResponse"}},"ClaimProductResponse":{"type":"object","properties":{"claimedQuantity":{"type":"number","minimum":1},"sku":{"type":"string"},"lineState":{"type":"string","description":"E for enabled, D for disabled","default":"E","enum":["E","D"]},"resendQuantity":{"type":"number"}},"required":["claimedQuantity","sku","lineState"]},"ErrorMessageResponse":{"type":"object","properties":{"statusCode":{"type":"number"},"message":{"type":"string"}},"required":["statusCode","message"]},"ErrorResponse":{"type":"object","properties":{"statusCode":{"type":"number"},"message":{"type":"string"},"error":{"type":"string"}},"required":["statusCode","message"]},"ClaimRequest":{"type":"object","properties":{"eshopClaimId":{"type":"string","minLength":1},"eshopOrderId":{"type":"string","minLength":1},"description":{"type":"string","minLength":1},"note":{"type":"string","minLength":1},"eshopNote":{"type":"string","description":"Note from e-shop that is not shown to the customer"},"claimCause":{"$ref":"#/components/schemas/ClaimCauseEnum"},"claimCauseOthersType":{"type":"string","minLength":1},"files":{"$ref":"#/components/schemas/ClaimFilesRequest"},"products":{"$ref":"#/components/schemas/ClaimProductsRequest"}},"required":["eshopClaimId","eshopOrderId","description","claimCause"]},"ClaimFilesRequest":{"type":"array","items":{"$ref":"#/components/schemas/ClaimFileRequest"}},"ClaimFileRequest":{"type":"object","properties":{"fileName":{"type":"string","minLength":1},"fileType":{"type":"string","minLength":1},"fileSize":{"type":"string"},"type":{"type":"string","minLength":1},"data":{"type":"string","description":"base64 encoded data of file","minLength":1}},"required":["fileName","fileType","type","data"]},"ClaimProductsRequest":{"type":"array","description":"If you dont send existing product in update it will be marked with disabled (lineState D)","items":{"$ref":"#/components/schemas/ClaimProductRequest"}},"ClaimProductRequest":{"type":"object","properties":{"claimedQuantity":{"type":"number","minimum":1},"sku":{"type":"string"},"lineState":{"type":"string","description":"E for enabled, D for disabled","default":"E","enum":["E","D"]}},"required":["claimedQuantity","sku","lineState"]}}},"paths":{"/claims":{"post":{"summary":"Create claim","operationId":"postClaims","parameters":[{"schema":{"type":"string"},"description":"This is the eshop key you receive during onboarding.","name":"x-api-key","in":"header","required":true},{"schema":{"type":"string"},"description":"Token you get from calling /users/login","name":"authorization","in":"header","required":true}],"tags":["Claims"],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Model6"}}}},"401":{"description":"Unauthorized response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorMessageResponse"}}}},"404":{"description":"Not found response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorMessageResponse"}}}},"409":{"description":"Conflict response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}},"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ClaimRequest"}}}}}}}}
```

## PUT /claims/{eshopClaimId}

> Update claim

```json
{"openapi":"3.1.1","info":{"title":"Public Gateway Documentation","version":"2.0.0"},"servers":[{"url":"https://gw.new.skladon.net/v2"}],"security":[{"authorization":[],"XApiKey":[]}],"components":{"securitySchemes":{"authorization":{"type":"apiKey","name":"authorization","in":"header"}},"schemas":{"Model6":{"type":"object","properties":{"statusCode":{"type":"number","default":200},"message":{"type":"string"},"data":{"$ref":"#/components/schemas/Model5"}},"required":["statusCode","message"]},"Model5":{"type":"object","properties":{"eshopClaimId":{"type":"string","minLength":1},"eshopOrderId":{"type":"string","minLength":1},"description":{"type":"string","minLength":1},"note":{"type":"string","minLength":1},"eshopNote":{"type":"string","description":"Note from e-shop that is not shown to the customer"},"claimCause":{"$ref":"#/components/schemas/ClaimCauseEnum"},"claimCauseOthersType":{"type":"string","minLength":1},"files":{"$ref":"#/components/schemas/files"},"products":{"$ref":"#/components/schemas/ClaimProductsResponse"},"transportPrice":{"type":"number","minimum":0},"goodsPrice":{"type":"number","minimum":0},"totalServicePrice":{"type":"number","minimum":0},"compensationCurrency":{"type":"string","description":"Currency of compensation"},"status":{"type":"string","enum":["received","inProcess","accepted","partiallyAccepted","rejected","notFound","storno","acceptedWaitingForCompensationFromShipper"]},"closedAt":{"type":"string","format":"date-time","description":"Date and time when the claim was closed"}},"required":["eshopClaimId","eshopOrderId","description","claimCause"]},"ClaimCauseEnum":{"type":"string","enum":["lost","damaged","deliveryTimeExceeded","others","trackingLabelsSwapped","duplicatedLabels","missingItems","exceedingItems","swappedItems"]},"files":{"type":"array","description":"You must send all files you received in GET order endpoint. Files you dont send will be deleted.","items":{"$ref":"#/components/schemas/Model4"}},"Model4":{"type":"object","properties":{"fileName":{"type":"string","minLength":1},"fileType":{"type":"string","minLength":1},"fileSize":{"type":"string"},"type":{"type":"string","minLength":1},"data":{"type":"string","description":"base64 encoded data of file. required for new files, not required with update for existing files","minLength":1},"id":{"type":"number","description":"not required for new files, required with update for existing files","minimum":1}},"required":["fileName","fileType","type"]},"ClaimProductsResponse":{"type":"array","items":{"$ref":"#/components/schemas/ClaimProductResponse"}},"ClaimProductResponse":{"type":"object","properties":{"claimedQuantity":{"type":"number","minimum":1},"sku":{"type":"string"},"lineState":{"type":"string","description":"E for enabled, D for disabled","default":"E","enum":["E","D"]},"resendQuantity":{"type":"number"}},"required":["claimedQuantity","sku","lineState"]},"ErrorMessageResponse":{"type":"object","properties":{"statusCode":{"type":"number"},"message":{"type":"string"}},"required":["statusCode","message"]},"Claim":{"type":"object","properties":{"eshopClaimId":{"type":"string","minLength":1},"eshopOrderId":{"type":"string","minLength":1},"description":{"type":"string","minLength":1},"note":{"type":"string","minLength":1},"eshopNote":{"type":"string","description":"Note from e-shop that is not shown to the customer"},"claimCause":{"$ref":"#/components/schemas/ClaimCauseEnum"},"claimCauseOthersType":{"type":"string","minLength":1},"files":{"$ref":"#/components/schemas/files"}},"required":["eshopClaimId","eshopOrderId","description","claimCause"]}}},"paths":{"/claims/{eshopClaimId}":{"put":{"summary":"Update claim","operationId":"putClaimsEshopclaimid","parameters":[{"schema":{"type":"string"},"description":"This is the eshop key you receive during onboarding.","name":"x-api-key","in":"header","required":true},{"schema":{"type":"string"},"description":"Token you get from calling /users/login","name":"authorization","in":"header","required":true},{"schema":{"type":"string"},"name":"eshopClaimId","in":"path","required":true}],"tags":["Claims"],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Model6"}}}},"401":{"description":"Unauthorized response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorMessageResponse"}}}}},"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Claim"}}}}}}}}
```

## PATCH /claims/{eshopClaimId}

> Partially update claim

```json
{"openapi":"3.1.1","info":{"title":"Public Gateway Documentation","version":"2.0.0"},"servers":[{"url":"https://gw.new.skladon.net/v2"}],"security":[{"authorization":[],"XApiKey":[]}],"components":{"securitySchemes":{"authorization":{"type":"apiKey","name":"authorization","in":"header"}},"schemas":{"Model6":{"type":"object","properties":{"statusCode":{"type":"number","default":200},"message":{"type":"string"},"data":{"$ref":"#/components/schemas/Model5"}},"required":["statusCode","message"]},"Model5":{"type":"object","properties":{"eshopClaimId":{"type":"string","minLength":1},"eshopOrderId":{"type":"string","minLength":1},"description":{"type":"string","minLength":1},"note":{"type":"string","minLength":1},"eshopNote":{"type":"string","description":"Note from e-shop that is not shown to the customer"},"claimCause":{"$ref":"#/components/schemas/ClaimCauseEnum"},"claimCauseOthersType":{"type":"string","minLength":1},"files":{"$ref":"#/components/schemas/files"},"products":{"$ref":"#/components/schemas/ClaimProductsResponse"},"transportPrice":{"type":"number","minimum":0},"goodsPrice":{"type":"number","minimum":0},"totalServicePrice":{"type":"number","minimum":0},"compensationCurrency":{"type":"string","description":"Currency of compensation"},"status":{"type":"string","enum":["received","inProcess","accepted","partiallyAccepted","rejected","notFound","storno","acceptedWaitingForCompensationFromShipper"]},"closedAt":{"type":"string","format":"date-time","description":"Date and time when the claim was closed"}},"required":["eshopClaimId","eshopOrderId","description","claimCause"]},"ClaimCauseEnum":{"type":"string","enum":["lost","damaged","deliveryTimeExceeded","others","trackingLabelsSwapped","duplicatedLabels","missingItems","exceedingItems","swappedItems"]},"files":{"type":"array","description":"You must send all files you received in GET order endpoint. Files you dont send will be deleted.","items":{"$ref":"#/components/schemas/Model4"}},"Model4":{"type":"object","properties":{"fileName":{"type":"string","minLength":1},"fileType":{"type":"string","minLength":1},"fileSize":{"type":"string"},"type":{"type":"string","minLength":1},"data":{"type":"string","description":"base64 encoded data of file. required for new files, not required with update for existing files","minLength":1},"id":{"type":"number","description":"not required for new files, required with update for existing files","minimum":1}},"required":["fileName","fileType","type"]},"ClaimProductsResponse":{"type":"array","items":{"$ref":"#/components/schemas/ClaimProductResponse"}},"ClaimProductResponse":{"type":"object","properties":{"claimedQuantity":{"type":"number","minimum":1},"sku":{"type":"string"},"lineState":{"type":"string","description":"E for enabled, D for disabled","default":"E","enum":["E","D"]},"resendQuantity":{"type":"number"}},"required":["claimedQuantity","sku","lineState"]},"ErrorMessageResponse":{"type":"object","properties":{"statusCode":{"type":"number"},"message":{"type":"string"}},"required":["statusCode","message"]},"Claim":{"type":"object","properties":{"eshopClaimId":{"type":"string","minLength":1},"eshopOrderId":{"type":"string","minLength":1},"description":{"type":"string","minLength":1},"note":{"type":"string","minLength":1},"eshopNote":{"type":"string","description":"Note from e-shop that is not shown to the customer"},"claimCause":{"$ref":"#/components/schemas/ClaimCauseEnum"},"claimCauseOthersType":{"type":"string","minLength":1},"files":{"$ref":"#/components/schemas/files"}},"required":["eshopClaimId","eshopOrderId","description","claimCause"]}}},"paths":{"/claims/{eshopClaimId}":{"patch":{"summary":"Partially update claim","operationId":"patchClaimsEshopclaimid","parameters":[{"schema":{"type":"string"},"description":"This is the eshop key you receive during onboarding.","name":"x-api-key","in":"header","required":true},{"schema":{"type":"string"},"description":"Token you get from calling /users/login","name":"authorization","in":"header","required":true},{"schema":{"type":"string"},"name":"eshopClaimId","in":"path","required":true}],"tags":["Claims"],"responses":{"200":{"description":"Success response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/Model6"}}}},"401":{"description":"Unauthorized response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorMessageResponse"}}}},"404":{"description":"Not found response","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorMessageResponse"}}}}},"requestBody":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Claim"}}}}}}}}
```


---

# 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://dev.skladon.com/main/integration/api/claims.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.
