delete
DELETE
 /list-share/{id}
 Deletes a list share.
Authorizations
Parameters
Path Parameters
 id 
 required
   string
List Share Id
Example
6vcudpc4wgc0ckkQuery Parameters
 expand    
 string
Expand a foreign key column (https://pocketbase.io/docs/working-with-relations/#expanding-relations).
 requestKey    
 string
Unique request key. Prevents auto cancel when sending multiple requests.
Responses
200
object
 acknowledged 
 required
   boolean
 Example
{  "acknowledged": true}400
object
 message 
 required
   string
  details 
 required
   Array<object>
object
 code    
 string
  minimum    
 integer
  type    
 string
  inclusive    
 boolean
  exact    
 boolean
  message    
 string
  path    
 Array<string>
 Example
{  "message": "invalid_params",  "details": [    {      "code": "too_small",      "minimum": 15,      "type": "string",      "inclusive": true,      "exact": true,      "message": "String must contain exactly 15 character(s)",      "path": [        "id"      ]    }  ]}404
object
 message 
 required
   string
  detail 
 required
   object
 code 
 required
   integer
  message 
 required
   string
  data 
 required
   object
Example
{  "message": "The requested resource wasn't found.",  "detail": {    "code": 404,    "message": "The requested resource wasn't found.",    "data": {}  }}