Skip to content

Repository files navigation

phrase-api

Phrase Strings is a translation management platform for software projects. You can collaborate on language file translation with your team or order translations through our platform. The API allows you to import locale files, download locale files, tag keys or interact in other ways with the localization data stored in Phrase Strings for your account.

This Python package is automatically generated by the OpenAPI Generator project:

  • API version: 2.0.0
  • Package version: 3.25.0
  • Build package: org.openapitools.codegen.languages.PythonClientCodegen For more information, please visit https://developers.phrase.com/api/

Requirements.

Python 2.7 and 3.4+

Installation & Usage

pip install

pip install phrase-api

Then import the package:

importphrase_api

pip install from Github repository

If the python package is hosted on a repository, you can install directly using:

pip install git+https://github.com/phrase/phrase-python.git

(you may need to run pip with root permission: sudo pip install git+https://github.com/phrase/phrase-python.git)

Then import the package:

importphrase_api

Setuptools

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:

importphrase_api

Getting Started

Please follow the installation procedure and then run the following:

from __future__ importprint_functionimporttimeimportphrase_apifromphrase_api.restimportApiExceptionfrompprintimportpprintconfiguration=phrase_api.Configuration()
configuration.api_key['Authorization'] ='YOUR_API_KEY'configuration.api_key_prefix['Authorization'] ='token'# Defining host is optional and default to https://api.phrase.com/v2configuration.host="https://api.phrase.com/v2"# Enter a context with an instance of the API clientwithphrase_api.ApiClient(configuration) asapi_client:
# Create an instance of the API classapi_instance=phrase_api.AccountsApi(api_client)
id='id_example'# str | ID (required)x_phrase_app_otp='x_phrase_app_otp_example'# str | Two-Factor-Authentication token (optional)try:
# Get a single accountapi_response=api_instance.account_show(id, x_phrase_app_otp=x_phrase_app_otp)
pprint(api_response)
exceptApiExceptionase:
print("Exception when calling AccountsApi->account_show: %s\n"%e)

Datacenters

The API is only accessible via HTTPS and the current version is v2, which results in a base URL like: https://api.phrase.com/v2 depending on the datacenter.

EU Datacenter

https://api.phrase.com/v2

This is the default datacenter.

US Datacenter

https://api.us.app.phrase.com/v2/

Specifying US Datacenter

You can use the US datacenter by setting the following:

configuration.host = "https://api.us.app.phrase.com/v2/"

Documentation For Authorization

Token

  • Type: API key
  • API key parameter name: Authorization
  • Location: HTTP header
importphrase-apiconfiguration=phrase-api.Configuration()
configuration.api_key['Authorization'] ='YOUR_API_KEY'configuration.api_key_prefix['Authorization'] ='token'

Basic

  • Type: HTTP basic authentication
importphrase-apiconfiguration=phrase-api.Configuration()
configuration.username='YOUR_USERNAME'configuration.password='YOUR_PASSWORD'

Documentation for API Endpoints

All URIs are relative to https://api.phrase.com/v2

ClassMethodHTTP requestDescription
AccountsApiaccount_showGET /accounts/{id}Get a single account
AccountsApiaccounts_listGET /accountsList accounts
AuthorizationsApiauthorization_createPOST /authorizationsCreate an authorization
AuthorizationsApiauthorization_deleteDELETE /authorizations/{id}Delete an authorization
AuthorizationsApiauthorization_showGET /authorizations/{id}Get a single authorization
AuthorizationsApiauthorization_updatePATCH /authorizations/{id}Update an authorization
AuthorizationsApiauthorizations_listGET /authorizationsList authorizations
AutomationEventsApiaccount_automation_events_listGET /accounts/{account_id}/automation_eventsList automation events for an account
AutomationEventsApiautomation_events_listGET /accounts/{account_id}/automations/{automation_id}/eventsList events for an automation
AutomationsApiautomation_activatePOST /accounts/{account_id}/automations/{automation_id}/activateActivate an automation
AutomationsApiautomation_createPOST /accounts/{account_id}/automationsCreate an automation
AutomationsApiautomation_deactivatePOST /accounts/{account_id}/automations/{automation_id}/deactivateDeactivate an automation
AutomationsApiautomation_deleteDELETE /accounts/{account_id}/automations/{automation_id}Destroy automation
AutomationsApiautomation_showGET /accounts/{account_id}/automations/{automation_id}Get a single automation
AutomationsApiautomation_triggerPOST /accounts/{account_id}/automations/{automation_id}/triggerTrigger an automation
AutomationsApiautomation_updatePATCH /accounts/{account_id}/automations/{automation_id}Update an automation
AutomationsApiautomations_listGET /accounts/{account_id}/automationsList automations
BlacklistedKeysApiblacklisted_key_createPOST /projects/{project_id}/blacklisted_keysCreate a blocked key
BlacklistedKeysApiblacklisted_key_deleteDELETE /projects/{project_id}/blacklisted_keys/{id}Delete a blocked key
BlacklistedKeysApiblacklisted_key_showGET /projects/{project_id}/blacklisted_keys/{id}Get a single blocked key
BlacklistedKeysApiblacklisted_key_updatePATCH /projects/{project_id}/blacklisted_keys/{id}Update a blocked key
BlacklistedKeysApiblacklisted_keys_listGET /projects/{project_id}/blacklisted_keysList blocked keys
BranchesApibranch_compareGET /projects/{project_id}/branches/{name}/compareCompare branches
BranchesApibranch_comparison_createPOST /projects/{project_id}/branches/{name}/compareCreate comparison (async.)
BranchesApibranch_createPOST /projects/{project_id}/branchesCreate a branch
BranchesApibranch_deleteDELETE /projects/{project_id}/branches/{name}Delete a branch
BranchesApibranch_mergePATCH /projects/{project_id}/branches/{name}/mergeMerge a branch
BranchesApibranch_showGET /projects/{project_id}/branches/{name}Get a single branch
BranchesApibranch_syncPATCH /projects/{project_id}/branches/{name}/syncSync a branch
BranchesApibranch_updatePATCH /projects/{project_id}/branches/{name}Update a branch
BranchesApibranches_listGET /projects/{project_id}/branchesList branches
CommentReactionsApireaction_createPOST /projects/{project_id}/keys/{key_id}/comments/{comment_id}/reactionsCreate a reaction
CommentReactionsApireaction_deleteDELETE /projects/{project_id}/keys/{key_id}/comments/{comment_id}/reactions/{id}Delete a reaction
CommentReactionsApireaction_showGET /projects/{project_id}/keys/{key_id}/comments/{comment_id}/reactions/{id}Get a single reaction
CommentReactionsApireactions_listGET /projects/{project_id}/keys/{key_id}/comments/{comment_id}/reactionsList reactions
CommentRepliesApireplies_listGET /projects/{project_id}/keys/{key_id}/comments/{comment_id}/repliesList replies
CommentRepliesApireply_createPOST /projects/{project_id}/keys/{key_id}/comments/{comment_id}/repliesCreate a reply
CommentRepliesApireply_deleteDELETE /projects/{project_id}/keys/{key_id}/comments/{comment_id}/replies/{id}Delete a reply
CommentRepliesApireply_mark_as_readPATCH /projects/{project_id}/keys/{key_id}/comments/{comment_id}/replies/{id}/mark_as_readMark a reply as read
CommentRepliesApireply_mark_as_unreadPATCH /projects/{project_id}/keys/{key_id}/comments/{comment_id}/replies/{id}/mark_as_unreadMark a reply as unread
CommentRepliesApireply_showGET /projects/{project_id}/keys/{key_id}/comments/{comment_id}/replies/{id}Get a single reply
CommentsApicomment_createPOST /projects/{project_id}/keys/{key_id}/commentsCreate a comment
CommentsApicomment_deleteDELETE /projects/{project_id}/keys/{key_id}/comments/{id}Delete a comment
CommentsApicomment_mark_checkGET /projects/{project_id}/keys/{key_id}/comments/{id}/readCheck if comment is read
CommentsApicomment_mark_readPATCH /projects/{project_id}/keys/{key_id}/comments/{id}/readMark a comment as read
CommentsApicomment_mark_unreadDELETE /projects/{project_id}/keys/{key_id}/comments/{id}/readMark a comment as unread
CommentsApicomment_showGET /projects/{project_id}/keys/{key_id}/comments/{id}Get a single comment
CommentsApicomment_updatePATCH /projects/{project_id}/keys/{key_id}/comments/{id}Update a comment
CommentsApicomments_listGET /projects/{project_id}/keys/{key_id}/commentsList comments
CustomMetadataApicustom_metadata_properties_deleteDELETE /accounts/{account_id}/custom_metadata/properties/{id}Destroy property
CustomMetadataApicustom_metadata_properties_listGET /accounts/{account_id}/custom_metadata/propertiesList properties
CustomMetadataApicustom_metadata_property_createPOST /accounts/{account_id}/custom_metadata/propertiesCreate a property
CustomMetadataApicustom_metadata_property_showGET /accounts/{account_id}/custom_metadata/properties/{id}Get a single property
CustomMetadataApicustom_metadata_property_updatePATCH /accounts/{account_id}/custom_metadata/properties/{id}Update a property
DistributionsApidistribution_createPOST /accounts/{account_id}/distributionsCreate a distribution
DistributionsApidistribution_deleteDELETE /accounts/{account_id}/distributions/{id}Delete a distribution
DistributionsApidistribution_showGET /accounts/{account_id}/distributions/{id}Get a single distribution
DistributionsApidistribution_updatePATCH /accounts/{account_id}/distributions/{id}Update a distribution
DistributionsApidistributions_listGET /accounts/{account_id}/distributionsList distributions
DocumentsApidocument_deleteDELETE /projects/{project_id}/documents/{id}Delete document
DocumentsApidocuments_listGET /projects/{project_id}/documentsList documents
FigmaAttachmentsApifigma_attachment_createPOST /projects/{project_id}/figma_attachmentsCreate a Figma attachment
FigmaAttachmentsApifigma_attachment_deleteDELETE /projects/{project_id}/figma_attachments/{id}Delete a Figma attachment
FigmaAttachmentsApifigma_attachment_showGET /projects/{project_id}/figma_attachments/{id}Get a single Figma attachment
FigmaAttachmentsApifigma_attachment_updatePATCH /projects/{project_id}/figma_attachments/{id}Update a Figma attachment
FigmaAttachmentsApifigma_attachments_listGET /projects/{project_id}/figma_attachmentsList Figma attachments
FormatsApiformats_listGET /formatsList formats
GlossariesApiglossaries_listGET /accounts/{account_id}/glossariesList term bases
GlossariesApiglossary_createPOST /accounts/{account_id}/glossariesCreate a term base
GlossariesApiglossary_deleteDELETE /accounts/{account_id}/glossaries/{id}Delete a term base
GlossariesApiglossary_showGET /accounts/{account_id}/glossaries/{id}Get a single term base
GlossariesApiglossary_updatePATCH /accounts/{account_id}/glossaries/{id}Update a term base
GlossaryTermTranslationsApiglossary_term_translation_createPOST /accounts/{account_id}/glossaries/{glossary_id}/terms/{term_id}/translationsCreate a translation for a term
GlossaryTermTranslationsApiglossary_term_translation_deleteDELETE /accounts/{account_id}/glossaries/{glossary_id}/terms/{term_id}/translations/{id}Delete a translation for a term
GlossaryTermTranslationsApiglossary_term_translation_updatePATCH /accounts/{account_id}/glossaries/{glossary_id}/terms/{term_id}/translations/{id}Update a translation for a term
GlossaryTermsApiglossary_term_createPOST /accounts/{account_id}/glossaries/{glossary_id}/termsCreate a term
GlossaryTermsApiglossary_term_deleteDELETE /accounts/{account_id}/glossaries/{glossary_id}/terms/{id}Delete a term
GlossaryTermsApiglossary_term_showGET /accounts/{account_id}/glossaries/{glossary_id}/terms/{id}Get a single term
GlossaryTermsApiglossary_term_updatePATCH /accounts/{account_id}/glossaries/{glossary_id}/terms/{id}Update a term
GlossaryTermsApiglossary_terms_listGET /accounts/{account_id}/glossaries/{glossary_id}/termsList terms
ICUApiicu_skeletonPOST /icu/skeletonBuild ICU skeletons
InvitationsApiinvitation_createPOST /accounts/{account_id}/invitationsCreate a new invitation
InvitationsApiinvitation_deleteDELETE /accounts/{account_id}/invitations/{id}Delete an invitation
InvitationsApiinvitation_resendPOST /accounts/{account_id}/invitations/{id}/resendResend an invitation
InvitationsApiinvitation_showGET /accounts/{account_id}/invitations/{id}Get a single invitation
InvitationsApiinvitation_updatePATCH /accounts/{account_id}/invitations/{id}Update an invitation
InvitationsApiinvitation_update_settingsPATCH /projects/{project_id}/invitations/{id}Update a member's invitation access
InvitationsApiinvitations_listGET /accounts/{account_id}/invitationsList invitations
JobAnnotationsApijob_annotation_deleteDELETE /projects/{project_id}/jobs/{job_id}/annotations/{id}Delete a job annotation
JobAnnotationsApijob_annotation_updatePATCH /projects/{project_id}/jobs/{job_id}/annotations/{id}Create/Update a job annotation
JobAnnotationsApijob_annotations_listGET /projects/{project_id}/jobs/{job_id}/annotationsList job annotations
JobAnnotationsApijob_locale_annotation_deleteDELETE /projects/{project_id}/jobs/{job_id}/locales/{job_locale_id}/annotations/{id}Delete a job locale annotation
JobAnnotationsApijob_locale_annotation_updatePATCH /projects/{project_id}/jobs/{job_id}/locales/{job_locale_id}/annotations/{id}Create/Update a job locale annotation
JobAnnotationsApijob_locale_annotations_listGET /projects/{project_id}/jobs/{job_id}/locales/{job_locale_id}/annotationsList job locale annotations
JobCommentsApijob_comment_createPOST /projects/{project_id}/jobs/{job_id}/commentsCreate a job comment
JobCommentsApijob_comment_deleteDELETE /projects/{project_id}/jobs/{job_id}/comments/{id}Delete a job comment
JobCommentsApijob_comment_showGET /projects/{project_id}/jobs/{job_id}/comments/{id}Get a single job comment
JobCommentsApijob_comment_updatePATCH /projects/{project_id}/jobs/{job_id}/comments/{id}Update a job comment
JobCommentsApijob_comments_listGET /projects/{project_id}/jobs/{job_id}/commentsList job comments
JobLocalesApijob_locale_completePOST /projects/{project_id}/jobs/{job_id}/locales/{id}/completeComplete a job locale
JobLocalesApijob_locale_complete_reviewPOST /projects/{project_id}/jobs/{job_id}/locales/{id}/complete_reviewReview a job locale
JobLocalesApijob_locale_deleteDELETE /projects/{project_id}/jobs/{job_id}/locales/{id}Remove a target locale from a job
JobLocalesApijob_locale_reopenPOST /projects/{project_id}/jobs/{job_id}/locales/{id}/reopenReopen a job locale
JobLocalesApijob_locale_showGET /projects/{project_id}/jobs/{job_id}/locales/{id}Show single job target locale
JobLocalesApijob_locale_updatePATCH /projects/{project_id}/jobs/{job_id}/locales/{id}Update a job target locale
JobLocalesApijob_locales_createPOST /projects/{project_id}/jobs/{job_id}/localesAdd a target locale to a job
JobLocalesApijob_locales_listGET /projects/{project_id}/jobs/{job_id}/localesList job target locales
JobTemplateLocalesApijob_template_locale_deleteDELETE /projects/{project_id}/job_templates/{job_template_id}/locales/{job_template_locale_id}Delete a job template locale
JobTemplateLocalesApijob_template_locale_showGET /projects/{project_id}/job_templates/{job_template_id}/locales/{job_template_locale_id}Get a single job template locale
JobTemplateLocalesApijob_template_locale_updatePATCH /projects/{project_id}/job_templates/{job_template_id}/locales/{job_template_locale_id}Update a job template locale
JobTemplateLocalesApijob_template_locales_createPOST /projects/{project_id}/job_templates/{job_template_id}/localesCreate a job template locale
JobTemplateLocalesApijob_template_locales_listGET /projects/{project_id}/job_templates/{job_template_id}/localesList job template locales
JobTemplatesApijob_template_createPOST /projects/{project_id}/job_templatesCreate a job template
JobTemplatesApijob_template_deleteDELETE /projects/{project_id}/job_templates/{id}Delete a job template
JobTemplatesApijob_template_updatePATCH /projects/{project_id}/job_templates/{id}Update a job template
JobTemplatesApijob_templates_listGET /projects/{project_id}/job_templatesList job templates
JobTemplatesApijob_templates_showGET /projects/{project_id}/job_templates/{id}Get a single job template
JobsApijob_completePOST /projects/{project_id}/jobs/{id}/completeComplete a job
JobsApijob_createPOST /projects/{project_id}/jobsCreate a job
JobsApijob_deleteDELETE /projects/{project_id}/jobs/{id}Delete a job
JobsApijob_keys_createPOST /projects/{project_id}/jobs/{id}/keysAdd keys to job
JobsApijob_keys_deleteDELETE /projects/{project_id}/jobs/{id}/keysRemove keys from job
JobsApijob_lockPOST /projects/{project_id}/jobs/{id}/lockLock a job
JobsApijob_reopenPOST /projects/{project_id}/jobs/{id}/reopenReopen a job
JobsApijob_showGET /projects/{project_id}/jobs/{id}Get a single job
JobsApijob_startPOST /projects/{project_id}/jobs/{id}/startStart a job
JobsApijob_unlockPOST /projects/{project_id}/jobs/{id}/unlockUnlock a job
JobsApijob_updatePATCH /projects/{project_id}/jobs/{id}Update a job
JobsApijobs_by_accountGET /accounts/{account_id}/jobsList account jobs
JobsApijobs_listGET /projects/{project_id}/jobsList jobs
KeyFormatAnnotationsApikey_format_annotations_listGET /projects/{project_id}/keys/{id}/format_annotationsList format annotations for a key
KeysApikey_createPOST /projects/{project_id}/keysCreate a key
KeysApikey_deleteDELETE /projects/{project_id}/keys/{id}Delete a key
KeysApikey_showGET /projects/{project_id}/keys/{id}Get a single key
KeysApikey_updatePATCH /projects/{project_id}/keys/{id}Update a key
KeysApikeys_delete_collectionDELETE /projects/{project_id}/keysDelete collection of keys
KeysApikeys_excludePATCH /projects/{project_id}/keys/excludeExclude a locale on a collection of keys
KeysApikeys_includePATCH /projects/{project_id}/keys/includeInclude a locale on a collection of keys
KeysApikeys_listGET /projects/{project_id}/keysList keys
KeysApikeys_searchPOST /projects/{project_id}/keys/searchSearch keys
KeysApikeys_tagPATCH /projects/{project_id}/keys/tagAdd tags to collection of keys
KeysApikeys_untagPATCH /projects/{project_id}/keys/untagRemove tags from collection of keys
KeysFigmaAttachmentsApifigma_attachment_attach_to_keyPOST /projects/{project_id}/figma_attachments/{figma_attachment_id}/keysAttach the Figma attachment to a key
KeysFigmaAttachmentsApifigma_attachment_detach_from_keyDELETE /projects/{project_id}/figma_attachments/{figma_attachment_id}/keys/{id}Detach the Figma attachment from a key
LinkedKeysApikey_links_batch_destroyDELETE /projects/{project_id}/keys/{id}/key_linksBatch unlink child keys from a parent key
LinkedKeysApikey_links_createPOST /projects/{project_id}/keys/{id}/key_linksLink child keys to a parent key
LinkedKeysApikey_links_destroyDELETE /projects/{project_id}/keys/{id}/key_links/{child_key_id}Unlink a child key from a parent key
LinkedKeysApikey_links_indexGET /projects/{project_id}/keys/{id}/key_linksList child keys of a parent key
LocaleDownloadsApilocale_download_createPOST /projects/{project_id}/locales/{locale_id}/downloadsInitiate async download of a locale
LocaleDownloadsApilocale_download_showGET /projects/{project_id}/locales/{locale_id}/downloads/{id}Show status of an async locale download
LocalesApiaccount_localesGET /accounts/{id}/localesList locales used in account
LocalesApilocale_createPOST /projects/{project_id}/localesCreate a locale
LocalesApilocale_deleteDELETE /projects/{project_id}/locales/{id}Delete a locale
LocalesApilocale_downloadGET /projects/{project_id}/locales/{id}/downloadDownload a locale
LocalesApilocale_showGET /projects/{project_id}/locales/{id}Get a single locale
LocalesApilocale_updatePATCH /projects/{project_id}/locales/{id}Update a locale
LocalesApilocales_listGET /projects/{project_id}/localesList locales
MembersApimember_deleteDELETE /accounts/{account_id}/members/{id}Remove a user from the account
MembersApimember_showGET /accounts/{account_id}/members/{id}Get single member
MembersApimember_updatePATCH /accounts/{account_id}/members/{id}Update a member
MembersApimember_update_settingsPATCH /projects/{project_id}/members/{id}Update a member's project settings
MembersApimembers_listGET /accounts/{account_id}/membersList members
NotificationGroupsApinotification_groups_listGET /notification_groupsList notification groups
NotificationGroupsApinotification_groups_mark_all_as_readPATCH /notification_groups/mark_all_as_readMark all notification groups as read
NotificationGroupsApinotification_groups_mark_as_readPATCH /notification_groups/{id}/mark_as_readMark a notification group as read
NotificationsApinotifications_listGET /notificationsList notifications
NotificationsApinotifications_mark_all_as_readPOST /notifications/mark_all_as_readMark all notifications as read
NotificationsApinotifications_showGET /notifications/{id}Get a single notification
OrdersApiorder_confirmPATCH /projects/{project_id}/orders/{id}/confirmConfirm an order
OrdersApiorder_createPOST /projects/{project_id}/ordersCreate a new order
OrdersApiorder_deleteDELETE /projects/{project_id}/orders/{id}Cancel an order
OrdersApiorder_showGET /projects/{project_id}/orders/{id}Get a single order
OrdersApiorders_listGET /projects/{project_id}/ordersList orders
OrganizationJobTemplateLocalesApiorganization_job_template_locale_deleteDELETE /accounts/{account_id}/job_templates/{job_template_id}/locales/{job_template_locale_id}Delete an organization job template locale
OrganizationJobTemplateLocalesApiorganization_job_template_locale_showGET /accounts/{account_id}/job_templates/{job_template_id}/locales/{job_template_locale_id}Get a single organization job template locale
OrganizationJobTemplateLocalesApiorganization_job_template_locale_updatePATCH /accounts/{account_id}/job_templates/{job_template_id}/locales/{job_template_locale_id}Update an organization job template locale
OrganizationJobTemplateLocalesApiorganization_job_template_locales_createPOST /accounts/{account_id}/job_templates/{job_template_id}/localesCreate an organization job template locale
OrganizationJobTemplateLocalesApiorganization_job_template_locales_listGET /accounts/{account_id}/job_templates/{job_template_id}/localesList organization job template locales
OrganizationJobTemplatesApiorganization_job_template_createPOST /accounts/{account_id}/job_templatesCreate an organization job template
OrganizationJobTemplatesApiorganization_job_template_deleteDELETE /accounts/{account_id}/job_templates/{id}Delete an organization job template
OrganizationJobTemplatesApiorganization_job_template_updatePATCH /accounts/{account_id}/job_templates/{id}Update an organization job template
OrganizationJobTemplatesApiorganization_job_templates_listGET /accounts/{account_id}/job_templatesList organization job templates
OrganizationJobTemplatesApiorganization_job_templates_showGET /accounts/{account_id}/job_templates/{id}Get a single organization job template
PreTranslationsApipre_translation_createPOST /projects/{project_id}/pre_translationsCreate a pre-translation job
PreTranslationsApipre_translation_showGET /projects/{project_id}/pre_translations/{id}Get a single pre-translation job
PreTranslationsApipre_translations_listGET /projects/{project_id}/pre_translationsList pre-translation jobs
ProjectsApiproject_createPOST /projectsCreate a project
ProjectsApiproject_deleteDELETE /projects/{id}Delete a project
ProjectsApiproject_showGET /projects/{id}Get a single project
ProjectsApiproject_updatePATCH /projects/{id}Update a project
ProjectsApiprojects_listGET /projectsList projects
QualityPerformanceScoreApiquality_performance_score_listPOST /projects/{project_id}/quality_performance_scoreGet Translation Quality
ReleaseTriggersApirelease_triggers_createPOST /accounts/{account_id}/distributions/{distribution_id}/release_triggersCreate a release trigger
ReleaseTriggersApirelease_triggers_destroyDELETE /accounts/{account_id}/distributions/{distribution_id}/release_triggers/{id}Delete a single release trigger
ReleaseTriggersApirelease_triggers_listGET /accounts/{account_id}/distributions/{distribution_id}/release_triggersList release triggers
ReleaseTriggersApirelease_triggers_showGET /accounts/{account_id}/distributions/{distribution_id}/release_triggers/{id}Get a single release trigger
ReleaseTriggersApirelease_triggers_updatePATCH /accounts/{account_id}/distributions/{distribution_id}/release_triggers/{id}Update a release trigger
ReleasesApirelease_createPOST /accounts/{account_id}/distributions/{distribution_id}/releasesCreate a release
ReleasesApirelease_deleteDELETE /accounts/{account_id}/distributions/{distribution_id}/releases/{id}Delete a release
ReleasesApirelease_publishPOST /accounts/{account_id}/distributions/{distribution_id}/releases/{id}/publishPublish a release
ReleasesApirelease_showGET /accounts/{account_id}/distributions/{distribution_id}/releases/{id}Get a single release
ReleasesApirelease_updatePATCH /accounts/{account_id}/distributions/{distribution_id}/releases/{id}Update a release
ReleasesApireleases_listGET /accounts/{account_id}/distributions/{distribution_id}/releasesList releases
RepoSyncEventsApirepo_sync_event_listGET /accounts/{account_id}/repo_syncs/{id}/eventsRepository Syncs History
RepoSyncEventsApirepo_sync_event_showGET /accounts/{account_id}/repo_syncs/{repo_sync_id}/events/{id}Get a single Repo Sync Event
RepoSyncsApirepo_sync_activatePOST /accounts/{account_id}/repo_syncs/{id}/activateActivate a Repo Sync
RepoSyncsApirepo_sync_createPOST /accounts/{account_id}/repo_syncsCreate a Repo Sync
RepoSyncsApirepo_sync_deactivatePOST /accounts/{account_id}/repo_syncs/{id}/deactivateDeactivate a Repo Sync
RepoSyncsApirepo_sync_exportPOST /accounts/{account_id}/repo_syncs/{id}/exportExport to code repository
RepoSyncsApirepo_sync_importPOST /accounts/{account_id}/repo_syncs/{id}/importImport from code repository
RepoSyncsApirepo_sync_listGET /accounts/{account_id}/repo_syncsGet Repo Syncs
RepoSyncsApirepo_sync_showGET /accounts/{account_id}/repo_syncs/{id}Get a single Repo Sync
ReportsApireport_locales_listGET /projects/{project_id}/report/localesList Locale Reports
ReportsApireport_showGET /projects/{project_id}/reportGet Project Report
ScreenshotMarkersApiscreenshot_marker_createPOST /projects/{project_id}/screenshots/{screenshot_id}/markersCreate a screenshot marker
ScreenshotMarkersApiscreenshot_marker_deleteDELETE /projects/{project_id}/screenshots/{screenshot_id}/markersDelete a screenshot marker
ScreenshotMarkersApiscreenshot_marker_showGET /projects/{project_id}/screenshots/{screenshot_id}/markers/{id}Get a single screenshot marker
ScreenshotMarkersApiscreenshot_marker_updatePATCH /projects/{project_id}/screenshots/{screenshot_id}/markersUpdate a screenshot marker
ScreenshotMarkersApiscreenshot_markers_listGET /projects/{project_id}/screenshots/{id}/markersList screenshot markers
ScreenshotsApiscreenshot_createPOST /projects/{project_id}/screenshotsCreate a screenshot
ScreenshotsApiscreenshot_deleteDELETE /projects/{project_id}/screenshots/{id}Delete a screenshot
ScreenshotsApiscreenshot_showGET /projects/{project_id}/screenshots/{id}Get a single screenshot
ScreenshotsApiscreenshot_updatePATCH /projects/{project_id}/screenshots/{id}Update a screenshot
ScreenshotsApiscreenshots_listGET /projects/{project_id}/screenshotsList screenshots
SearchApisearch_in_accountPOST /accounts/{account_id}/searchSearch across projects
SpacesApispace_createPOST /accounts/{account_id}/spacesCreate a Space
SpacesApispace_deleteDELETE /accounts/{account_id}/spaces/{id}Delete Space
SpacesApispace_showGET /accounts/{account_id}/spaces/{id}Get Space
SpacesApispace_updatePATCH /accounts/{account_id}/spaces/{id}Update Space
SpacesApispaces_listGET /accounts/{account_id}/spacesList Spaces
SpacesApispaces_projects_createPOST /accounts/{account_id}/spaces/{space_id}/projectsAdd Project to Space
SpacesApispaces_projects_deleteDELETE /accounts/{account_id}/spaces/{space_id}/projects/{id}Remove Project from Space
SpacesApispaces_projects_listGET /accounts/{account_id}/spaces/{space_id}/projectsList Projects in Space
StyleGuidesApistyleguide_createPOST /projects/{project_id}/styleguidesCreate a style guide
StyleGuidesApistyleguide_deleteDELETE /projects/{project_id}/styleguides/{id}Delete a style guide
StyleGuidesApistyleguide_showGET /projects/{project_id}/styleguides/{id}Get a single style guide
StyleGuidesApistyleguide_updatePATCH /projects/{project_id}/styleguides/{id}Update a style guide
StyleGuidesApistyleguides_listGET /projects/{project_id}/styleguidesList style guides
TagsApitag_createPOST /projects/{project_id}/tagsCreate a tag
TagsApitag_deleteDELETE /projects/{project_id}/tags/{name}Delete a tag
TagsApitag_showGET /projects/{project_id}/tags/{name}Get a single tag
TagsApitags_listGET /projects/{project_id}/tagsList tags
TeamsApiteam_createPOST /accounts/{account_id}/teamsCreate a Team
TeamsApiteam_deleteDELETE /accounts/{account_id}/teams/{id}Delete Team
TeamsApiteam_showGET /accounts/{account_id}/teams/{id}Get Team
TeamsApiteam_updatePATCH /accounts/{account_id}/teams/{id}Update Team
TeamsApiteams_listGET /accounts/{account_id}/teamsList Teams
TeamsApiteams_projects_createPOST /accounts/{account_id}/teams/{team_id}/projectsAdd Project to Team
TeamsApiteams_projects_deleteDELETE /accounts/{account_id}/teams/{team_id}/projects/{id}Remove Project from Team
TeamsApiteams_spaces_createPOST /accounts/{account_id}/teams/{team_id}/spacesAdd Space
TeamsApiteams_spaces_deleteDELETE /accounts/{account_id}/teams/{team_id}/spaces/{id}Remove Space
TeamsApiteams_users_createPOST /accounts/{account_id}/teams/{team_id}/usersAdd User
TeamsApiteams_users_deleteDELETE /accounts/{account_id}/teams/{team_id}/users/{id}Remove User
TranslationsApitranslation_createPOST /projects/{project_id}/translationsCreate a translation
TranslationsApitranslation_excludePATCH /projects/{project_id}/translations/{id}/excludeExclude a translation from export
TranslationsApitranslation_includePATCH /projects/{project_id}/translations/{id}/includeInclude a translation
TranslationsApitranslation_reviewPATCH /projects/{project_id}/translations/{id}/reviewReview a translation
TranslationsApitranslation_showGET /projects/{project_id}/translations/{id}Get a single translation
TranslationsApitranslation_unreviewPATCH /projects/{project_id}/translations/{id}/unreviewUnreview a translation
TranslationsApitranslation_unverifyPATCH /projects/{project_id}/translations/{id}/unverifyMark a translation as unverified
TranslationsApitranslation_updatePATCH /projects/{project_id}/translations/{id}Update a translation
TranslationsApitranslation_verifyPATCH /projects/{project_id}/translations/{id}/verifyVerify a translation
TranslationsApitranslations_by_keyGET /projects/{project_id}/keys/{key_id}/translationsList translations by key
TranslationsApitranslations_by_localeGET /projects/{project_id}/locales/{locale_id}/translationsList translations by locale
TranslationsApitranslations_exclude_collectionPATCH /projects/{project_id}/translations/excludeExclude translations by query
TranslationsApitranslations_include_collectionPATCH /projects/{project_id}/translations/includeInclude translations by query
TranslationsApitranslations_listGET /projects/{project_id}/translationsList all translations
TranslationsApitranslations_review_collectionPATCH /projects/{project_id}/translations/reviewReview translations selected by query
TranslationsApitranslations_searchPOST /projects/{project_id}/translations/searchSearch translations
TranslationsApitranslations_unreview_collectionPATCH /projects/{project_id}/translations/unreviewUnreview translations selected by query
TranslationsApitranslations_unverify_collectionPATCH /projects/{project_id}/translations/unverifyUnverify translations by query
TranslationsApitranslations_verify_collectionPATCH /projects/{project_id}/translations/verifyVerify translations by query
UploadBatchesApiupload_batches_createPOST /projects/{project_id}/upload_batchesCreate upload batch
UploadsApiupload_createPOST /projects/{project_id}/uploadsUpload a new file
UploadsApiupload_showGET /projects/{project_id}/uploads/{id}Get a single upload
UploadsApiuploads_listGET /projects/{project_id}/uploadsList uploads
UsersApishow_userGET /userShow current User
VariablesApivariable_createPOST /projects/{project_id}/variablesCreate a variable
VariablesApivariable_deleteDELETE /projects/{project_id}/variables/{name}Delete a variable
VariablesApivariable_showGET /projects/{project_id}/variables/{name}Get a single variable
VariablesApivariable_updatePATCH /projects/{project_id}/variables/{name}Update a variable
VariablesApivariables_listGET /projects/{project_id}/variablesList variables
VersionsHistoryApiversion_showGET /projects/{project_id}/translations/{translation_id}/versions/{id}Get a single version
VersionsHistoryApiversions_listGET /projects/{project_id}/translations/{translation_id}/versionsList all versions
WebhookDeliveriesApiwebhook_deliveries_listGET /projects/{project_id}/webhooks/{webhook_id}/deliveriesList webhook deliveries
WebhookDeliveriesApiwebhook_deliveries_redeliverPOST /projects/{project_id}/webhooks/{webhook_id}/deliveries/{id}/redeliverRedeliver a single webhook delivery
WebhookDeliveriesApiwebhook_deliveries_showGET /projects/{project_id}/webhooks/{webhook_id}/deliveries/{id}Get a single webhook delivery
WebhooksApiwebhook_createPOST /projects/{project_id}/webhooksCreate a webhook
WebhooksApiwebhook_deleteDELETE /projects/{project_id}/webhooks/{id}Delete a webhook
WebhooksApiwebhook_showGET /projects/{project_id}/webhooks/{id}Get a single webhook
WebhooksApiwebhook_testPOST /projects/{project_id}/webhooks/{id}/testTest a webhook
WebhooksApiwebhook_updatePATCH /projects/{project_id}/webhooks/{id}Update a webhook
WebhooksApiwebhooks_listGET /projects/{project_id}/webhooksList webhooks

Documentation For Models

Author

support@phrase.com

Get help / support

Please contact support@phrase.com and we can take more direct action toward finding a solution.

About

No description, website, or topics provided.

Resources

Stars

8 stars

Watchers

14 watching

Forks

Releases

Packages

Used by

Contributors

Languages