Org Me
GET
/org/me
const url = 'https://engine.bindly.insure/org/me';const options = {method: 'GET'};
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://engine.bindly.insure/org/meThe workspace this credential acts for, and how it authenticated: auth_kind “api_key” carries the key’s label; “oauth” (CLI device login) has none.
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
OrgMeResponse
object
Examplegenerated
{ "org_id": "example", "org_name": "example", "plan": "example", "auth_kind": "example", "key_label": "example"}