Endpoint used to get a list of POP (Persistent Organic Pollutant) name codes. It returns a code list on <b>200</b> success or a <b>401</b> on failure.<br><br> Example Request
curl --request GET \--url https://waste-tracking.api.defra.gov.uk/reference-data/pop-names \
--header "authorization": Bearer eyJraWQiOiJQYnJiZXZvYUF5d1NQcG5KUWlsQXVCT1Q4aVdyNUFcL3RaQkZHaTk5TU5CTT0iLCJhbGciOiJSUzI1NiJ9...
get/reference-data/pop-names
Response
A truncated list of POP names obtained using the GET pop-names method<br><br> Success<br><br>
[
{
"code": "END",
"chemicalName": "Endosulfan"
},
{
"code": "HCBD",
"chemicalName": "Hexachlorobutadiene"
},
{
"code": "PCNS",
"chemicalName": "Polychlorinated naphthalenes"
}, ... cont
Example response
[
{
"code": "END",
"chemicalName": "Endosulfan"
}
]