APIs.io Engineering Platform · Example Payload

Apis Io Engineering Platform Gistsupdate Example

APIs.ioEngineeringPlatform

Apis Io Engineering Platform Gistsupdate Example is an example object payload from APIs.io Engineering Platform, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "gists/update",
  "method": "PATCH",
  "path": "/gists/{gist_id}",
  "summary": "APIs.io Engineering Platform Update a gist",
  "requestExamples": [
    {
      "contentType": "application/json",
      "name": "updateGist",
      "example": {
        "description": "An updated gist description",
        "files": {
          "README.md": {
            "content": "Hello World from GitHub"
          }
        }
      }
    },
    {
      "contentType": "application/json",
      "name": "deleteFile",
      "example": {
        "files": {
          "hello.py": null
        }
      }
    },
    {
      "contentType": "application/json",
      "name": "renameFile",
      "example": {
        "files": {
          "hello.py": {
            "filename": "goodbye.py"
          }
        }
      }
    }
  ],
  "responseExamples": []
}