API Descriptions

GEThttps://api.laminar.run/workspaces/{workspaceId}/api-descriptions
Authorization
Path parameters
workspaceId*integer (int64)
Response

OK

Body
idinteger (int64)
urlstring
methodTypeenum
GETPOSTPUTDELETE
authCredentialsAuthCredentials (object)
namestring
descriptionstring
Request
const response = await fetch('https://api.laminar.run/workspaces/{workspaceId}/api-descriptions', {
    method: 'GET',
    headers: {
      "Authorization": "Bearer JWT"
    },
});
const data = await response.json();
Response
[
  {
    "id": 0,
    "url": "text",
    "methodType": "GET",
    "authCredentials": {
      "id": 0,
      "name": "text",
      "authType": "text"
    },
    "name": "text",
    "description": "text"
  }
]