This document describes the Examples Documentation Asciidoctor Custom Sections.

1. Introduction

1.1. License

The Examples Documentation Asciidoctor Custom Sections is licensed under the Apache License Version 2.0.

1.2. Specification

The Examples Documentation Asciidoctor Custom Sections documentation built using Ascii Doctor markup language.

1.3. Custom Introduction Title

Custom Introduction Content!

2. Micro Service

2.2. Custom Resource Group Title

Custom Resource Group Content!

2.3. GET /

2.3.1. Request

2.3.1.1. HTTP Request Example
GET /?echo=EchoExample HTTP/1.1
Accept: application/json
Content-Length: 0

2.3.2. Response 200

2.3.2.1. HTTP Response Example
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 27

{
  "echo": "EchoExample"
}

2.4. POST /

2.4.1. Request

2.4.1.1. HTTP Request Example
POST / HTTP/1.1
Accept: application/json
Content-Type: application/json
Content-Length: 27

{
  "echo": "EchoExample"
}

2.4.2. Response 200

2.4.2.1. HTTP Response Example
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 27

{
  "echo": "EchoExample"
}

2.5. POST /

2.5.1. Request

2.5.1.1. HTTP Request Example
POST /?echo=EchoExample HTTP/1.1
Accept: application/json
Content-Length: 0

2.5.2. Response 200

2.5.2.1. HTTP Response Example
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 27

{
  "echo": "EchoExample"
}