Success response:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"data": [ | |
{ | |
"type": "xyz", | |
"id": "dw12345", | |
"attributes": { | |
"status": "requested" | |
}, | |
"links": { | |
"self": "http://endpoint.example.com/webservice/dw12345" | |
} | |
} | |
] | |
} |
Failure response:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"errors": [ | |
{ | |
"status": "400", | |
"source": { | |
"pointer": "/data/attributes/environment" | |
}, | |
"title": "Invalid Attribute", | |
"detail": "Environment must be int, uat or prod." | |
} | |
] | |
} |