Hi, I tried to find a way to change the ownership of an item in FME Server using REST API. There seems to be no possibility?
Solved
FME REST: How to change ownership
Best answer by nielsgerrits
When I test in the GUI (Security, Items, Repositories, check Repository, hit Change Owner, select other user, OK) it does a PUT on https://fmeservername.com/fmerest/v3/security/categories/Repositories/resources/repositoryname
The body is
{
"owner": "newowner",
"clientID": "repositoryname",
"displayName": "repositoryname",
"rolePermissions": [{
"permissions": ["REPOSITORY_DOWNLOAD", "REPOSITORY_READ", "REPOSITORY_WRITE", "REPOSITORY_EXECUTE", "REPOSITORY_DELETE"],
"name": "user:oldowner"
}],
"roles": ["user:user:oldowner"],
"name": "repositoryname",
"category": "Repositories"
}So I think you need:
PUT /security/categories/< category >/resources/< resource > Replace resource metadata
This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.
Login to the community
No account yet? Create an account
An FME Account is required to contribute
LoginEnter your E-mail address. We'll send you an e-mail with instructions to reset your password.

