ListAddonCollaborators
List addon collaborators
Authorizations:
query Parameters
addon | string |
page | integer A page number within the paginated result set. |
page_size | integer Number of results to return per page. |
Responses
Response samples
- 200
{- "count": 0,
- "results": [
- {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "addon": "ce86a799-8c08-4298-8e0b-8c548493890f",
- "user": "76f62a58-5404-486d-9afc-07bded328704",
- "organisation_membership": "89a9a62d-4ccd-419c-bc47-31a3102140bb",
- "can_write": true
}
]
}
CreateAddonCollaborator
Create a new addon collaborator object
Authorizations:
Request Body schema: application/jsonrequired
addon required | string <uuid> (Addon) |
organisation_membership required | string <uuid> (Organisation membership) |
can_write | boolean (Can write) |
Responses
Request samples
- Payload
{- "addon": "ce86a799-8c08-4298-8e0b-8c548493890f",
- "organisation_membership": "89a9a62d-4ccd-419c-bc47-31a3102140bb",
- "can_write": true
}
Response samples
- 201
{- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "addon": "ce86a799-8c08-4298-8e0b-8c548493890f",
- "organisation_membership": "89a9a62d-4ccd-419c-bc47-31a3102140bb",
- "can_write": true
}
GetAddonCollaborator
Get the details of a single addon collaborator
Authorizations:
path Parameters
uuid required | string <uuid> |
Responses
Response samples
- 200
{- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "addon": "ce86a799-8c08-4298-8e0b-8c548493890f",
- "user": "76f62a58-5404-486d-9afc-07bded328704",
- "organisation_membership": "89a9a62d-4ccd-419c-bc47-31a3102140bb",
- "can_write": true
}
PartialUpdateAddonCollaborator
Partially update the specified addon collaborator
Authorizations:
path Parameters
uuid required | string <uuid> |
Request Body schema: application/jsonrequired
can_write | boolean (Can write) |
Responses
Request samples
- Payload
{- "can_write": true
}
Response samples
- 200
{- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "can_write": true
}
ListAddonReleaseChannels
List addon release channels
Authorizations:
query Parameters
addon | string |
page | integer A page number within the paginated result set. |
page_size | integer Number of results to return per page. |
Responses
Response samples
- 200
{- "count": 0,
- "results": [
- {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "addon": "ce86a799-8c08-4298-8e0b-8c548493890f",
- "name": "string",
- "slug": "string"
}
]
}
GetAddonReleaseChannel
Get the details of a single addon release channel
Authorizations:
path Parameters
uuid required | string <uuid> |
Responses
Response samples
- 200
{- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "addon": "ce86a799-8c08-4298-8e0b-8c548493890f",
- "name": "string",
- "slug": "string",
- "description": "string",
- "stability_level": -2147483648
}
ListAddonVersions
List addon versions
Authorizations:
query Parameters
uuid | Array of strings |
addon | string |
release_channel | string |
o | string Enum: "version" "-version" |
version | string |
page | integer A page number within the paginated result set. |
page_size | integer Number of results to return per page. |
Responses
Response samples
- 200
{- "count": 0,
- "results": [
- {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "addon": "ce86a799-8c08-4298-8e0b-8c548493890f",
- "version": "0.0.0",
- "timestamp_added": "2019-08-24T14:15:22Z",
- "uploaded_by": "string",
- "installation_count": "string",
- "production_installation_count": 0,
- "release_channels": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "annotations": [
- {
- "name": "string",
- "description": "string"
}
], - "download_url": "string"
}
]
}
GetAddonVersion
Get the details of a single addon version
Authorizations:
path Parameters
uuid required | string <uuid> |
Responses
Response samples
- 200
{- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "addon": "ce86a799-8c08-4298-8e0b-8c548493890f",
- "version": "0.0.0",
- "timestamp_added": "2019-08-24T14:15:22Z",
- "uploaded_by": "string",
- "installation_count": "string",
- "production_installation_count": 0,
- "release_channels": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "annotations": [
- {
- "name": "string",
- "description": "string"
}
], - "download_url": "string",
- "changelog": "string"
}
PartialUpdateAddonVersion
Partially update the specified addon version
Authorizations:
path Parameters
uuid required | string <uuid> |
Request Body schema: application/jsonrequired
changelog | string (Changelog) |
release_channels | Array of strings <uuid> unique [ items <uuid > ] |
Responses
Request samples
- Payload
{- "changelog": "string",
- "release_channels": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
]
}
Response samples
- 200
{- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "version": "string",
- "changelog": "string",
- "release_channels": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
]
}
ListAddons
List addons
Authorizations:
query Parameters
organisation | string |
application | string |
name | string |
package_name | string |
is_public | boolean |
page | integer A page number within the paginated result set. |
page_size | integer Number of results to return per page. |
Responses
Response samples
- 200
{- "count": 0,
- "results": [
- {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "organisation": "a4b97354-4e56-4723-bc0e-1f22b5fcbed6",
- "name": "string",
- "owner_name": "string",
- "package_name": "string",
- "is_public": true,
- "is_system_addon": true,
- "latest_version": {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "version": "string",
- "timestamp_added": "2019-08-24T14:15:22Z",
- "download_url": "string",
- "annotations": [
- {
- "name": "string",
- "description": "string"
}
]
}, - "owner_display_name": "string",
- "release_channels": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "license": "0062b866-9a29-4aaa-bcb3-34c1f3d5760d",
- "default_release_channel": {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "addon": "ce86a799-8c08-4298-8e0b-8c548493890f",
- "name": "string",
- "slug": "string"
}, - "most_stable_release_channel": {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "addon": "ce86a799-8c08-4298-8e0b-8c548493890f",
- "name": "string",
- "slug": "string"
}
}
]
}
CreateAddon
Create a new addon object
Authorizations:
Request Body schema: application/jsonrequired
name required | string (Name) [ 1 .. 100 ] characters Name of the Addon. |
package_name required | string <slug> (Package name) [ 1 .. 100 ] characters ^[-a-zA-Z0-9_]+$ System wide unique package name used to reference from the commandline. |
license | string or null <uuid> (License) |
organisation required | string <uuid> (Organisation) |
Responses
Request samples
- Payload
{- "name": "string",
- "package_name": "string",
- "license": "0062b866-9a29-4aaa-bcb3-34c1f3d5760d",
- "organisation": "a4b97354-4e56-4723-bc0e-1f22b5fcbed6"
}
Response samples
- 201
{- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "name": "string",
- "package_name": "string",
- "license": "0062b866-9a29-4aaa-bcb3-34c1f3d5760d",
- "organisation": "a4b97354-4e56-4723-bc0e-1f22b5fcbed6"
}
GetAddon
Get the details of a single addon
Authorizations:
path Parameters
uuid required | string <uuid> |
Responses
Response samples
- 200
{- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "organisation": "a4b97354-4e56-4723-bc0e-1f22b5fcbed6",
- "name": "string",
- "owner_name": "string",
- "package_name": "string",
- "is_public": true,
- "is_system_addon": true,
- "latest_version": {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "version": "string",
- "timestamp_added": "2019-08-24T14:15:22Z",
- "download_url": "string",
- "annotations": [
- {
- "name": "string",
- "description": "string"
}
]
}, - "owner_display_name": "string",
- "release_channels": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "license": "0062b866-9a29-4aaa-bcb3-34c1f3d5760d",
- "default_release_channel": {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "addon": "ce86a799-8c08-4298-8e0b-8c548493890f",
- "name": "string",
- "slug": "string"
}, - "most_stable_release_channel": {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "addon": "ce86a799-8c08-4298-8e0b-8c548493890f",
- "name": "string",
- "slug": "string"
}, - "timestamp_added": "2019-08-24T14:15:22Z",
- "description": "string",
- "cloud_ready": true,
- "compatible_project_types": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "enable_custom_release_channels": true
}
PartialUpdateAddon
Partially update the specified addon
Authorizations:
path Parameters
uuid required | string <uuid> |
Request Body schema: application/jsonrequired
owner_display_name | string (Override Author) <= 255 characters You can override the author that will be listed. If you leave it empty, we will show your or your organisation's name. |
description | string (Description) |
license | string <uuid> (License) |
repository_url | string <uri> (Repository URL) <= 200 characters Link to the Addon source (e.g on github or bitbucket) |
project_url | string <uri> (Project URL) <= 200 characters Link to a project page (don't repeat the repository url here) |
pypi_url | string <uri> (PyPi URL) <= 200 characters Link to your package on the Python Package Index PyPi |
docs_url | string <uri> (Documentation URL) <= 200 characters Link to Documentation (e.g on readthedocs.org) |
name required | string (Name) [ 1 .. 100 ] characters Name of the Addon. |
package_name required | string <slug> (Package name) [ 1 .. 100 ] characters ^[-a-zA-Z0-9_]+$ System wide unique package name used to reference from the commandline. |
default_release_channel | string <uuid> (Default release channel) |
compatible_project_types | Array of strings <uuid> unique [ items <uuid > ] |
Responses
Request samples
- Payload
{- "owner_display_name": "string",
- "description": "string",
- "license": "0062b866-9a29-4aaa-bcb3-34c1f3d5760d",
- "name": "string",
- "package_name": "string",
- "default_release_channel": "58b578da-0974-4f94-8b40-15bd63f2cee9",
- "compatible_project_types": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
]
}
Response samples
- 200
{- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "owner_display_name": "string",
- "description": "string",
- "license": "0062b866-9a29-4aaa-bcb3-34c1f3d5760d",
- "name": "string",
- "package_name": "string",
- "default_release_channel": "58b578da-0974-4f94-8b40-15bd63f2cee9",
- "compatible_project_types": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
]
}
TransferAddon
Authorizations:
path Parameters
uuid required | string <uuid> |
Request Body schema: application/jsonrequired
organisation required | string <uuid> (Organisation) |
Responses
Request samples
- Payload
{- "organisation": "a4b97354-4e56-4723-bc0e-1f22b5fcbed6"
}
Response samples
- 201
{- "organisation": "a4b97354-4e56-4723-bc0e-1f22b5fcbed6"
}
ListApplications
List applications
Authorizations:
query Parameters
id | number |
page | integer A page number within the paginated result set. |
page_size | integer Number of results to return per page. |
Responses
Response samples
- 200
{- "count": 0,
- "results": [
- {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "organisation": "a4b97354-4e56-4723-bc0e-1f22b5fcbed6",
- "base_project_version": "c613b8ec-8da4-41a5-8433-abacff8b415f",
- "base_project_release_channel": "ac0b8528-2d66-48cb-9e85-55deb6873c22",
- "addons_feature_available": true,
- "addons_update_count": 0,
- "addons_bug_count": 0,
- "addons_not_configured_count": 0
}
]
}
GetApplication
Get the details of a single application
Authorizations:
path Parameters
uuid required | string <uuid> |
Responses
Response samples
- 200
{- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "organisation": "a4b97354-4e56-4723-bc0e-1f22b5fcbed6",
- "base_project_version": "c613b8ec-8da4-41a5-8433-abacff8b415f",
- "base_project_release_channel": "ac0b8528-2d66-48cb-9e85-55deb6873c22",
- "addons_feature_available": true,
- "addons_update_count": 0,
- "addons_bug_count": 0,
- "addons_not_configured_count": 0,
- "compatible_project_types": [
- "string"
]
}
ConfigureAddonInApplication
Authorizations:
path Parameters
uuid required | string <uuid> |
Request Body schema: application/jsonrequired
object (Form data) | |
addon required | string <uuid> (Addon) |
Responses
Request samples
- Payload
{- "form_data": {
- "property1": "string",
- "property2": "string"
}, - "addon": "ce86a799-8c08-4298-8e0b-8c548493890f"
}
InstallAddonInApplication
Authorizations:
path Parameters
uuid required | string <uuid> |
Request Body schema: application/jsonrequired
release_channel required | string <uuid> (Release channel) |
version required | string <uuid> (Version) |
object (Form data) | |
without_config | boolean (Without config) |
Responses
Request samples
- Payload
{- "release_channel": "526faf99-721b-4439-9e5b-1dae4bcad311",
- "version": "8b898373-21c7-4028-b85f-cc5068e68df9",
- "form_data": {
- "property1": "string",
- "property2": "string"
}, - "without_config": true
}
Response samples
- 200
{- "results": [
- {
- "name": "string",
- "description": "string"
}
]
}
GetApplicationRecentAsynchronousTasks
Authorizations:
path Parameters
uuid required | string <uuid> |
Responses
Response samples
- 200
{- "running": [
- {
- "task_id": "string",
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "task_type": "string",
- "is_success": true,
- "started_at": "2019-08-24T14:15:22Z",
- "ended_at": "2019-08-24T14:15:22Z",
- "result": "string",
- "duration": "string"
}
], - "recently_finished": [
- {
- "task_id": "string",
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "task_type": "string",
- "is_success": true,
- "started_at": "2019-08-24T14:15:22Z",
- "ended_at": "2019-08-24T14:15:22Z",
- "result": "string",
- "duration": "string"
}
]
}
ListBaseProjectReleaseChannels
List base project release channels
Authorizations:
query Parameters
page | integer A page number within the paginated result set. |
page_size | integer Number of results to return per page. |
Responses
Response samples
- 200
{- "count": 0,
- "results": [
- {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "name": "string",
- "slug": "string",
- "baseproject": "3464a42f-dba4-4595-8940-8ce5c04d9262",
- "description": "string",
- "order": -2147483648
}
]
}
GetBaseProjectReleaseChannel
Get the details of a single base project release channel
Authorizations:
path Parameters
uuid required | string <uuid> |
Responses
Response samples
- 200
{- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "name": "string",
- "slug": "string",
- "baseproject": "3464a42f-dba4-4595-8940-8ce5c04d9262",
- "description": "string",
- "order": -2147483648
}
ListBaseProjectVersions
List base project versions
Authorizations:
query Parameters
page | integer A page number within the paginated result set. |
page_size | integer Number of results to return per page. |
Responses
Response samples
- 200
{- "count": 0,
- "results": [
- {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "baseproject": "3464a42f-dba4-4595-8940-8ce5c04d9262",
- "active": true,
- "description": "string",
- "version": "string"
}
]
}
GetBaseProjectVersion
Get the details of a single base project version
Authorizations:
path Parameters
uuid required | string <uuid> |
Responses
Response samples
- 200
{- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "baseproject": "3464a42f-dba4-4595-8940-8ce5c04d9262",
- "active": true,
- "description": "string",
- "version": "string"
}
ListBaseProjects
List base projects
Authorizations:
query Parameters
page | integer A page number within the paginated result set. |
page_size | integer Number of results to return per page. |
Responses
Response samples
- 200
{- "count": 0,
- "results": [
- {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "name": "string",
- "short_name": "string",
- "short_description_html": "string",
- "order": -2147483648,
- "identifier": "string",
- "is_public": true
}
]
}
GetBaseProject
Get the details of a single base project
Authorizations:
path Parameters
uuid required | string <uuid> |
Responses
Response samples
- 200
{- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "name": "string",
- "short_name": "string",
- "short_description_html": "string",
- "order": -2147483648,
- "identifier": "string",
- "is_public": true
}
ListEnvironments
List environments
Authorizations:
query Parameters
page | integer A page number within the paginated result set. |
page_size | integer Number of results to return per page. |
Responses
Response samples
- 200
{- "count": 0,
- "results": [
- {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "application": "string"
}
]
}
GetEnvironmentCommits
Authorizations:
path Parameters
uuid required | string |
query Parameters
lookup required | string non-empty The lookup is a git revision range in the format of https://git-scm.com/docs/gitrevisions#_specifying_ranges. |
Responses
Response samples
- 200
{- "results": [
- {
- "summary": "string",
- "hexsha": "string",
- "author_name": "string",
- "author_email": "string",
- "authored_date": "2019-08-24T14:15:22Z",
}
]
}
ListInstalledAddons
List installed addons
Authorizations:
query Parameters
version | string |
application | string |
addon | string |
is_configured | boolean |
has_updates | boolean |
name | string |
page | integer A page number within the paginated result set. |
page_size | integer Number of results to return per page. |
Responses
Response samples
- 200
{- "count": 0,
- "results": [
- {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "application": "2b22d485-f04e-492b-b364-e14f8506726a",
- "version": {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "version": "string",
- "timestamp_added": "2019-08-24T14:15:22Z",
- "download_url": "string",
- "annotations": [
- {
- "name": "string",
- "description": "string"
}
]
}, - "addon": {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "organisation": "a4b97354-4e56-4723-bc0e-1f22b5fcbed6",
- "name": "string",
- "owner_name": "string",
- "package_name": "string",
- "is_public": true,
- "is_system_addon": true,
- "latest_version": {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "version": "string",
- "timestamp_added": "2019-08-24T14:15:22Z",
- "download_url": "string",
- "annotations": [
- {
- "name": "string",
- "description": "string"
}
]
}, - "owner_display_name": "string",
- "release_channels": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "license": "0062b866-9a29-4aaa-bcb3-34c1f3d5760d",
- "default_release_channel": {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "addon": "ce86a799-8c08-4298-8e0b-8c548493890f",
- "name": "string",
- "slug": "string"
}, - "most_stable_release_channel": {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "addon": "ce86a799-8c08-4298-8e0b-8c548493890f",
- "name": "string",
- "slug": "string"
}, - "timestamp_added": "2019-08-24T14:15:22Z",
- "description": "string",
- "cloud_ready": true,
- "compatible_project_types": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "enable_custom_release_channels": true
}, - "update_exists": "string",
- "not_configured": "string",
- "release_channel": {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "addon": "ce86a799-8c08-4298-8e0b-8c548493890f",
- "name": "string",
- "slug": "string"
}
}
]
}
GetInstalledAddon
Get the details of a single installed addon
Authorizations:
path Parameters
uuid required | string <uuid> |
Responses
Response samples
- 200
{- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "application": "2b22d485-f04e-492b-b364-e14f8506726a",
- "version": {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "version": "string",
- "timestamp_added": "2019-08-24T14:15:22Z",
- "download_url": "string",
- "annotations": [
- {
- "name": "string",
- "description": "string"
}
]
}, - "addon": {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "organisation": "a4b97354-4e56-4723-bc0e-1f22b5fcbed6",
- "name": "string",
- "owner_name": "string",
- "package_name": "string",
- "is_public": true,
- "is_system_addon": true,
- "latest_version": {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "version": "string",
- "timestamp_added": "2019-08-24T14:15:22Z",
- "download_url": "string",
- "annotations": [
- {
- "name": "string",
- "description": "string"
}
]
}, - "owner_display_name": "string",
- "release_channels": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "license": "0062b866-9a29-4aaa-bcb3-34c1f3d5760d",
- "default_release_channel": {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "addon": "ce86a799-8c08-4298-8e0b-8c548493890f",
- "name": "string",
- "slug": "string"
}, - "most_stable_release_channel": {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "addon": "ce86a799-8c08-4298-8e0b-8c548493890f",
- "name": "string",
- "slug": "string"
}, - "timestamp_added": "2019-08-24T14:15:22Z",
- "description": "string",
- "cloud_ready": true,
- "compatible_project_types": [
- "497f6eca-6276-4993-bfeb-53cbbbba6f08"
], - "enable_custom_release_channels": true
}, - "update_exists": "string",
- "not_configured": "string",
- "release_channel": {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "addon": "ce86a799-8c08-4298-8e0b-8c548493890f",
- "name": "string",
- "slug": "string"
}, - "config": { }
}
PartialUpdateInstalledAddon
Partially update the specified installed addon
Authorizations:
path Parameters
uuid required | string <uuid> |
Request Body schema: application/jsonrequired
release_channel required | string <uuid> (Release channel) |
version required | string <uuid> (Version) |
Responses
Request samples
- Payload
{- "release_channel": "526faf99-721b-4439-9e5b-1dae4bcad311",
- "version": "8b898373-21c7-4028-b85f-cc5068e68df9"
}
Response samples
- 200
{- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "release_channel": "526faf99-721b-4439-9e5b-1dae4bcad311",
- "version": "8b898373-21c7-4028-b85f-cc5068e68df9"
}
ListOrganisations
List organisations
Authorizations:
query Parameters
id | number |
page | integer A page number within the paginated result set. |
page_size | integer Number of results to return per page. |
Responses
Response samples
- 200
{- "count": 0,
- "results": [
- {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "name": "string"
}
]
}
ListProjectTypes
List project types
Authorizations:
query Parameters
page | integer A page number within the paginated result set. |
page_size | integer Number of results to return per page. |
Responses
Response samples
- 200
{- "count": 0,
- "results": [
- {
- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "identifier": "string",
- "name": "string",
- "short_name": "string",
- "icon_url": "string",
- "order": -2147483648,
- "short_description_html": "string",
- "is_default": true,
- "is_public": true
}
]
}
GetProjectType
Get the details of a single project type
Authorizations:
path Parameters
uuid required | string |
Responses
Response samples
- 200
{- "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
- "identifier": "string",
- "name": "string",
- "short_name": "string",
- "icon_url": "string",
- "order": -2147483648,
- "short_description_html": "string",
- "is_default": true,
- "is_public": true
}