GET V1 stability/plates/{id}
Gets the Stability Plate with the specified id.
Request Information
Parameters
Name | Description | Additional information |
---|---|---|
id |
The ID of the Stability Plate to get. |
Define this parameter in the request URI. |
Example Request
To get the Stability Plate with ID 1234, make the following API call: GET /stability/plates/1234
Response Information
HTTP Status Codes
Status Code | Meaning |
---|---|
200 (OK) | The request has completed successfully. The Stability Plate will be contained in the response body (see below). |
401 (Unauthorized) | The user has not been authorised due to the below reasons which will be displayed in the
response
content.
API Key is not found. Data received apiKey
Secret Key is wrong. Data received apiKey
Username not found. Data received apiKey
Received token not found in EMS issuer. Data received username ,
version
Lifetime validation failed. The token is expired. ValidTo (UTC):
expiry , Current time
(UTC): UTC DateTime
Token creation failed. Reason: The given username or password is wrong. For input:
username , version
Please ensure that the client provides the api-username and
api-usertoken headers.
|
404 (Not Found) | The Stability Plate with the specified ID could not be found, or the user does not have permission to view it. Ensure the ID has been correctly specified.. |
Response Detail
If it exists, the Stability Plate details will be returned even if the parent Experiment is closed. The current status of the parent Experiment is indicated in the response.
Response Body Formats
application/json, text/json
Sample:
{ "ID": 1234, "Name": "Plate 1234", "ExperimentName": "Experiment 5678", "ExperimentAuthor": "Experiment Author", "ExperimentStatus": "Active", "ExperimentProtocol": "Experiment Protocol", "StorageTemperature": "15", "FormulationName": "Formulation 1" }
application/xml, text/xml
Sample:
<Plate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Unilever.Urdps.Hts.EmsApi.EntityRepresentations.Stability.V1"> <ExperimentAuthor>Experiment Author</ExperimentAuthor> <ExperimentName>Experiment 5678</ExperimentName> <ExperimentProtocol>Experiment Protocol</ExperimentProtocol> <ExperimentStatus>Active</ExperimentStatus> <FormulationName>Formulation 1</FormulationName> <ID>1234</ID> <Name>Plate 1234</Name> <StorageTemperature>15</StorageTemperature> </Plate>