There was an error while loading. Please reload this page.
List your organization's information.
api.organizations.list > [ { "id" => 1, "name" => "Test", } ]
Show your organizations information. Same as List just returns the object instead of an array with the object.
api.organizations.show(id: 1) > { "id" => 1, "name" => "Test" }
Update your organizations name
api.organizations.update(id: 1, name: 'Updated Name') > { "id" => 1, "name" => "Updated Name" }