OrganizationAccounts REST API
Organization Accounts REST API documentation and interactive testing.
For the OpenAPI Specification document use this link: https://apis.objectsgrid.com/organizationaccounts/contract
To get a Google JWT ID Token you can use our test app for now: https://admin.objectsgrid.com/google_token.html You'll need it in the Authorizations header in the Create Organization Account request below.
EU for European Union, or US for United States, depending on where you need to locate your data
Successfully created the organization account
Bad request
Unauthorized
Too Many Requests
Internal server error
POST /organizationaccounts HTTP/1.1
Host: apis.objectsgrid.com
Authorization: Bearer JWT
X-ObjectsGrid-AccessPoint: EU
Content-Type: application/json
Accept: */*
Content-Length: 134
{
"name": "text",
"description": "text",
"countryCode": "text",
"commerceCode": "text",
"monthlyQuota": 1,
"tags": [
{
"name": "text",
"val": "text"
}
]
}
{
"id": "text",
"name": "text",
"description": "text",
"countryCode": "text",
"commerceCode": "text",
"ownerID": "text",
"accessPoint": "text",
"monthlyQuota": 1,
"tags": [
{
"name": "text",
"val": "text"
}
],
"meta": {
"objectVersion": 1,
"objectType": "text",
"namespace": "text",
"createdAt": "2025-08-26T22:39:19.849Z",
"createdBy": "text",
"lastUpdatedAt": "2025-08-26T22:39:19.849Z",
"lastUpdatedBy": "text",
"lastUpdateCorrelationID": "text"
}
}
ID of the organization account to retrieve
EU for European Union, or US for United States, depending on where your data is located
Successfully retrieved the organization account
Bad request
Unauthorized
Organization account not found
Too Many Requests
Internal server error
GET /organizationaccounts/{orgacctid} HTTP/1.1
Host: apis.objectsgrid.com
Authorization: Bearer JWT
X-ObjectsGrid-AccessPoint: EU
Accept: */*
{
"id": "text",
"name": "text",
"description": "text",
"countryCode": "text",
"commerceCode": "text",
"ownerID": "text",
"accessPoint": "text",
"monthlyQuota": 1,
"tags": [
{
"name": "text",
"val": "text"
}
],
"meta": {
"objectVersion": 1,
"objectType": "text",
"namespace": "text",
"createdAt": "2025-08-26T22:39:19.849Z",
"createdBy": "text",
"lastUpdatedAt": "2025-08-26T22:39:19.849Z",
"lastUpdatedBy": "text",
"lastUpdateCorrelationID": "text"
}
}
ID of the organization account to update
EU for European Union, or US for United States, depending on where your data is located
Successfully updated the organization account
Bad request
Unauthorized
Organization account not found
Too Many Requests
Internal server error
PUT /organizationaccounts/{orgacctid} HTTP/1.1
Host: apis.objectsgrid.com
Authorization: Bearer JWT
X-ObjectsGrid-AccessPoint: EU
Content-Type: application/json
Accept: */*
Content-Length: 407
{
"id": "text",
"name": "text",
"description": "text",
"countryCode": "text",
"commerceCode": "text",
"ownerID": "text",
"accessPoint": "text",
"monthlyQuota": 1,
"tags": [
{
"name": "text",
"val": "text"
}
],
"meta": {
"objectVersion": 1,
"objectType": "text",
"namespace": "text",
"createdAt": "2025-08-26T22:39:19.849Z",
"createdBy": "text",
"lastUpdatedAt": "2025-08-26T22:39:19.849Z",
"lastUpdatedBy": "text",
"lastUpdateCorrelationID": "text"
}
}
{
"id": "text",
"name": "text",
"description": "text",
"countryCode": "text",
"commerceCode": "text",
"ownerID": "text",
"accessPoint": "text",
"monthlyQuota": 1,
"tags": [
{
"name": "text",
"val": "text"
}
],
"meta": {
"objectVersion": 1,
"objectType": "text",
"namespace": "text",
"createdAt": "2025-08-26T22:39:19.849Z",
"createdBy": "text",
"lastUpdatedAt": "2025-08-26T22:39:19.849Z",
"lastUpdatedBy": "text",
"lastUpdateCorrelationID": "text"
}
}
ID of the organization account to delete
EU for European Union, or US for United States, depending on where your data is located
Successfully deleted the organization account
Bad request
Unauthorized
Organization account not found
Too Many Requests
Internal server error
DELETE /organizationaccounts/{orgacctid} HTTP/1.1
Host: apis.objectsgrid.com
Authorization: Bearer JWT
X-ObjectsGrid-AccessPoint: EU
Accept: */*
No content
Last updated
Was this helpful?