shoaibalam
8 years agoNew Contributor
Missing matching response for specified Accept header
 I have an accept header      - name: Accept  in: header  type: string  required: true  description: application/json; version=1.0.0  default: application/json; version=1.0.0     The corresponding Cur...
- 8 years agoHi shoaibalam, The produces keyword is what defines the Accept header in requests. The Accept header is not supposed to be defined explicitly as a header parameter. Remove the Accept parameter and add the following instead: paths: /rewards: post: consumes: - application/json # <-- Content-Type header produces: - application/json; version=1.0.0 # <-- Accept headerCheck out our OpenAPI 2.0 syntax guide for details: