On this pageDelete a profileDELETEhttps://api.courier.com/profiles/:recipient_idDeletes the specified recipient Profile.PATH PARAMSrecipient_idstringrequiredA unique identifier representing the recipient associated with the requested profile.Responses200 OKobjectAUTH TOKENTry ItcURLNode.jsRubyPythonGoPHPcurl --request DELETE \ --url https://api.courier.com/profiles/0460766e-8463-4905-ae98-b72c7aef41d6 \ --header 'Accept: application/json' Copy// Dependencies to install:// $ npm install node-fetch --saveconst fetch = require('node-fetch');const options = { method: 'DELETE', headers: { Accept: 'application/json' },};fetch('https://api.courier.com/profiles/0460766e-8463-4905-ae98-b72c7aef41d6', options) .then(response => response.json()) .then(response => console.log(response)) .catch(err => console.error(err));Copyrequire 'uri'require 'net/http'require 'openssl'url = URI("https://api.courier.com/profiles/0460766e-8463-4905-ae98-b72c7aef41d6")http = Net::HTTP.new(url.host, url.port)http.use_ssl = truerequest = Net::HTTP::Delete.new(url)request["Accept"] = 'application/json'response = http.request(request)puts response.read_bodyCopy# Dependencies to install:# $ python -m pip install requestsimport requestsurl = "https://api.courier.com/profiles/0460766e-8463-4905-ae98-b72c7aef41d6"headers = { "Accept": "application/json"}response = requests.request("DELETE", url, headers=headers)print(response.text)Copypackage mainimport ( "fmt" "net/http" "io/ioutil")func main() { url := "https://api.courier.com/profiles/0460766e-8463-4905-ae98-b72c7aef41d6" req, _ := http.NewRequest("DELETE", url, payload) req.Header.Add("Accept", "application/json") res, _ := http.DefaultClient.Do(req) defer res.Body.Close() body, _ := ioutil.ReadAll(res.Body) fmt.Println(res) fmt.Println(string(body))}Copy<?php// Dependencies to install:// $ composer require guzzlehttp/guzzlerequire_once('vendor/autoload.php');$client = new \GuzzleHttp\Client();$response = $client->request('DELETE', 'https://api.courier.com/profiles/0460766e-8463-4905-ae98-b72c7aef41d6', [ 'headers' => [ 'Accept' => 'application/json', ],]);echo $response->getBody();CopyResponse Example200 OK{ "status": "SUCCESS"}CopyExampleMethod: DELETEURL: https://api.courier.com/profiles/0460766e-8463-4905-ae98-b72c7aef41d6