We are implementing a client to integrate with the SD+ APIs (add/edit/get/delete requests). We can currently read a given request, but if we try to create a new one, then we get an error response message (below is the response we get using Postman):
- {
- "response_status": {
- "status_code": 4000,
- "messages": [
- {
- "status_code": 4002,
- "type": "failed",
- "message": "User does not have this permission"
- }
- ],
- "status": "failed"
- }
- }
Note: Please do not confuse this with OAuth2 tokens. That is working correctly.