# Claims \[OPTIONS]

The `OPTIONS` request to the `/parties/{partyId}/claims` endpoint returns a list of supported HTTP methods that can be used with the `/parties/{partyId}/claims` resource. This allows clients to determine which operations are permitted by the server for this endpoint.

## OPTIONS /parties/{partyId}/claims

>

```json
{"openapi":"3.0.0","info":{"title":"iSHARE API specifications","version":"3.0"},"tags":[{"name":"Participant Registry (Optional)","description":"Optional endpoints for the iSHARE Participant Registry API."}],"servers":[{"description":"iSHARE test network base domain","url":"https://isharetest.net"}],"security":[{"BearerAuth":[]}],"components":{"securitySchemes":{"BearerAuth":{"type":"http","scheme":"bearer","description":"OAuth 2.0 authorization based on bearer token. MUST contain “Bearer “ + access token value. Must be provided if restricted endpoints are needed."}},"headers":{"optionsAllowHeader":{"description":"List of allowed HTTP methods","schema":{"type":"string"}}}},"paths":{"/parties/{partyId}/claims":{"options":{"tags":["Participant Registry (Optional)"],"parameters":[{"style":"simple","name":"partyId","description":"The id of the party for which the allowed HTTP methods must be fetched","schema":{"type":"string"},"in":"path","required":true}],"responses":{"204":{"headers":{"Allow":{"$ref":"#/components/headers/optionsAllowHeader"}},"description":"List the allowed HTTP methods for this endpoint"}}}}}}
```

### Example request

```
> Authorization: Bearer IIeDIrdnYo2ngwDQYJKoZIhvcNAQELBQAwSDEZMBcGA1UEAwwQaVNIQ

OPTIONS /parties/did%3Aishare%3AEU.NL.NTRLNL-10000001/claims
```

### Example response

The server provides the response with status code 204.

The response contains the following HTTP header:

| Header | Example value      |
| ------ | ------------------ |
| Allow  | GET, POST, OPTIONS |
