I'm trying to update my url https://sandbox.bluesnap.com/services/2/subscriptions/:subrcription_id . In the headlines send

Content-Type:application/xml Authorization:Basic AUTH_KEY 

where AUTH_KEY gets generated in Postman using API_KEY and API_PASS.

Request is sent using the PUT method with the body

 <?xml version="1.0"?> <subscription xmlns="http://ws.plimus.com"> <status>A</status> </subscription> 

I get an error in response

 Returned when API user does not have the required role (authorization) to perform this operation. HTTP status code: 403 Forbidden 

Although if I change the status from active to canceled, everything goes successfully

 <?xml version="1.0"?> <subscription xmlns="http://ws.plimus.com"> <status>С</status> </subscription> 

Has anyone encountered such an error and how can it be circumvented?

    1 answer 1

    It turns out in bluesnap just temporarily covered the possibility of using API commands in which I had problems