GET /sets/$idΒΆ
Parameters:
Parameter | Type | Description |
---|---|---|
id | String | Unique identifier of the set object |
Response JSON object:
Attribute | Type | Description |
---|---|---|
id | String | Unique id of the set object |
url | String | Set resource URL |
name | String | Set unique name |
title | String | Set title |
description | String | Additional information about the set |
dataspaceId | String | Unique id of the dataspace that the set belongs to |
dataspaceUrl | String | URL for the dataspace that the set belongs to |
resources | String | URL for the set’s resources |
state | String | State can be active or deleted |
Example request:
curl -H "Authorization: your-apikey" http://localhost:42042/v1/sets/2bba037f-d5c3-482a-965c-89f057582b37
Example response:
{
"id": "2bba037f-d5c3-482a-965c-89f057582b37",
"url": "http://localhost:42042/v1/sets/2bba037f-d5c3-482a-965c-89f057582b37",
"name": "9200316-bibliographicresource_3000073808381",
"title": "Aerial photograph, Lombartzyde, Belgium, 1917",
"description": "",
"dataspaceId": "099c3cae-9fe2-4acf-970f-b5b149eeae24",
"dataspaceUrl": "http://localhost:42042/v1/dataspaces/099c3cae-9fe2-4acf-970f-b5b149eeae24",
"resources": "http://localhost:42042/v1/sets/2bba037f-d5c3-482a-965c-89f057582b37/resources",
"state": "active"
}