On this pageDelete a brandDELETEhttps://api.courier.com/brands/:brand_idDelete a brand by brand ID.PATH PARAMSbrand_idstringrequiredA unique identifier associated with the brand you wish to retrieve.Responses204 Successfully deletedobject409 ConflictobjectAUTH TOKENTry ItcURLNode.jsRubyPythonGoPHPcurl --request DELETE \ --url https://api.courier.com/brands/:brand_id \ --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/brands/:brand_id', 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/brands/:brand_id")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/brands/:brand_id"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/brands/:brand_id" 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/brands/:brand_id', [ 'headers' => [ 'Accept' => 'application/json', ],]);echo $response->getBody();CopyResponse Example204 Successfully deleted409 ConflictEmptyCopyExampleMethod: DELETEURL: https://api.courier.com/brands/C8CPX6HQZ5M7Q5KAMW5CXC4N98DH