diff --git a/crowdin_api/api_resources/projects/resource.py b/crowdin_api/api_resources/projects/resource.py index 4909a74..395128f 100644 --- a/crowdin_api/api_resources/projects/resource.py +++ b/crowdin_api/api_resources/projects/resource.py @@ -426,3 +426,20 @@ def add_project_strings_exporter( path=self.get_strings_exporter_path(projectId=projectId), request_data={"format": format, "settings": settings}, ) + + def get_project_strings_exporter( + self, projectId: int, systemStringsExporterSettingId: int + ): + """ + Get Project Strings Exporter Settings + + Link to documetation: + https://developer.crowdin.com/api/v2/#operation/api.projects.strings-exporter-settings.get + """ + return self.requester.request( + method="get", + path=self.get_strings_exporter_path( + projectId=projectId, + systemStringExporterSettingId=systemStringsExporterSettingId, + ), + )