REST Mapping API

Updated by Daniel Sjögren

Quinyx ID Mapping API

The Quinyx mapping service is a Restful API for managing connections between internal IDs in Quinyx with external IDs used in other systems integrated with Quinyx.

Api-docs for rc : https://api-rc.quinyx.com/v2/docs

Api-docs : https://api.quinyx.com/v2/docs

The Mapping API covers the following scopes:

  • Organization
    • Group id - Used to map external IDs to Quinyx internal IDs in the Quinyx organizational structure.
  • Employee ID -  Used to fetch Quinyx internal employee IDs which are mapped towards badge numbers.
  • Absence id - Used in the mapping API to map a given absence occasion of an external system to the corresponding absence occasion in Quinyx

Access Rights

To send requests to the Mapping API, you must add access rights for Mapping on your integration credentials in account settings.

GET /mappingTypes

This API returns all existing mapping types. Currently, only Organization types are supported. More types will be supported in the future.

GET /mappingTypes/{mappingType}/mappings

List mapping types response based on specified domainid in the security token. and the mappingType specified as an id

Query parameters:

Use one of the following:

quinyxValue string

or

externalValue string

If both values are submitted an error will be returned.

Response

The response will return a list with mapping objects if the request is successful.

Example response:

[
{
"mappingType": "string",
"id": "string",
"quinyxValue": "string",
"externalValue": "string",
"domainId": 0
}
]

POST /groups/{domainGroupId}/

Add Mapping by calling this endpoint with the Domain GroupId.

Request body

The Body of the request should be in this JSON-format:

{
"quinyxValue": "string",
"externalValue": "string",
"mappingType": "GROUP_ID"
}

quinyxValue: the internal id of Quinyx that you want to add a mapping to.

externalValue: the ID of your entity in of your system

mappingType: the type of the mapping you are adding.

The api will valuate if the quinyxValue exists for the mapping type you are adding.

Response

If successful the endpoint will return the new mapping including the mapping ID that needs to be used in combination with domainId to update or delete the mapping

{
"mappingType": "string",
"id": "string",
"quinyxValue": "string",
"externalValue": "string",
"domainId": 0
}

Put /groups/{domainGroupId}/{mappingId}

Update your mapping with this endpoint

The externalValue is the only attribute that can be updated

Delete /groups/{domainGroupId}/{mappingId}

Delete your mapping with this endpoint. If successful, the endpoint returns a 204


How Did We Do?