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/a4a983ef-91df-428f-9b08-1e88ec5357df
Headers
accept: application/json
content-type: application/json
accept-encoding: identity
authorization: Basic FILTERED
cURL Edit, then copy and paste on your terminal
curl -X GET \
-H 'accept: application/json' \
-H 'content-type: application/json' \
-H 'accept-encoding: identity' \
--compressed -H 'Accept-Encoding: gzip, deflate' \
-u YOUR_API_CLIENT_ID \
'https://api.apjc.amp.cisco.com/v0/groups/a4a983ef-91df-428f-9b08-1e88ec5357df'
Response
cURL Edit, then copy and paste on your terminal
curl -X GET \ -H 'accept: application/json' \ -H 'content-type: application/json' \ -H 'accept-encoding: identity' \ --compressed -H 'Accept-Encoding: gzip, deflate' \ -u YOUR_API_CLIENT_ID \ 'https://api.apjc.amp.cisco.com/v0/groups/a4a983ef-91df-428f-9b08-1e88ec5357df'
Shortened for readability
content-type: application/json transfer-encoding: chunked status: 200 OK x-ratelimit-limit: 3000 x-ratelimit-reset: 875 strict-transport-security: max-age=31536000; includeSubDomains, max-age=31536000 referrer-policy: strict-origin-when-cross-origin x-ratelimit-remaining: 2797 x-permitted-cross-domain-policies: none x-download-options: noopen etag: W/"8603d137e3031b0a02a3ade61aaa9d1b" x-frame-options: SAMEORIGIN x-ratelimit-resetdate: 2022-03-18T11:55:11Z
{
"version": "v0.2.2",
"metadata": {
"links": {
"self": "https://api.apjc.amp.cisco.com/v0/groups/a4a983ef-91df-428f-9b08-1e88ec5357df"
}
},
"data": {
"name": "00-mar25-forensic-group",
"description": "",
"guid": "a4a983ef-91df-428f-9b08-1e88ec5357df",
"source": null
}
}