Skip to main content

Get Password Sync Group List

GET 

/password-sync-groups

This API returns a list of password sync groups. A token with ORG_ADMIN authority is required to call this API.

Request

Query Parameters

    limit int32

    Possible values: <= 250

    Default value: 250

    Max number of results to return. See V3 API Standard Collection Parameters for more information.

    Example: 250
    offset int32

    Offset into the full result set. Usually specified with limit to paginate through the results. See V3 API Standard Collection Parameters for more information.

    Example: 0
    count boolean

    If true it will populate the X-Total-Count response header with the number of results that would be returned if limit and offset were ignored.

    Since requesting a total count can have a performance impact, it is recommended not to send count=true if that value will not be used.

    See V3 API Standard Collection Parameters for more information.

    Example: true

Responses

A list of password sync groups.

Schema
  • Array [
  • id string

    ID of the sync group

    name string

    Name of the sync group

    passwordPolicyId string

    ID of the password policy

    sourceIds string[]

    List of password managed sources IDs

    created date-timenullable

    The date and time this sync group was created

    modified date-timenullable

    The date and time this sync group was last modified

  • ]
Loading...