0

SCIM エンドポイント経由で wso2Extension の別の複合属性のサブ属性として複合属性を追加したいと考えています。SCIM REST エンドポイントを介して、複雑な属性を wso2Extension のサブ属性としてユーザー プロファイルに正常に追加しました。

wso2Extensionのサブ属性として Patientという名前の複雑な属性をユーザー プロファイルに追加する作業用の curl コマンドを以下に示します。

curl -v -k --user admin:admin --data "{"schemas":[],"userName":"SureshAtt","password":"Wso2@123","wso2Extension":{"employeeNumber":"000111","costCenter":"111111","organization":"WSO2Org","division":"Engineering","department":"Intigration","patient":{"firstName":"Test Patient","displayName":"Test Patient"}}}" --header "Content-Type:application/json" https://localhost:9443/wso2/scim/Users

wso2Extension の別の複雑な属性のサブ属性として、 professionalという名前の複雑な属性を追加したいので、次の curl コマンドで試しました。

curl -v -k --user admin:admin --data "{"schemas":[],"userName":"SureshAtt","password":"Wso2@123","wso2Extension":{"employeeNumber":"000111","fax":"1233","costCenter":"111111","organization":"WSO2Org","division":"Engineering","department":"Intigration","patient":{"professional":{"firstName":"Test Patient","displayName":"Test Patient"}}}}" --header "Content-Type:application/json" https://localhost:9443/wso2/scim/Users

ユーザーは正常に作成されましたが、プロファイルにカスタム属性がありません。

助けてください

4

1 に答える 1