mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-10 12:27:47 +00:00
46 lines
1.3 KiB
YAML
46 lines
1.3 KiB
YAML
post:
|
|
operationId: synchronizeAttributesForIdentity
|
|
tags:
|
|
- Identities
|
|
summary: Attribute synchronization for single identity.
|
|
description: >-
|
|
This end-point performs attribute synchronization for a selected identity.
|
|
The endpoint can be called once in 10 seconds per identity.
|
|
A token with ORG_ADMIN or API authority is required to call this API.
|
|
parameters:
|
|
- in: path
|
|
name: identityId
|
|
schema:
|
|
type: string
|
|
required: true
|
|
description: The Identity id
|
|
responses:
|
|
'202':
|
|
description: An Identity Sync job
|
|
content:
|
|
application/json:
|
|
schema:
|
|
$ref: '../schemas/IdentitySyncJob.yaml'
|
|
example:
|
|
{
|
|
"id": "0f11f2a4-7c94-4bf3-a2bd-742580fe3dfc",
|
|
"status": "IN_PROGRESS",
|
|
"payload":
|
|
{
|
|
"type": "SYNCHRONIZE_IDENTITY_ATTRIBUTES",
|
|
"dataJson": "{\"identityId\":\"2c918083746f642c01746f990884012a\"}"
|
|
}
|
|
}
|
|
'400':
|
|
$ref: '../../v3/responses/400.yaml'
|
|
'401':
|
|
$ref: '../../v3/responses/401.yaml'
|
|
'403':
|
|
$ref: '../../v3/responses/403.yaml'
|
|
'404':
|
|
$ref: '../../v3/responses/404.yaml'
|
|
'429':
|
|
$ref: '../../v3/responses/429.yaml'
|
|
'500':
|
|
$ref: '../../v3/responses/500.yaml'
|