Skip to content

Get services of group

GET
/groups/{groupId}/services
curl --request GET \
--url https://api-uat.flinkey.de/v3/groups/1/services \
--header 'Authorization: Bearer <token>' \
--header 'Customer-ID: example' \
--header 'flinkey-API-Key: <flinkey-API-Key>'

Purpose

Retrieve services assigned to one specific group in the selected customer context.

A group is an entity represented by a group ID.

A group can contain cars, users, services and products.

Use this operation for operational lookup, reconciliation and support workflows where grouped services must be retrieved.

When to use this operation

Use this operation when the partner backend or operational backend needs to retrieve services assigned to a specific group.

Typical situations:

  • listing services of a group,
  • validating group membership for services,
  • supporting grouping-based administration workflows,
  • reconciling grouped service records with partner or support records,
  • preparing operational workflows for a subset of services,
  • checking whether a service is assigned to the intended group.

For standard access flows, partner backends usually work primarily with Car, User and Assignment.

Use grouping operations where the integration or operational process explicitly works with grouped cars, users, services or products.

Validation notes

  • PROD returned 200 OK with a direct JSON array and no OData wrapper.
  • The collection was observed both empty and with one assigned active service.
  • Assignment and subsequent removal were confirmed through control GET requests.
  • $filter, $orderby, $top and $skip were accepted as documented above.

Async behavior

Synchronous.

The services assigned to the group are returned directly in the API response.

Webhook result

No.

This operation does not produce a webhook result.

Security notes

Never log:

  • flinkey-API-Key,
  • bearer token,
  • full request headers.

Group and service identifiers are environment-specific.

Do not mix UAT and PROD group IDs or service IDs.

Use placeholders in documentation, examples, screenshots and AI prompts.

For standard partner integrations, the mobile app must not receive API Manager credentials, backend bearer tokens or the flinkey-API-Key.

groupId
required
integer

Database ID of the group

Customer-ID
required
string

Customer database ID

Services of the group were retrieved successfully

Media typeapplication/json
Array<object>
object
id

Service database ID

number
name

Service name

string | null
productId

Product linked to the service; returned by PROD although omitted from the public response schema

number | null
isTerminated

Indicates whether the service is terminated

boolean
terminationDate

Service termination date in date-time format, if available

string | null
terminationCause

Termination cause, if available

string | null
Example
[
{
"id": 11111,
"name": "flinkey Access",
"isTerminated": false,
"terminationDate": null,
"terminationCause": null
}
]

Invalid subscription key or missing / invalid access token

Recommended handling: Check flinkey-API-Key, bearer token and environment configuration

API Manager, customer context or group was not found

Recommended handling: Check credentials, token context, Customer-ID and local groupId mapping

Server-side error

Recommended handling: Retry later if appropriate and escalate if persistent