All URIs are relative to https://signrequest.com/api/v1
Method | HTTP request | Description |
---|---|---|
team_members_list | GET /team-members/ | Retrieve a list of Team Members |
team_members_read | GET /team-members/{uuid}/ | Retrieve a Team Member |
InlineResponse2006 team_members_list(opts)
Retrieve a list of Team Members
# load the gem
require 'signrequest_client'
# setup authorization
SignRequestClient.configure do |config|
# Configure API key authorization: Token
config.api_key['Authorization'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['Authorization'] = 'Bearer'
end
api_instance = SignRequestClient::TeamMembersApi.new
opts = {
is_active: 'is_active_example', # String |
is_owner: 'is_owner_example', # String |
is_admin: 'is_admin_example', # String |
user__email: 'user__email_example', # String |
user__first_name: 'user__first_name_example', # String |
user__last_name: 'user__last_name_example', # String |
page: 56, # Integer | A page number within the paginated result set.
limit: 56 # Integer | Number of results to return per page.
}
begin
#Retrieve a list of Team Members
result = api_instance.team_members_list(opts)
p result
rescue SignRequestClient::ApiError => e
puts "Exception when calling TeamMembersApi->team_members_list: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
is_active | String | [optional] | |
is_owner | String | [optional] | |
is_admin | String | [optional] | |
user__email | String | [optional] | |
user__first_name | String | [optional] | |
user__last_name | String | [optional] | |
page | Integer | A page number within the paginated result set. | [optional] |
limit | Integer | Number of results to return per page. | [optional] |
- Content-Type: application/json
- Accept: application/json
TeamMember team_members_read(uuid)
Retrieve a Team Member
# load the gem
require 'signrequest_client'
# setup authorization
SignRequestClient.configure do |config|
# Configure API key authorization: Token
config.api_key['Authorization'] = 'YOUR API KEY'
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
#config.api_key_prefix['Authorization'] = 'Bearer'
end
api_instance = SignRequestClient::TeamMembersApi.new
uuid = 'uuid_example' # String |
begin
#Retrieve a Team Member
result = api_instance.team_members_read(uuid)
p result
rescue SignRequestClient::ApiError => e
puts "Exception when calling TeamMembersApi->team_members_read: #{e}"
end
Name | Type | Description | Notes |
---|---|---|---|
uuid | String |
- Content-Type: application/json
- Accept: application/json