Get Org By ID

Pass in org id in path variable and receive a org response

Request
Security:
vc-security
path Parameters
orgId
required
string
Responses
200

OK

502

Bad Gateway. The server acting as a gateway or intermediary is having problems communicating with another server to complete the user's request.

get/org-service/v1/org/{orgId}
Request samples
curl -i -X GET \
  'http://localhost:8092/org-service/v1/org/{orgId}' \
  -H 'x-auth-token: YOUR_API_KEY_HERE'
Response samples
application/json
{
  • "id": "string",
  • "name": "string",
  • "domain": "string",
  • "paths": [
    ],
  • "trial": false,
  • "active": true,
  • "deleted": false,
  • "usingMfa": false,
  • "notes": "string",
  • "tags": [
    ],
  • "externalId": "string",
  • "addresses": [
    ],
  • "emails": [
    ],
  • "phones": [
    ],
  • "mids": [
    ],
  • "createdInstant": "2019-08-24T14:15:22Z",
  • "lastUpdatedInstant": "2019-08-24T14:15:22Z",
  • "createdBy": "string",
  • "lastUpdatedBy": "string"
}