rupali mittal
rupali mittal

Reputation: 185

documentum rest services issue

Documentum authentication error I am able to run repository list api but when I am running repository detail api and in authorization i am passing username :- dmadmin and password : - password . I am getting

{
"status": 401,
"code": "E_INTERNAL_SERVER_ERROR",
"message": "An internal server error occurs.",
"details": "Authentication failed.",
"id": "d9e6f6f5-0e30-4b0d-9748-56e0eae63874"
}

which authentication credentials i need to pass to run these API.

I have tried all the possible credentials of postgresSQL,server.

Upvotes: -1

Views: 648

Answers (1)

aldago
aldago

Reputation: 134

If you're using postman o some REST client you need to send the credentials as a basic auth header. If you're accesing through the browser, you just need to pass the credentials (always from a dctm user)

Upvotes: 1

Related Questions