We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3914df commit 183dde9Copy full SHA for 183dde9
README.md
@@ -69,7 +69,13 @@ client = ZendeskAPI::Client.new do |config|
69
config.access_token = "your OAuth access token"
70
71
# Optional:
72
+ # When the library initializes, it will fetch the ticket fields metadata
73
+ # from the API and cache it for future requests.
74
+ # You then have access to ticket field definitions through ticket.custom_field_symbol["field_key"]
75
+ # Enabling this will add an extra API request during initialization.
76
+ config.load_ticket_fields_metadata = true # Default: false
77
78
+
79
# Retry uses middleware to notify the user
80
# when hitting the rate limit, sleep automatically,
81
# then retry the request.
0 commit comments