Data Integration Connectors
- Data Integration Connectors
- All Products
"/users_inline": { "post": { "description": "Add Multiple Users", "operationId": "users_inline", "requestBody": { "description": "Add Multiple Users", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "object", "properties": { "first_name": { "type": "string" }, "last_name": { "type": "string" } } } } } } } "responses": { "200": { "description": "add User Response", "content": { "application/json": { "schema": { "type": "array", "items": { "type": "object", "properties": { "first_name": { "type": "string" }, "last_name": { "type": "string" }, "id": { "type": "string" } } } } } } } }
"post": { "description": "Add Multiple Users", "operationId": "users_inline_ref", "requestBody": { "description": "Add new Users", "content": { "application/json": { "schema": { "type": "array", "items": { "$ref": "#/components/schemas/user" } } } } } "responses": { "200": { "description": "add User Response", "content": { "application/json": { "schema": { "type": "array", "items": { "$ref": "#/components/schemas/user" } } } } } }
"post": { "description": "Add Multiple Users", "operationId": "users", "requestBody": { "description": "Add new Users", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/user_list_inline" } } } } "components": { "schemas": { "user_list": { "type": "array", "items": { "$ref": "#/components/schemas/user" } } } } "responses": { "200": { "description": "add User Response", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/user_list" } } } } } "components": { "schemas": { "user_list": { "type": "array", "items": { "$ref": "#/components/schemas/user" } } } }
"description": "Add Complex Object", "operationId": "aad_complex_object", "requestBody": { "description": "Add new Users", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/complex_object" } } } } "components": { "schemas": { "complex_object": { "type": "object", "properties": { "sample_string": { "type": "string" }, "user_array": { "type": "array", "items": { "$ref": "#/components/schemas/user" } } } } } } "responses": { "200": { "description": "add User Response", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/complex_object" } } } } } "components": { "schemas": { "complex_object": { "type": "object", "properties": { "sample_string": { "type": "string" }, "user_array": { "type": "array", "items": { "$ref": "#/components/schemas/user" } } } } } }