200
The 200
HTTP code is used when the user’s request has been successful. This is our most commonly HTTP code and should be used for all successful requests, unless the request is a POST
(see 201) or there are multiple status codes being returned (though this is discouraged, see 207)
Example response
{
"_links": {
"self": {
"href": "https://api.nexmo.com/accounts/7c9738e6/secrets"
}
},
"_embedded": {
"secrets": [
{
"_links": {
"self": {
"href": "https://api.nexmo.com/accounts/7c9738e6/secrets/ad6dc56f-07b5-46e1-a527-85530e625800"
}
},
"id": "ad6dc56f-07b5-46e1-a527-85530e625800",
"created_at": "2017-03-02T16:34:49Z"
}
]
}
}