---
title: "PostResponse"
url: "https://sbx.developer-internal.sanofi.com/apis/httpbin-1/versions/da3754ed-f573-4cf9-a100-7688d77483f4/schemas/PostResponse"
---

> Full API specification: https://sbx.developer-internal.sanofi.com/apis/httpbin-1/versions/da3754ed-f573-4cf9-a100-7688d77483f4.md

# PostResponse

Response returned by /post, /put, /patch and /delete

## OpenAPI definition

```yaml
openapi: 3.0.1
info:
  title: httpbin
  version: 1.0-oas3
servers:
  - url: https://httpbin.org
  - url: http://httpbin.apim.eu/
  - url: https://eu.httpbin.org
  - url: http://eu.httpbin.org
  - url: http://localhost:8000/test
components:
  schemas:
    CommonResponse:
      description: Response returned by `/get`
      type: object
      properties:
        args:
          type: object
          additionalProperties:
            type: string
          description: Query string parameters specified in the request URL.
        headers:
          type: object
          additionalProperties:
            type: string
          description: >
            Headers (standard or custom) used in the request. Some typical
            headers are:
              - Accept
              - Accept-Encoding
              - Content-Length
              - Content-Type
              - Host
              - Origin
              - Referred
              - User-Agent
        origin:
          type: string
          description: The origin IP from which the request was made.
          example: 10.100.10.10, 10.100.10.44, 52.91.14.13
        url:
          type: string
          format: uri
          description: The endpoint URL to which the request was made.
          example: https://httpbin.org/post
      required:
        - args
        - headers
        - origin
        - url
    PostResponse:
      description: Response returned by /post, /put, /patch and /delete
      allOf:
        - $ref: "#/components/schemas/CommonResponse"
        - type: object
          properties:
            data: {}
            files: {}
            form:
              type: object
              additionalProperties:
                type: string
              description: >
                Form parameters specified in "application/x-www-form-urlencoded"
                and `multipart/form-data` requests.
            json:
              description: >
                JSON value sent in the payload. Can be object, array, string,
                number, boolean or `null`.
              nullable: true
```
