Skip to content

Commit

Permalink
Merge pull request #152 from LukasChristoph/main
Browse files Browse the repository at this point in the history
Removed trailing / from sp route
  • Loading branch information
denisneuf authored May 30, 2023
2 parents 36e0497 + 12a92c8 commit 4972aa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ad_api/api/sp/negative_keywords_v3.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def list_negative_keywords(self, version: int = 3, **kwargs) -> ApiResponse:
return self._request(kwargs.pop('path'), data=Utils.convert_body(kwargs.pop('body'), False), params=kwargs,
headers=headers)

@sp_endpoint('/sp/negativeKeywords/', method='POST')
@sp_endpoint('/sp/negativeKeywords', method='POST')
def create_negative_keyword(self, version: int = 3, prefer: bool = False, **kwargs) -> ApiResponse:
r"""
Creating negative product keywords.
Expand Down

0 comments on commit 4972aa4

Please sign in to comment.