diff --git a/docs/api/acs/systems/get.md b/docs/api/acs/systems/get.md index 27576a1e..d01df221 100644 --- a/docs/api/acs/systems/get.md +++ b/docs/api/acs/systems/get.md @@ -8,8 +8,6 @@ Returns a specified [access control system](../../../capability-guides/access-sy Specify the desired access control system by including the corresponding `acs_system_id` in the request body. -Return Type: [acs_system](../README.md) - ## Request Parameters ### `acs_system_id` @@ -21,3 +19,6 @@ ID of the desired access control system. --- +## Return Type + +[acs_system](../README.md) diff --git a/docs/api/acs/systems/list.md b/docs/api/acs/systems/list.md index 501406b7..6150b2d7 100644 --- a/docs/api/acs/systems/list.md +++ b/docs/api/acs/systems/list.md @@ -10,8 +10,6 @@ To filter the list of returned access control systems by a specific connected ac `connected_account_id` in the request body. If you omit the `connected_account_id` parameter, the response includes all access control systems connected to your workspace. -Return Type: Array<[acs_system](../README.md)> - {% tabs %} {% tab title="JavaScript" %} ### Request @@ -82,3 +80,6 @@ ID of the connected account by which to filter the list of returned access contr --- +## Return Type + +Array<[acs_system](../README.md)> diff --git a/docs/api/acs/systems/list_compatible_credential_manager_acs_systems.md b/docs/api/acs/systems/list_compatible_credential_manager_acs_systems.md index 5151125a..ec9187d4 100644 --- a/docs/api/acs/systems/list_compatible_credential_manager_acs_systems.md +++ b/docs/api/acs/systems/list_compatible_credential_manager_acs_systems.md @@ -10,8 +10,6 @@ Returns a list of all credential manager ACS systems that are compatible with a Specify the ACS system for which you want to retrieve all compatible credential manager ACS systems by including the corresponding `acs_system_id` in the request body. -Return Type: Array<[acs_system](../README.md)> - ## Request Parameters ### `acs_system_id` @@ -23,3 +21,6 @@ ID of the ACS system for which you want to retrieve all compatible credential ma --- +## Return Type + +Array<[acs_system](../README.md)> diff --git a/src/layouts/api-reference.hbs b/src/layouts/api-reference.hbs index bbc95829..fb441427 100644 --- a/src/layouts/api-reference.hbs +++ b/src/layouts/api-reference.hbs @@ -6,8 +6,6 @@ {{{description}}} -Return Type: {{#if response.resourceType}}{{#if (eq response.responseType "resource_list")}}Array<[{{response.resourceType}}](../README.md)>{{else}}[{{response.resourceType}}](../README.md){{/if}}{{else}}void{{/if}} - {{#if codeSamples.length}} {% tabs %} {{#each codeSamples}} @@ -41,3 +39,6 @@ Required: {{#if this.required}}Yes{{else}}No{{/if}} --- {{/each}} +## Return Type + +{{#if response.resourceType}}{{#if (eq response.responseType "resource_list")}}Array<[{{response.resourceType}}](../README.md)>{{else}}[{{response.resourceType}}](../README.md){{/if}}{{else}}void{{/if}}