v18

latestOpenAPI 3.0.0raw.githubusercontent.com2024-11-18167108845.6 KB
linkedUsers

Add Batch Linked Users

post/linked_users/batch

Request body

linked_user_origin_idsstring[] nullable required

The ids of the users in the context of your own software

aliasstring nullable required

Your company alias

Example request

{
  "linked_user_origin_ids": [
    "id_1"
  ],
  "alias": "acme"
}

Response

id_linked_userstring nullable required
linked_user_origin_idstring nullable required
aliasstring nullable required
id_projectstring nullable required

Example response

[
  {
    "id_linked_user": "801f9ede-c698-4e66-a7fc-48d19eebaa4f",
    "linked_user_origin_id": "id_1",
    "alias": "acme",
    "id_project": "801f9ede-c698-4e66-a7fc-48d19eebaa4f"
  }
]