You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Observed when trying to update a SamlApplication to add attribute statements. The request is responded to as if it was successful, however the response indicates no change to the application.
What is expected to happen?
The app is updated to include the attribute specified by the request.
What is the actual behavior?
The request response indicates a 200 OK, but the response payload does not have the updated attributes.
Reproduction Steps?
Obtain a SAML application using the ApplicationApi
Modify the context of app.Settings.SignOn.AttributeStatements.AttributeStatement in some way - add a new value, or modify an existing entry in the list.
Save the app using ApplicationApi.ReplaceApplicationAsync(app.Id, app)
Additional Information?
After making a known good request, comparing it with the request from the SDK (captured via Fiddler) and using Postman to manually adjust the request payloads, it appears that including the property destinationOverride in the request (even if set to null) is required for the attribute statement to be added/updated as expected.
.NET Version
8.0.300
SDK Version
7.0.6 and 8.0.1
OS version
No response
The text was updated successfully, but these errors were encountered:
@kingofzeal Quick update on this. The issue appears to be with the server side API and not the SDK. A ticket to address the issue is in the backlog to be addressed by the owning team. OKTA-807224
Describe the bug?
Observed when trying to update a
SamlApplication
to add attribute statements. The request is responded to as if it was successful, however the response indicates no change to the application.What is expected to happen?
The app is updated to include the attribute specified by the request.
What is the actual behavior?
The request response indicates a
200 OK
, but the response payload does not have the updated attributes.Reproduction Steps?
ApplicationApi
app.Settings.SignOn.AttributeStatements.AttributeStatement
in some way - add a new value, or modify an existing entry in the list.ApplicationApi.ReplaceApplicationAsync(app.Id, app)
Additional Information?
After making a known good request, comparing it with the request from the SDK (captured via Fiddler) and using Postman to manually adjust the request payloads, it appears that including the property
destinationOverride
in the request (even if set tonull
) is required for the attribute statement to be added/updated as expected..NET Version
8.0.300
SDK Version
7.0.6 and 8.0.1
OS version
No response
The text was updated successfully, but these errors were encountered: