0

I am trying to create and modify users using SCIM/REST API's available OOTB in 11gR2PS3.

I am able to create/modify users for all the OOTB attributes specfied in the document

As per the documentation, these API's are supported for custom UDFs as well.

Does anyone know what the schema attributes name and format that needs to be passed in the content body for custom UDF's?

As per the documentation

Note: You can use user defined fields (UDFs) in SCIM requests. After UDFs are created in Oracle Identity Manager, they automatically appear in SCIM resources as regular attributes. There is no difference in the requests and responses with regular attributes.

when we crate the user even after specifying the UDF value its not going in OIM DB and it also doesn't throw any exception.

Chaitanya K
  • 1,827
  • 4
  • 32
  • 67

1 Answers1

0
  1. call /Schemasoperation using get method using your OIM URL :http://<host>:<port>/idaas/im/scim/v1/Schemas

    1. Use the returned schema while using create, update operation on the UDF.

e.g. schema returned is urn:ietf:params:scim:schemas:extension:oracle:2.0:OIG:User

then qualify UDF with the returned schema while calling Create/Update operation.

"urn:ietf:params:scim:schemas:extension:oracle:2.0:OIG:User":{
UDFNAME : UDFVALUE
}

also incluede the schema in the schemas[] if its not there already.

Chaitanya K
  • 1,827
  • 4
  • 32
  • 67