API Descriptions

GEThttps://api.laminar.run/workspaces/{workspaceId}/api-descriptions
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: {},
});
const data = await response.json();
Response
[
  {
    "url": "text",
    "methodType": "GET",
    "authCredentials": {
      "name": "text",
      "authType": "text"
    },
    "name": "text",
    "description": "text"
  }
]