Skip to main content

Get All Platforms

Retrieve a list of all platforms.

Endpoint:

GET /listPlatforms

Headers:

Authorization: Bearer JWT token.

Request:

curl -X GET http://localhost:9000/listPlatforms \
-H "Authorization: Bearer <jwt_token>"

Response:

{
"platforms": [
{
"ID": "653a52481ff613bed613df58",
"PlatformName": "darwin",
"Updated_at": "2023-10-26T14:49:28.894+03:00"
},
{
"ID": "653a52401ff613bed613df57",
"PlatformName": "linux",
"Updated_at": "2023-10-26T14:49:20.976+03:00"
}
]
}