Search Clients
Searches for clients.
Query Variables | Values | Description |
---|---|---|
uniqueId | NA | Client ID. |
name | NA | Client name. |
activeStatus | true, false | Active status of client. |
startCreationDate | NA | Client created within a period of time. Provide the from date. Example: 2016-08-18T06:52:24 0000 |
endCreationDate | NA | Client created within a period of time. Provide the to date. Example: 2016-08-20T06:52:24 0000 |
startUpdationDate | NA | Client updated within a period of time. Provide the from update date. Example: 2016-08-25T18:56:04 0000 |
endUpdationDate | NA | Client updated within a period of time. Provide to update date. Example: 2016-08-25T18:56:04 0000 |
Notes
There are special characters that can be used in a query string:
- (+) represents the next field and must be URL-encoded.
- (:) represents equals. An example is
key : value
. - Space characters must be URL-encoded.
- Date format must be yyyy-MM-ddTHH:mm:ssZ (GMT).
get
/api/v2/tenants/{orgId}/clients/search
Path Parameters
- orgId
mspId defined for the tenant
Query Parameters
- pageNo
Default: 1
- pageSize
Default: 100
- sortName
Default: note.id
- isDescendingOrder
- queryString
Query String
- uniqueId
Client uuid
- name
Client name.
- activeStatus
Active status of client.
- startCreationDate
Client created within a period of time. Provide the to date.<br>Example: 2016-08-20T06:52:24 0000
- endCreationDate
Client created within a period of time. Provide the to date.<br>Example: 2016-08-20T06:52:24 0000
- startUpdationDate
Client updated within a period of time. Provide the from update date.<br>Example: 2016-08-25T18:56:04 0000
- endUpdationDate
Client updated within a period of time. Provide to update date.<br>Example: 2016-08-25T18:56:04 0000
00