Method Not Allowed

I came across the API documentation because I was trying to do some of my work from the command line, I read the documentation and according to it I had to put my token as a bearer. but it gave me several errors everytime most probably it is my fault can you guys help me what am I doing here wrong? Documentation https://docs.zerops.io/references/api https://api.app-prg1.zerops.io/api/rest/public/swagger/ What it says? Send a GET request to this URL https://api.app-prg1.zerops.io/api/rest/public at this endpoint /api/rest/public/auth/info Parameters should be Authorization as strings in the header but when I send the GET request it returns
{
"error": {
"code": "methodNotAllowed",
"message": "Method Not Allowed",
"meta": [
{
"error": "Method Not Allowed",
"code": "methodNotAllowed",
"metadata": null
}
]
}
}
{
"error": {
"code": "methodNotAllowed",
"message": "Method Not Allowed",
"meta": [
{
"error": "Method Not Allowed",
"code": "methodNotAllowed",
"metadata": null
}
]
}
}
Can you guys tell me what am I doing here wrong? if you need more information from me feel free to ask more about it
REST API Reference | Zerops
The Zerops REST API allows you to programmatically interact with Zerops platform by providing access to resources like projects, services, users, billing, and configurations.
1 Reply
Jan Saidl
Jan Saidlā€¢3w ago
Hi @</KwishnašŸ˜¼> the following code works for me:
TOKEN="YOUR_TOKEN"

curl -s -H "Authorization: Bearer $TOKEN" "https://api.app-prg1.zerops.io/api/rest/public/auth/info"
TOKEN="YOUR_TOKEN"

curl -s -H "Authorization: Bearer $TOKEN" "https://api.app-prg1.zerops.io/api/rest/public/auth/info"

Did you find this page helpful?