New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

sky-api-client

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sky-api-client

Python client for RENXT APIs

  • 3.3.6
  • PyPI
  • Socket score

Maintainers
1

Sky Api Client

Python client for RENXT APIs.

Developed by Uddesh at Almabase

Installation

pip install sky_api_client

Examples

  1. Initialize the client
from sky_api_client import SkyApi

sky_api = SkyApi('subscription_key', 'access_token')
  1. Get list of all constituent
list = sky_api.constituent.list()

Available methods

  1. List all constituents
list = sky_api.constituent.list()
  1. Get a specific constituent
constituent = sky_api.constituent.get('constituent_id')
  1. Create a new constituent
new_constituent = sky_api.constituent.create({'first': '', 'last': ''})
  1. Update an existing constituent
updated_constituent = sky_api.constituent.update('constituent_id' ,{'first': '', 'last': ''})
  1. Delete a constituent
sky_api.constituent.delete('constituent_id')
  1. List all entity constituents
sky_api.address.list('constituent_id')

Available Entities and Methods

  1. address
    • list
    • get
    • create
    • update
    • delete
    • types
  2. code_table
    • list
    • get
    • create
    • update
    • delete
  3. constituent
    • list
    • get
    • create
    • update
    • delete
    • search
  4. custom_field_category
    • list
  5. custom_fields
    • list
    • create
    • update
    • delete
  6. education
    • list
    • get
    • create
    • update
    • delete
  7. email_addresses
    • list
    • create
    • update
    • delete
    • types
  8. phone
    • list
    • get
    • create
    • update
    • delete
    • types
  9. relationship
    • list
    • get
    • create
    • update
    • delete
  10. table_entry
    • list
    • get
    • create
    • update
    • delete
  11. subscription_webhook
    • list
    • get
    • create
    • delete
  12. online_presence
    • list
    • create
    • get
    • update
    • delete
    • types
  13. constituent_address
    • list
  14. constituent_custom_field
    • list
  15. constituent_education
    • list
  16. constituent_email_address
    • list
  17. constituent_online_presence
    • list
  18. constituent_phone
    • list
  19. constituent_relationship
    • list
  20. action
    • list
    • create
    • get
    • update
    • delete
    • types
    • list_all
  21. action_status
    • list

These entities can be used same as above example for constituent.

email_address_list = sky_api.email_addresses.list()

Note:- Current version doesn't have refresh token functionality.

Updating Version

$ semversioner add-change --type patch --description "description for the change"
$ ./release

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc