mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-07 04:19:34 +00:00
Automated commit by github action: 5222737963
This commit is contained in:
@@ -50,6 +50,18 @@ get:
|
|||||||
|
|
||||||
|
|
||||||
**uncorrelated**: *eq*
|
**uncorrelated**: *eq*
|
||||||
|
- in: query
|
||||||
|
name: sorters
|
||||||
|
required: false
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
format: comma-separated
|
||||||
|
example: id,name
|
||||||
|
description: >-
|
||||||
|
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
|
||||||
|
|
||||||
|
|
||||||
|
Sorting is supported for the following fields: **id**, **name**, **created**, **modified**
|
||||||
responses:
|
responses:
|
||||||
'200':
|
'200':
|
||||||
description: List of account objects
|
description: List of account objects
|
||||||
@@ -58,7 +70,7 @@ get:
|
|||||||
schema:
|
schema:
|
||||||
type: array
|
type: array
|
||||||
items:
|
items:
|
||||||
oneOf:
|
anyOf:
|
||||||
- $ref: '../schemas/SlimAccount.yaml'
|
- $ref: '../schemas/SlimAccount.yaml'
|
||||||
- $ref: '../schemas/FullAccount.yaml'
|
- $ref: '../schemas/FullAccount.yaml'
|
||||||
examples:
|
examples:
|
||||||
@@ -122,6 +134,8 @@ post:
|
|||||||
description: >-
|
description: >-
|
||||||
This API submits an account creation task and returns the task ID.
|
This API submits an account creation task and returns the task ID.
|
||||||
|
|
||||||
|
The `sourceId` where this account will be created must be included in the `attributes` object.
|
||||||
|
|
||||||
A token with ORG_ADMIN authority is required to call this API.
|
A token with ORG_ADMIN authority is required to call this API.
|
||||||
security:
|
security:
|
||||||
- oauth2: [idn:accounts:manage]
|
- oauth2: [idn:accounts:manage]
|
||||||
@@ -130,7 +144,7 @@ post:
|
|||||||
content:
|
content:
|
||||||
application/json:
|
application/json:
|
||||||
schema:
|
schema:
|
||||||
$ref: '../schemas/AccountAttributes.yaml'
|
$ref: "../schemas/AccountAttributesCreate.yaml"
|
||||||
responses:
|
responses:
|
||||||
'202':
|
'202':
|
||||||
description: Async task details
|
description: Async task details
|
||||||
|
|||||||
@@ -0,0 +1,23 @@
|
|||||||
|
type: object
|
||||||
|
required:
|
||||||
|
- attributes
|
||||||
|
properties:
|
||||||
|
attributes:
|
||||||
|
description: The schema attribute values for the account
|
||||||
|
type: object
|
||||||
|
required:
|
||||||
|
- sourceId
|
||||||
|
properties:
|
||||||
|
sourceId:
|
||||||
|
type: string
|
||||||
|
description: Target source to create an account
|
||||||
|
example: 34bfcbe116c9407464af37acbaf7a4dc
|
||||||
|
additionalProperties:
|
||||||
|
type: string
|
||||||
|
example:
|
||||||
|
sourceId: 34bfcbe116c9407464af37acbaf7a4dc
|
||||||
|
city: Austin
|
||||||
|
displayName: John Doe
|
||||||
|
userName: jdoe
|
||||||
|
sAMAccountName: jDoe
|
||||||
|
mail: john.doe@sailpoint.com
|
||||||
@@ -44,6 +44,18 @@ get:
|
|||||||
|
|
||||||
**uncorrelated**: *eq*
|
**uncorrelated**: *eq*
|
||||||
required: false
|
required: false
|
||||||
|
- in: query
|
||||||
|
name: sorters
|
||||||
|
required: false
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
format: comma-separated
|
||||||
|
example: id,name
|
||||||
|
description: >-
|
||||||
|
Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results)
|
||||||
|
|
||||||
|
|
||||||
|
Sorting is supported for the following fields: **id**, **name**, **created**, **modified**
|
||||||
responses:
|
responses:
|
||||||
"200":
|
"200":
|
||||||
description: List of account objects
|
description: List of account objects
|
||||||
@@ -71,6 +83,8 @@ post:
|
|||||||
description: >-
|
description: >-
|
||||||
This API submits an account creation task and returns the task ID.
|
This API submits an account creation task and returns the task ID.
|
||||||
|
|
||||||
|
The `sourceId` where this account will be created must be included in the `attributes` object.
|
||||||
|
|
||||||
A token with ORG_ADMIN authority is required to call this API.
|
A token with ORG_ADMIN authority is required to call this API.
|
||||||
security:
|
security:
|
||||||
- oauth2: [idn:accounts:manage]
|
- oauth2: [idn:accounts:manage]
|
||||||
|
|||||||
Reference in New Issue
Block a user