README.md in access-2.0.53 vs README.md in access-2.0.54
- old
+ new
@@ -33,11 +33,11 @@
#### Config via Environment Variables
You can set config settings by creating environment variables called:
-`ENV['ACCESS_TOKEN']`, `ENV['ACCESS_ENVIRONMENT']`, `ENV['ACCESS_RETURN_JSON']`, `ENV['ACCESS_HASHIFY']`, `ENV['ACCESS_TIMEOUT']`. `ENV['ACCESS_DEBUG_OUTPUT']`
+`ENV['ACCESS_TOKEN']`, `ENV['ACCESS_ENVIRONMENT']`, `ENV['ACCESS_RETURN_JSON']`, `ENV['ACCESS_HASHIFY']`, `ENV['ACCESS_TIMEOUT']`, `ENV['ACCESS_DEBUG_OUTPUT']`.
#### Config via Initializer
You can also create an initializer file to set up a config
@@ -261,9 +261,28 @@
Access::Verify.token options
```
```ruby
Access::Verify.filter options
+```
+
+####AMT
+
+Need amt permission scope for your application before you can access these api's
+
+```ruby
+# pass in an array of members you want to import with the required parameters:
+# https://docs.accessdevelopment.com/amt/importing-members.html#overview
+members_array = [{organization_customer_identifier: 'example', program_customer_identifier: 'example', member_customer_identifier: 'example' }]
+a = Access::Amt.import(members_array)
+```
+
+```ruby
+a = Access::Amt.list()
+```
+a = Access::Amt.show(**import_id**)
+```ruby
+
```
## Contributing
1. Fork it ( https://github.com/access-development/api-ruby/fork )