Ansible Organizations API
The Organizations API from Ansible — 2 operation(s) for organizations.
The Organizations API from Ansible — 2 operation(s) for organizations.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/ansible-organizations-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Ansible Automation Controller Auth Organizations API
version: '2'
description: 'REST API for Ansible Automation Controller (formerly Ansible Tower / AWX),
the enterprise-grade automation engine inside the Red Hat Ansible Automation
Platform. The API exposes management of inventories, hosts, credentials,
projects, job templates, workflow job templates, schedules, organizations,
teams, users, and the launching and inspection of jobs.
'
contact:
name: Red Hat Ansible Support
url: https://access.redhat.com/products/red-hat-ansible-automation-platform/
servers:
- url: https://{controller_host}/api/v2
description: Self-hosted Ansible Automation Controller deployment
variables:
controller_host:
default: controller.example.com
description: Hostname of the Automation Controller instance.
security:
- OAuth2Token: []
- BasicAuth: []
tags:
- name: Organizations
paths:
/organizations/:
get:
tags:
- Organizations
summary: List organizations
operationId: listOrganizations
parameters:
- $ref: '#/components/parameters/Page'
- $ref: '#/components/parameters/PageSize'
- $ref: '#/components/parameters/Search'
responses:
'200':
$ref: '#/components/responses/ListResponse'
post:
tags:
- Organizations
summary: Create an organization
operationId: createOrganization
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Organization'
responses:
'201':
description: Created.
/organizations/{id}/:
get:
tags:
- Organizations
summary: Retrieve an organization
operationId: getOrganization
parameters:
- $ref: '#/components/parameters/Id'
responses:
'200':
description: An organization.
patch:
tags:
- Organizations
summary: Partially update an organization
operationId: patchOrganization
parameters:
- $ref: '#/components/parameters/Id'
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/Organization'
responses:
'200':
description: Updated.
delete:
tags:
- Organizations
summary: Delete an organization
operationId: deleteOrganization
parameters:
- $ref: '#/components/parameters/Id'
responses:
'204':
description: Deleted.
components:
parameters:
Id:
name: id
in: path
required: true
schema:
type: integer
PageSize:
name: page_size
in: query
schema:
type: integer
minimum: 1
maximum: 200
default: 25
Search:
name: search
in: query
schema:
type: string
Page:
name: page
in: query
schema:
type: integer
minimum: 1
default: 1
schemas:
Organization:
type: object
required:
- name
properties:
name:
type: string
description:
type: string
max_hosts:
type: integer
ListResponse:
type: object
properties:
count:
type: integer
next:
type: string
nullable: true
previous:
type: string
nullable: true
results:
type: array
items:
type: object
additionalProperties: true
responses:
ListResponse:
description: A paginated list response.
content:
application/json:
schema:
$ref: '#/components/schemas/ListResponse'
securitySchemes:
OAuth2Token:
type: http
scheme: bearer
bearerFormat: JWT
description: Personal or application OAuth2 access token.
BasicAuth:
type: http
scheme: basic
description: HTTP Basic authentication using local controller credentials.