Organizations
Organizations are a powerful feature in Straddle that allow you to manage multiple accounts under a single umbrella. This hierarchical structure is particularly useful for businesses with complex operations, multiple departments, or legally related entities.
Create an organization
POST/v1/organizations
List organizations
GET/v1/organizations
Retrieve organization details
GET/v1/organizations/{organization_id}
ModelsExpand Collapse
OrganizationPagedV1 = object { data, meta, response_type }
OrganizationPagedV1 = object { data, meta, response_type }
data: array of object { id, created_at, name, 3 more }
data: array of object { id, created_at, name, 3 more }
response_type: "object" or "array" or "error" or "none"
response_type: "object" or "array" or "error" or "none"
Indicates the structure of the returned content.
- "object" means the
datafield contains a single JSON object. - "array" means the
datafield contains an array of objects. - "error" means the
datafield contains an error object with details of the issue. - "none" means no data is returned.
OrganizationV1 = object { data, meta, response_type }
OrganizationV1 = object { data, meta, response_type }
data: object { id, created_at, name, 3 more }
data: object { id, created_at, name, 3 more }
response_type: "object" or "array" or "error" or "none"
response_type: "object" or "array" or "error" or "none"
Indicates the structure of the returned content.
- "object" means the
datafield contains a single JSON object. - "array" means the
datafield contains an array of objects. - "error" means the
datafield contains an error object with details of the issue. - "none" means no data is returned.