cURL
ResourceAttributeService
Post apiv1resource attributes archive
POST
cURL
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request POST \
--url https://api.siftstack.com/api/v1/resource-attributes/{resourceAttributeId}/archive \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.siftstack.com/api/v1/resource-attributes/{resourceAttributeId}/archive"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.siftstack.com/api/v1/resource-attributes/{resourceAttributeId}/archive"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{}{
"code": 123,
"message": "<string>",
"details": [
{
"@type": "<string>"
}
]
}curl --request POST \
--url https://api.siftstack.com/api/v1/resource-attributes/{resourceAttributeId}/archive \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.siftstack.com/api/v1/resource-attributes/{resourceAttributeId}/archive"
headers = {"Authorization": "Bearer <token>"}
response = requests.post(url, headers=headers)
print(response.text)package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.siftstack.com/api/v1/resource-attributes/{resourceAttributeId}/archive"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}{}{
"code": 123,
"message": "<string>",
"details": [
{
"@type": "<string>"
}
]
}Was this page helpful?