The Dyspatch API is based on the REST paradigm, and features resource based URLs with standard HTTP response codes to indicate errors. We use standard HTTP authentication and request verbs, and all responses are JSON formatted. See our Implementation Guide for more details on how to implement Dyspatch.
Dyspatch provides API Clients for popular languages and web frameworks.
This Python package is automatically generated by the OpenAPI Generator project:
- API version: 2020.11
- Package version: 6.0.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen For more information, please visit https://docs.dyspatch.io
Python 2.7 and 3.4+
If the python package is hosted on a repository, you can install directly using:
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
(you may need to run pip
with root permission: sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
)
Then import the package:
import dyspatch_client
Install via Setuptools.
python setup.py install --user
(or sudo python setup.py install
to install the package for all users)
Then import the package:
import dyspatch_client
Please follow the installation procedure and then run the following:
from __future__ import print_function
import time
import dyspatch_client
from dyspatch_client.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to https://api.dyspatch.io
# See configuration.py for a list of all supported configuration parameters.
configuration = dyspatch_client.Configuration(
host = "https://api.dyspatch.io"
)
# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.
# Configure API key authorization: Bearer
configuration = dyspatch_client.Configuration(
host = "https://api.dyspatch.io",
api_key = {
'Authorization': 'YOUR_API_KEY'
}
)
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['Authorization'] = 'Bearer'
# Enter a context with an instance of the API client
with dyspatch_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = dyspatch_client.DraftsApi(api_client)
draft_id = 'draft_id_example' # str | A draft ID
language_id = 'language_id_example' # str | A language ID (eg: en-US)
accept = 'accept_example' # str | A version of the API that should be used for the request. For example, to use version \"2020.11\", set the value to \"application/vnd.dyspatch.2020.11+json\"
try:
# Remove a localization
api_instance.delete_localization(draft_id, language_id, accept)
except ApiException as e:
print("Exception when calling DraftsApi->delete_localization: %s\n" % e)
All URIs are relative to https://api.dyspatch.io
Class | Method | HTTP request | Description |
---|---|---|---|
DraftsApi | delete_localization | DELETE /drafts/{draftId}/localizations/{languageId} | Remove a localization |
DraftsApi | get_draft_by_id | GET /drafts/{draftId} | Get Draft by ID |
DraftsApi | get_draft_localization_keys | GET /drafts/{draftId}/localizationKeys | Get localization keys |
DraftsApi | get_drafts | GET /drafts | List Drafts |
DraftsApi | get_localization_for_draft | GET /drafts/{draftId}/localizations | Get localizations on a draft |
DraftsApi | save_localization | PUT /drafts/{draftId}/localizations/{languageId} | Create or update a localization |
DraftsApi | set_translation | PUT /drafts/{draftId}/localizations/{languageId}/translations | Set translations for language |
DraftsApi | submit_draft_for_approval | POST /drafts/{draftId}/publishRequest | Submit the draft for approval |
LocalizationsApi | get_localization_by_id | GET /localizations/{localizationId} | Get Localization Object by ID |
TemplatesApi | get_template_by_id | GET /templates/{templateId} | Get Template by ID |
TemplatesApi | get_templates | GET /templates | List Templates |
- APIError
- CompiledRead
- Cursor
- DraftMetaRead
- DraftRead
- DraftsRead
- InlineObject
- LocalizationKeyRead
- LocalizationMetaRead
- LocalizationRead
- TemplateMetaRead
- TemplateRead
- TemplatesRead
- Type: API key
- API key parameter name: Authorization
- Location: HTTP header