Skip to content

Commit

Permalink
[#98] - pass payload to scimeta custom endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
sblack-usu committed Mar 6, 2019
1 parent a495d06 commit de0f9b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hs_restclient/endpoints/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def custom(self, payload):
"""
url = "{url_base}/resource/{pid}/scimeta/custom/".format(url_base=self.hs.url_base,
pid=self.pid)
r = self.hs._request('POST', url)
r = self.hs._request('POST', url, data=payload)
return r


Expand Down

0 comments on commit de0f9b4

Please sign in to comment.