Gets a list of HelloID product guids based on group membership.
Request
Request URI
Method | Request URI |
---|---|
GET | https://{company-name}.helloid.com/api/v1/groups/{groupGuid}/products |
Request parameters
Parameter | Description |
---|---|
{company-name} | The company name of the target company |
{groupGuid} | The group guid of the group you want to retrieve the products for. |
Request headers
None.
Request body
None.
Response
Response status
Code | Description |
---|---|
200(OK) | Indicates that the operation was successful. |
404(NOT FOUND) | Indicates that the operation was not successful. No group was found. |
400(BAD REQUEST) | Indicates that the operation was not successful. There were validation errors or the request body was malformed. |
401(UNAUTHORIZED) | Indicates that no authentication header was given or the api key and secret were invalid. If the api key and secret were valid check the configuration in your portal, it is possibilty these were IP restricted or are disabled. |
Please also see common HTTP status codes.
Sample response body
[
"9c81d6d9-6eca-4636-9514-5c999fe04fe8",
"fb379075-1921-41c9-9f4d-6596e103fea6",
"ed503e6a-43e5-480f-b778-69be4e1f6d4c",
"cb6d10aa-78df-4426-9625-9d9ba50dc25f",
"a0c684c6-705b-4adc-9e7f-d9a5de695c17"
]
Example request with cURL
Replace placeholder values surrounded by {
}
with the actual values.
curl -u {api-key}:{api-secret} -X GET https://{company-name}.helloid.com/api/v1/groups/{groupGuid}/products