OpenAPI
Send your CSV or Excel sheet data directly to any API described by an OpenAPI specification.
Last updated
https://webhook.site/abc-123{
"openapi": "3.0.0",
"info": { "title": "Test API", "version": "1.0" },
"servers": [{ "url": "YOUR WEBHOOK URL" }],
"paths": {
"/": {
"post": {
"summary": "Send Row",
"requestBody": {
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"name": { "type": "string" },
"email": { "type": "string" }
}
}
}
}
},
"responses": {
"200": { "description": "OK" }
}
}
}
}
}