Retrieve API Keys
API URL
{{url}}/fhir-user-service/api-key-managers/user
Method
POST
Request Headers
Authorization : Bearer [token]
Description
Retrieves API keys associated with a specific user ID
Input
Field Name
Type
Example
Authorization(Header)
String
Authorized token from login response
userId
Long
1
Sample Input:
{
"userId": 1
}
Sample Output:
{
"message": "Got all API key managers.",
"entity": {
accessKeyId: "K5rbzpch9JJku88lf4wNgSktoJGF4A7zd2QjHPV0w9RlF1JFgKSC4dcsr3+Val3Z0xHRsk9CmhwzI0iO"
secretAccessKey: "SBJRfD4MXP/DmnkTLXnjJbn2yXNLqxt8iSbzfjbDuasB8hMv2/FdDO+DmgwkbXrAGZhGnnJOJyvqBBUUtPQJBdW0ARH78NC/o9dHVXNpjUrYAZq4OpH/3aKYCQd3hZgafQ2hRHODG5vqanVlgz533erFu/IhjBeK"
},
"status": true,
"entityList": null,
"responseCode": 200,
"totalCount": null
}
Last updated