You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because of the way `PUT` and `POST` methods need the JSON body included in the signature, currently the body of your request needs to be minified with no spaces, for example when editing a credential with `PUT` on the `/1.0/me/api/credential/<credentialId>` endpoint:
74
+
75
+
The body might be like this, and [must be fully minified](https://stackoverflow.com/a/48487241).
76
+
77
+
```json
78
+
{"allowedIPs":["127.0.0.1/32","127.0.0.2/32"]}
79
+
```
80
+
81
+
This results in the insomnia request Timeline being:
0 commit comments