Was this helpful?
curl -L \ --url 'https://api.laminar.run/api-descriptions/{id}' \ --header 'Authorization: Bearer JWT'
{ "id": 1, "url": "text", "methodType": "GET", "authCredentials": { "id": 1, "name": "text", "authType": "text" }, "name": "text", "description": "text" }
curl -L \ --request DELETE \ --url 'https://api.laminar.run/api-descriptions/{id}' \ --header 'Authorization: Bearer JWT'
No body
GET
POST
PUT
DELETE
curl -L \ --request POST \ --url 'https://api.laminar.run/api-descriptions' \ --header 'Authorization: Bearer JWT' \ --header 'Content-Type: application/json' \ --data '{ "url": "text", "methodType": "GET", "authCredentialId": 1, "workspaceId": 1, "name": "text", "description": "text" }'
curl -L \ --request PUT \ --url 'https://api.laminar.run/api-descriptions' \ --header 'Authorization: Bearer JWT' \ --header 'Content-Type: application/json' \ --data '{ "apiDescriptionId": 1, "url": "text", "methodType": "GET", "authCredentialId": 1, "name": "text", "description": "text" }'