PUBLIC API
Organization
Organization Export
1min
code examples curl location request get 'https //app archbee com/api/public api/team/export' \\ \ header 'accept application/json' \\ \ header 'content type application/json' \\ \ data '{ "teamid" "", "apikey" "", "docspaceid" "" }'var myheaders = new headers(); myheaders append("accept", "application/json"); myheaders append("content type", "application/json"); var raw = json stringify({ "teamid" "", "apikey" "", "docspaceid" "" }); var requestoptions = { method 'get', headers myheaders, body raw, redirect 'follow' }; fetch("https //app archbee com/api/public api/team/export", 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 //app archbee com/api/public api/team/export") https = net http new(url host, url port) https use ssl = true request = net http get new(url) request\["accept"] = "application/json" request\["content type"] = "application/json" request body = json dump({ "teamid" "", "apikey" "", "docspaceid" "" }) response = https request(request) puts response read body import requests import json url = "https //app archbee com/api/public api/team/export" payload = json dumps({ "teamid" "", "apikey" "", "docspaceid" "" }) headers = { 'accept' 'application/json', 'content type' 'application/json' } response = requests request("get", url, headers=headers, data=payload) print(response text) responses // successful export // invalid request { "status" "not ok", "messages" \[ "some error message" ] }
🤔
Have a question?
Our super-smart AI,knowledgeable support team and an awesome community will get you an answer in a flash.
To ask a question or participate in discussions, you'll need to authenticate first.