GET /v0/groups/{:group_guid}
Description
Return a specified group
Name | Type | Description |
---|---|---|
version | String | |
metadata.links.self | String | |
data.name | String | |
data.description | String | |
data.guid | GUID | |
data.source | String |
Examples
Fetch group with given group_guid
Request
Requires AuthorizationGET /v0/groups/bfe6abd0-6591-4bf2-a0d3-02efc1cd268e
Headers
accept: application/json
content-type: application/json
authorization: Basic FILTERED
cURL Edit, then copy and paste on your terminal
curl -X GET \
-H 'accept: application/json' \
-H 'content-type: application/json' \
--compressed -H 'Accept-Encoding: gzip, deflate' \
-u YOUR_API_CLIENT_ID \
'https://api.apjc.amp.cisco.com/v0/groups/bfe6abd0-6591-4bf2-a0d3-02efc1cd268e'
Response
cURL Edit, then copy and paste on your terminal
curl -X GET \ -H 'accept: application/json' \ -H 'content-type: application/json' \ --compressed -H 'Accept-Encoding: gzip, deflate' \ -u YOUR_API_CLIENT_ID \ 'https://api.apjc.amp.cisco.com/v0/groups/bfe6abd0-6591-4bf2-a0d3-02efc1cd268e'
Shortened for readability
x-ratelimit-limit: 3000 x-ratelimit-reset: 3313 x-ratelimit-remaining: 2856 x-frame-options: SAMEORIGIN x-ratelimit-resetdate: 2017-08-18T03:52:38Z strict-transport-security: max-age=31536000 status: 200 OK transfer-encoding: chunked content-type: application/json; charset=utf-8
{
"version": "v0.2.2",
"metadata": {
"links": {
"self": "https://api.apjc.amp.cisco.com/v0/groups/bfe6abd0-6591-4bf2-a0d3-02efc1cd268e"
}
},
"data": {
"name": "AoVdQMjT",
"description": "This is a new group",
"guid": "bfe6abd0-6591-4bf2-a0d3-02efc1cd268e",
"source": "Created via API"
}
}