ChatGPT generated OpenAPI
Last updated
Was this helpful?
Last updated
Was this helpful?
Was this helpful?
GET /users HTTP/1.1
Host: api.example.com
Accept: */*
[
{
"id": 1,
"name": "John Doe",
"email": "johndoe@example.com",
"settings": {
"theme": "dark",
"notifications": true
}
},
{
"id": 2,
"name": "Jane Smith",
"email": "janesmith@example.com",
"settings": {
"theme": "light",
"notifications": false
}
}
]POST /users/add HTTP/1.1
Host: api.example.com
Content-Type: application/json
Accept: */*
Content-Length: 98
{
"name": "John Doe",
"email": "johndoe@example.com",
"settings": {
"theme": "dark",
"notifications": true
}
}{
"id": 1,
"name": "John Doe",
"email": "johndoe@example.com",
"settings": {
"theme": "dark",
"notifications": true
}
}