User legal status¶
Endpoint to retrieve user legal status for an user.
Fields¶
Below are listed the specific user legal status that are returned:
field | type | constraints | default | Req | W | U |
---|---|---|---|---|---|---|
dsaApproved | boolean | positive | yes | no | no |
dsaApproved
The status of DSA approved of an user.
Examples¶
Retrieving the legal status of an user :
Request :
GET /v2/users/1/legal-status HTTP/1.1 Host: api.marktplaats.nlResponse :
HTTP/1.1 200 OK Content-Type: application/json { "_links": { "self": { "href": "/v2/users/1/legal-status", "title": "Access to user legal status" }, "describedby": { "href": "https://api.marktplaats.nl/docs/v2/user-legal-status.html" }, "curies": [ { "href": "https://api.marktplaats.nl/docs/v2/rels/{rel}.html", "templated": true, "name": "mp" } ] }, "dsaApproved": true }