Handle Identity Admin Event Ingress
POST
/v1/events/identity/admin
const url = 'https://example.com/v1/events/identity/admin';const options = { method: 'POST', headers: { 'X-Identity-Event': '', 'X-Identity-Event-Id': '', 'X-Identity-Provider': '', 'X-Identity-Source': '' }};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/v1/events/identity/admin \ --header 'X-Identity-Event: ' \ --header 'X-Identity-Event-Id: ' \ --header 'X-Identity-Provider: ' \ --header 'X-Identity-Source: 'Parameters
Section titled “Parameters”Header Parameters
Section titled “Header Parameters”X-Identity-Event
X-Identity-Event
string
X-Identity-Event-Id
X-Identity-Event-Id
string
X-Identity-Provider
X-Identity-Provider
string
X-Identity-Source
X-Identity-Source
string
Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example", "input": "example", "ctx": {} } ]}