The resolved configuration the widget loads
const url = 'https://api.sloose.com/orgs/org_9f3c/config/resolved';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.sloose.com/orgs/org_9f3c/config/resolved \ --header 'Authorization: Bearer <token>'Registry, fields, annotations and helper libraries in one document — everything a client needs to run an import, already merged.
Supports If-None-Match: the ETag is a hash of the whole document, so a client that has it can skip the payload entirely and answer from cache. This is the hottest route in the product; use the ETag.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”The org id the session was issued for. A token for one org can never read another.
Example
org_9f3cThe org id the session was issued for. A token for one org can never read another.
Header Parameters
Section titled “Header Parameters”A previously returned ETag. Matching answers 304 with no body.
A previously returned ETag. Matching answers 304 with no body.
Responses
Section titled “Responses”The resolved configuration.
object
The registry document. See the Registry document reference.
object
object
A destination field definition.
object
object
A field annotation.
object
object
Helper manifest.
object
Examplegenerated
{ "registry": { "additionalProperty": "example" }, "fields": { "additionalProperty": [ { "additionalProperty": "example" } ] }, "annotations": { "additionalProperty": [ { "additionalProperty": "example" } ] }, "libraries": [ { "manifest": { "additionalProperty": "example" }, "source": "example" } ], "etag": "example"}Headers
Section titled “Headers”Hash of the document; pass it back as If-None-Match.
Your If-None-Match matched. No body.
No bearer, or one that is expired, revoked or no longer resolves to a member.
The error envelope every non-2xx answer uses.
object
Human-readable explanation.
Machine-readable reason. Absent on a few legacy 400s.
Examplegenerated
{ "error": "example", "code": "example"}The bearer’s role is too low, or it was issued for a different org.
The error envelope every non-2xx answer uses.
object
Human-readable explanation.
Machine-readable reason. Absent on a few legacy 400s.
Examplegenerated
{ "error": "example", "code": "example"}