We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Current implementation includes the following header at entity creation response:
Location: /v2/entities/E1
However, it would be more precise the following:
Location: /v2/entities/E1?type=T1
Note that for entites created without type, taking into account that type defaults to "none" the following should be used:
Location: /v2/entities/E1?type=none
The text was updated successfully, but these errors were encountered:
Location heder reference: https://tools.ietf.org/html/rfc2616#section-14.30
According to that, the value has to be an "absolute URI". Thus, it seems that using ?type=T1 is ok.
?type=T1
Sorry, something went wrong.
Implemented in PR #1837
crbrox
No branches or pull requests
Current implementation includes the following header at entity creation response:
However, it would be more precise the following:
Note that for entites created without type, taking into account that type defaults to "none" the following should be used:
The text was updated successfully, but these errors were encountered: