GET /identifiers/{identifier}¶
Get meta-data associated with a consumer’s identifier.
Path parameters:
Name |
Type |
Description |
---|---|---|
|
string, required |
a consumer identifier |
Example request:
GET /identifiers/990000000001 HTTP/1.1
Host: api.ereceipts.co.uk
Accept: application/json
Example response:
See Identifier Object for a description of the format.
HTTP/1.1 200 OK
Content-Length: 378
Content-Type: application/json; charset=UTF-8
{
"created_timestamp": "2016-09-14T13:57:38+00:00",
"identifier": "990000000001",
"properties": {
"email": null,
"name": {
"first": null,
"last": null,
"middle": null,
"title": null
},
"opt-out": []
},
"source_updated_timestamp": "2016-09-14T13:57:38+00:00",
"summary": {},
"updated_timestamp": "2016-09-14T13:57:38+00:00"
}