Skip to main content
DELETE
/
cvs
/
{id}
Delete a CV
curl --request DELETE \
  --url https://api-service.fribl.co/api/v1/cvs/{id} \
  --header 'x-api-key: <api-key>'
import requests

url = "https://api-service.fribl.co/api/v1/cvs/{id}"

headers = {"x-api-key": "<api-key>"}

response = requests.delete(url, headers=headers)

print(response.text)
const options = {method: 'DELETE', headers: {'x-api-key': '<api-key>'}};

fetch('https://api-service.fribl.co/api/v1/cvs/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api-service.fribl.co/api/v1/cvs/{id}"

req, _ := http.NewRequest("DELETE", url, nil)

req.Header.Add("x-api-key", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.delete("https://api-service.fribl.co/api/v1/cvs/{id}")
.header("x-api-key", "<api-key>")
.asString();
{
  "message": "Successfully deleted CV with ID: 550e8400-e29b-41d4-a716-446655440000",
  "data": {}
}
{
"error": "<string>"
}
{
"error": "<string>"
}

Authorizations

x-api-key
string
header
required

API key in UUID format. Include this header with every authenticated request.

Path Parameters

id
string<uuid>
required

Unique identifier of the CV to delete.

Response

CV deleted successfully.

message
string
required
Example:

"Successfully deleted CV with ID: 550e8400-e29b-41d4-a716-446655440000"

data
object
required