Reorder creative fields
curl --request POST \
--url https://api.revinel.com/v1/workspaces/{workspaceId}/fields/reorder \
--header 'Content-Type: application/json' \
--data '
{
"fields": [
{
"id": "<string>",
"order": 0
}
]
}
'import requests
url = "https://api.revinel.com/v1/workspaces/{workspaceId}/fields/reorder"
payload = { "fields": [
{
"id": "<string>",
"order": 0
}
] }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({fields: [{id: '<string>', order: 0}]})
};
fetch('https://api.revinel.com/v1/workspaces/{workspaceId}/fields/reorder', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.revinel.com/v1/workspaces/{workspaceId}/fields/reorder",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'fields' => [
[
'id' => '<string>',
'order' => 0
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.revinel.com/v1/workspaces/{workspaceId}/fields/reorder"
payload := strings.NewReader("{\n \"fields\": [\n {\n \"id\": \"<string>\",\n \"order\": 0\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.revinel.com/v1/workspaces/{workspaceId}/fields/reorder")
.header("Content-Type", "application/json")
.body("{\n \"fields\": [\n {\n \"id\": \"<string>\",\n \"order\": 0\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.revinel.com/v1/workspaces/{workspaceId}/fields/reorder")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"fields\": [\n {\n \"id\": \"<string>\",\n \"order\": 0\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"success": true
}{
"defined": true,
"code": "CONFLICT_FIELD",
"status": 409,
"message": "CONFLICT_FIELD",
"data": {
"formErrors": [
"<string>"
],
"fieldErrors": {}
}
}{
"defined": true,
"code": "INPUT_VALIDATION_FAILED",
"status": 422,
"message": "INPUT_VALIDATION_FAILED",
"data": {
"formErrors": [
"<string>"
],
"fieldErrors": {}
}
}Fields (Beta)
Reorder creative fields
Each order is a target position in the final list, not a stored value: mentioned fields move to that position, unmentioned fields keep their relative order, and every field’s order is then renumbered to a dense 0..n-1 sequence (sparse values are not preserved). Fails with 404 if any field id does not belong to the workspace.
POST
/
workspaces
/
{workspaceId}
/
fields
/
reorder
Reorder creative fields
curl --request POST \
--url https://api.revinel.com/v1/workspaces/{workspaceId}/fields/reorder \
--header 'Content-Type: application/json' \
--data '
{
"fields": [
{
"id": "<string>",
"order": 0
}
]
}
'import requests
url = "https://api.revinel.com/v1/workspaces/{workspaceId}/fields/reorder"
payload = { "fields": [
{
"id": "<string>",
"order": 0
}
] }
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({fields: [{id: '<string>', order: 0}]})
};
fetch('https://api.revinel.com/v1/workspaces/{workspaceId}/fields/reorder', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.revinel.com/v1/workspaces/{workspaceId}/fields/reorder",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'fields' => [
[
'id' => '<string>',
'order' => 0
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.revinel.com/v1/workspaces/{workspaceId}/fields/reorder"
payload := strings.NewReader("{\n \"fields\": [\n {\n \"id\": \"<string>\",\n \"order\": 0\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.revinel.com/v1/workspaces/{workspaceId}/fields/reorder")
.header("Content-Type", "application/json")
.body("{\n \"fields\": [\n {\n \"id\": \"<string>\",\n \"order\": 0\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.revinel.com/v1/workspaces/{workspaceId}/fields/reorder")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"fields\": [\n {\n \"id\": \"<string>\",\n \"order\": 0\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"success": true
}{
"defined": true,
"code": "CONFLICT_FIELD",
"status": 409,
"message": "CONFLICT_FIELD",
"data": {
"formErrors": [
"<string>"
],
"fieldErrors": {}
}
}{
"defined": true,
"code": "INPUT_VALIDATION_FAILED",
"status": 422,
"message": "INPUT_VALIDATION_FAILED",
"data": {
"formErrors": [
"<string>"
],
"fieldErrors": {}
}
}⌘I