import-schemas
Get all import schemas
GET
/
schemas
/
Get all import schemas
curl --request GET \
--url https://app.dromo.io/api/v1/schemas/ \
--header 'X-Dromo-License-Key: <api-key>'import requests
url = "https://app.dromo.io/api/v1/schemas/"
headers = {"X-Dromo-License-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Dromo-License-Key': '<api-key>'}};
fetch('https://app.dromo.io/api/v1/schemas/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.dromo.io/api/v1/schemas/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Dromo-License-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.dromo.io/api/v1/schemas/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Dromo-License-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.dromo.io/api/v1/schemas/")
.header("X-Dromo-License-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.dromo.io/api/v1/schemas/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Dromo-License-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"id": "0631f213-ca91-41e0-9a88-7430c7d0ca28",
"name": "last - email",
"fields": [
{
"key": "lastName",
"type": "string",
"label": "last",
"validators": [
{
"validate": "required"
}
]
},
{
"key": "email",
"type": "email",
"label": "email",
"validators": [
{
"validate": "required"
}
]
}
],
"settings": {
"type": "object",
"properties": {
"importIdentifier": {
"type": "string"
},
"title": {
"type": "string"
},
"allowInvalidSubmit": {
"type": "boolean"
},
"invalidDataBehavior": {
"type": "string",
"enum": [
"BLOCK_SUBMIT",
"INCLUDE_INVALID_ROWS",
"REMOVE_INVALID_ROWS",
"INCLUDE_INVALID_ROWS_AND_VALUES"
]
},
"backendSync": {
"type": "boolean"
},
"backendSyncMode": {
"type": "string",
"enum": [
"DISABLED",
"FULL_DATA",
"MAPPINGS_ONLY"
]
},
"manualInputDisabled": {
"type": "boolean"
},
"manualInputOnly": {
"type": "boolean"
},
"allowCustomFields": {
"type": "boolean"
},
"passThroughUnmappedColumns": {
"type": "boolean"
},
"maxRecords": {
"oneOf": [
{
"type": "integer"
},
{
"type": "null"
}
]
},
"developmentMode": {
"type": "boolean"
},
"displayEncoding": {
"type": "boolean"
},
"styleOverrides": {
"type": "object"
},
"maxFileSize": {
"type": "integer"
},
"webhookUrl": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"needsReviewWebhookUrl": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"initialData": {
"oneOf": [
{
"type": "array"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
},
"hooks": {
"type": "object",
"properties": {
"rowHooks": {
"type": "array",
"items": {
"type": "string"
}
},
"bulkRowHooks": {
"type": "array",
"items": {
"type": "string"
}
},
"rowDeleteHooks": {
"type": "array",
"items": {
"type": "string"
}
},
"beforeFinishCallback": {
"type": "string"
},
"columnHooks": {
"type": "array",
"items": {
"type": "object",
"properties": {
"fieldName": {
"type": "string"
},
"callback": {
"type": "string"
}
},
"required": [
"fieldName",
"callback"
],
"additionalProperties": false
}
},
"stepHooks": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"UPLOAD_STEP",
"REVIEW_STEP",
"REVIEW_STEP_POST_HOOKS"
]
},
"callback": {
"type": "string"
}
},
"required": [
"type",
"callback"
],
"additionalProperties": false
}
}
},
"additionalProperties": false
}
}
]Authorizations
This backend API key is different than your frontend license key. Please use the "Backend" license key from your Dromo Dashboard.
⌘I
Get all import schemas
curl --request GET \
--url https://app.dromo.io/api/v1/schemas/ \
--header 'X-Dromo-License-Key: <api-key>'import requests
url = "https://app.dromo.io/api/v1/schemas/"
headers = {"X-Dromo-License-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Dromo-License-Key': '<api-key>'}};
fetch('https://app.dromo.io/api/v1/schemas/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://app.dromo.io/api/v1/schemas/",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Dromo-License-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.dromo.io/api/v1/schemas/"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Dromo-License-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.dromo.io/api/v1/schemas/")
.header("X-Dromo-License-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.dromo.io/api/v1/schemas/")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Dromo-License-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"id": "0631f213-ca91-41e0-9a88-7430c7d0ca28",
"name": "last - email",
"fields": [
{
"key": "lastName",
"type": "string",
"label": "last",
"validators": [
{
"validate": "required"
}
]
},
{
"key": "email",
"type": "email",
"label": "email",
"validators": [
{
"validate": "required"
}
]
}
],
"settings": {
"type": "object",
"properties": {
"importIdentifier": {
"type": "string"
},
"title": {
"type": "string"
},
"allowInvalidSubmit": {
"type": "boolean"
},
"invalidDataBehavior": {
"type": "string",
"enum": [
"BLOCK_SUBMIT",
"INCLUDE_INVALID_ROWS",
"REMOVE_INVALID_ROWS",
"INCLUDE_INVALID_ROWS_AND_VALUES"
]
},
"backendSync": {
"type": "boolean"
},
"backendSyncMode": {
"type": "string",
"enum": [
"DISABLED",
"FULL_DATA",
"MAPPINGS_ONLY"
]
},
"manualInputDisabled": {
"type": "boolean"
},
"manualInputOnly": {
"type": "boolean"
},
"allowCustomFields": {
"type": "boolean"
},
"passThroughUnmappedColumns": {
"type": "boolean"
},
"maxRecords": {
"oneOf": [
{
"type": "integer"
},
{
"type": "null"
}
]
},
"developmentMode": {
"type": "boolean"
},
"displayEncoding": {
"type": "boolean"
},
"styleOverrides": {
"type": "object"
},
"maxFileSize": {
"type": "integer"
},
"webhookUrl": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"needsReviewWebhookUrl": {
"oneOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"initialData": {
"oneOf": [
{
"type": "array"
},
{
"type": "null"
}
]
}
},
"additionalProperties": false
},
"hooks": {
"type": "object",
"properties": {
"rowHooks": {
"type": "array",
"items": {
"type": "string"
}
},
"bulkRowHooks": {
"type": "array",
"items": {
"type": "string"
}
},
"rowDeleteHooks": {
"type": "array",
"items": {
"type": "string"
}
},
"beforeFinishCallback": {
"type": "string"
},
"columnHooks": {
"type": "array",
"items": {
"type": "object",
"properties": {
"fieldName": {
"type": "string"
},
"callback": {
"type": "string"
}
},
"required": [
"fieldName",
"callback"
],
"additionalProperties": false
}
},
"stepHooks": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"UPLOAD_STEP",
"REVIEW_STEP",
"REVIEW_STEP_POST_HOOKS"
]
},
"callback": {
"type": "string"
}
},
"required": [
"type",
"callback"
],
"additionalProperties": false
}
}
},
"additionalProperties": false
}
}
]