New API key generation
GET/pim/newkey
- Requires Access Manager ApiKey permissions.
- Example URI: https://instancename.piminto.com/api/en-us/pim/newkey
This API endpoint allows the generation of a new API key for authentication and access to the system.
Returns
If the key generation process is successful, the API returns the expiration date and time of the generated key.
Request
Responses
- 200
success
- application/json
- Schema
- Example (from schema)
Schema
status stringrequired
The status of the API request. A value of "OK" indicates that the request was successfully sent and processed.
key_expiration stringrequired
Creation date of the new API key
key stringrequired
{
"status": "OK",
"key_expiration": "Thu Jun 22 00:34:23 2023",
"key": "string"
}
Loading...