Create a Record
1 min
code examples curl request post \\ \ url https //developer digitail io/api/v1/records \\ \ header 'accept application/json'var myheaders = new headers(); myheaders append("accept", "application/json"); myheaders append("content type", "application/json"); var requestoptions = { method 'post', headers myheaders, redirect 'follow' }; fetch("https //developer digitail io/api/v1/records", requestoptions) then(response => response text()) then(result => console log(result)) catch(error => console log('error', error));require "uri" require "json" require "net/http" url = uri("https //developer digitail io/api/v1/records") https = net http new(url host, url port) https use ssl = true request = net http post new(url) request\["accept"] = "application/json" request\["content type"] = "application/json" response = https request(request) puts response read body import requests import json url = "https //developer digitail io/api/v1/records" payload = {} headers = { 'accept' 'application/json', 'content type' 'application/json' } response = requests request("post", url, headers=headers, data=payload) print(response text) responses // successful operation { "data" { "id" 1, "number" "175", "status" 1, "vet id" 1, "responsible id" 1, "responsible" {}, "clinic id" 1, "pet id" 1, "sale id" 1, "date" "2021 11 19", "reason" "routine checkup", "template id" 0, "comments" "", "recommendations" "", "rabic tag number" "", "presumptive diagnosis" "", "diagnosis" "", "treatment" "", "visit types" \[ "" ], "reason visit type" {}, "structure" {}, "selecteddiagnoses" \[ { "id" 1, "name" "otitis externa", "description" "", "recommendation" "", "clinic id" 1 } ], "clinical examination notes" "" } }// the request was invalid or contained data that was not allowed { "message" "requested filter(s) `filter1` are not allowed allowed filter(s) are date, query, " }// the authorization token is missing or invalid // the user is not authorized to perform the requested operation // the user has sent too many requests in a given amount of time ("rate limiting") max 200 requests per minute