Skip to content

Commit

Permalink
Fields get API
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashutosh619-sudo committed Dec 20, 2023
1 parent 68b5038 commit d4c8d8d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions bamboosdk/api/fields.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from .api_base import ApiBase

class Fields(ApiBase):
CHECK_URL = '/v1/meta/fields/'

def get(self):
"""
Get method to get the different fields,
used here for checking connection.
Returns:
"""
return self._get_request(self.CHECK_URL)

0 comments on commit d4c8d8d

Please sign in to comment.