From 4fd6475b5bbdb90c7030b7b69c386b2edcd2913c Mon Sep 17 00:00:00 2001 From: Jonathan Remy Date: Wed, 27 Aug 2025 17:35:42 +0200 Subject: [PATCH 1/3] fix(domain): fix SRV domain duplication bug --- internal/services/domain/helpers.go | 22 +- internal/services/domain/record_test.go | 66 + ...-srv-with-domain-duplication.cassette.yaml | 940 +++++ ...nical-contact-update-task-id.cassette.yaml | 3290 +++++++++++++++++ .../domain-zone-versioning.cassette.yaml | 199 + internal/services/domain/types.go | 66 +- 6 files changed, 4572 insertions(+), 11 deletions(-) create mode 100644 internal/services/domain/testdata/domain-record-srv-with-domain-duplication.cassette.yaml create mode 100644 internal/services/domain/testdata/domain-registration-technical-contact-update-task-id.cassette.yaml create mode 100644 internal/services/domain/testdata/domain-zone-versioning.cassette.yaml diff --git a/internal/services/domain/helpers.go b/internal/services/domain/helpers.go index 428b01f8f1..9ebc1fdf90 100644 --- a/internal/services/domain/helpers.go +++ b/internal/services/domain/helpers.go @@ -35,14 +35,22 @@ func getRecordFromTypeAndData(dnsType domain.RecordType, data string, records [] flattedData := flattenDomainData(strings.ToLower(r.Data), r.Type).(string) flattenCurrentData := flattenDomainData(strings.ToLower(data), r.Type).(string) - if strings.HasPrefix(flattedData, flattenCurrentData) && r.Type == dnsType { - if currentRecord != nil { - return nil, errors.New("multiple records found with same type and data") + if dnsType == domain.RecordTypeSRV { + if flattedData == flattenCurrentData { + if currentRecord != nil { + return nil, errors.New("multiple records found with same type and data") + } + currentRecord = r + break + } + } else { + if strings.HasPrefix(flattedData, flattenCurrentData) && r.Type == dnsType { + if currentRecord != nil { + return nil, errors.New("multiple records found with same type and data") + } + currentRecord = r + break } - - currentRecord = r - - break } } diff --git a/internal/services/domain/record_test.go b/internal/services/domain/record_test.go index fc6230a190..14062c9c3b 100644 --- a/internal/services/domain/record_test.go +++ b/internal/services/domain/record_test.go @@ -692,6 +692,72 @@ func TestAccDomainRecord_SRVZone(t *testing.T) { }) } +func TestAccDomainRecord_SRVWithDomainDuplication(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + + testDNSZone := "test-srv-duplication." + acctest.TestDomain + logging.L.Debugf("TestAccDomainRecord_SRVWithDomainDuplication: test dns zone: %s", testDNSZone) + + name := "_test_srv_bug" + recordType := "SRV" + data := "0 0 1234 foo.example.com" + ttl := 60 + priority := 0 + + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: testAccCheckDomainRecordDestroy(tt), + Steps: []resource.TestStep{ + { + Config: fmt.Sprintf(` + resource "scaleway_domain_record" "srv_test" { + dns_zone = "%[1]s" + name = "%[2]s" + type = "%[3]s" + data = "%[4]s" + priority = %[5]d + ttl = %[6]d + } + `, testDNSZone, name, recordType, data, priority, ttl), + Check: resource.ComposeTestCheckFunc( + testAccCheckDomainRecordExists(tt, "scaleway_domain_record.srv_test"), + resource.TestCheckResourceAttr("scaleway_domain_record.srv_test", "dns_zone", testDNSZone), + resource.TestCheckResourceAttr("scaleway_domain_record.srv_test", "name", name), + resource.TestCheckResourceAttr("scaleway_domain_record.srv_test", "type", recordType), + resource.TestCheckResourceAttr("scaleway_domain_record.srv_test", "data", "0 0 1234 foo.example.com"), + resource.TestCheckResourceAttr("scaleway_domain_record.srv_test", "ttl", strconv.Itoa(ttl)), + resource.TestCheckResourceAttr("scaleway_domain_record.srv_test", "priority", strconv.Itoa(priority)), + acctest.CheckResourceAttrUUID("scaleway_domain_record.srv_test", "id"), + ), + }, + { + Config: fmt.Sprintf(` + resource "scaleway_domain_record" "srv_test" { + dns_zone = "%[1]s" + name = "%[2]s" + type = "%[3]s" + data = "10 0 5678 bar.example.com" + priority = 10 + ttl = 300 + } + `, testDNSZone, name, recordType), + Check: resource.ComposeTestCheckFunc( + testAccCheckDomainRecordExists(tt, "scaleway_domain_record.srv_test"), + resource.TestCheckResourceAttr("scaleway_domain_record.srv_test", "dns_zone", testDNSZone), + resource.TestCheckResourceAttr("scaleway_domain_record.srv_test", "name", name), + resource.TestCheckResourceAttr("scaleway_domain_record.srv_test", "type", recordType), + resource.TestCheckResourceAttr("scaleway_domain_record.srv_test", "data", "10 0 5678 bar.example.com"), + resource.TestCheckResourceAttr("scaleway_domain_record.srv_test", "ttl", "300"), + resource.TestCheckResourceAttr("scaleway_domain_record.srv_test", "priority", "10"), + acctest.CheckResourceAttrUUID("scaleway_domain_record.srv_test", "id"), + ), + }, + }, + }) +} + func testAccCheckDomainRecordExists(tt *acctest.TestTools, n string) resource.TestCheckFunc { return func(s *terraform.State) error { rs, ok := s.RootModule().Resources[n] diff --git a/internal/services/domain/testdata/domain-record-srv-with-domain-duplication.cassette.yaml b/internal/services/domain/testdata/domain-record-srv-with-domain-duplication.cassette.yaml new file mode 100644 index 0000000000..869517168a --- /dev/null +++ b/internal/services/domain/testdata/domain-record-srv-with-domain-duplication.cassette.yaml @@ -0,0 +1,940 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 214 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"changes":[{"add":{"records":[{"data":"0 0 1234 foo.example.com","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv-duplication.scaleway-terraform.com/records + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 211 + uncompressed: false + body: '{"records":[{"comment":null,"data":"0 0 1234 foo.example.com.test-srv-duplication.scaleway-terraform.com.","id":"281d1fc6-f84f-4c85-a61a-4a10626a0448","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"}]}' + headers: + Content-Length: + - "211" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 27 Aug 2025 15:26:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1d480cf1-7b85-4e73-bb61-fdbed55e4b94 + status: 200 OK + code: 200 + duration: 905.051417ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv-duplication.scaleway-terraform.com/records?name=_test_srv_bug&order_by=name_asc&type=SRV + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 227 + uncompressed: false + body: '{"records":[{"comment":null,"data":"0 0 1234 foo.example.com.test-srv-duplication.scaleway-terraform.com.","id":"281d1fc6-f84f-4c85-a61a-4a10626a0448","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"}],"total_count":1}' + headers: + Content-Length: + - "227" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 27 Aug 2025 15:26:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 73bbd038-5db1-4040-ae5a-f0e19476b7f7 + status: 200 OK + code: 200 + duration: 327.221667ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv-duplication.scaleway-terraform.com/records?name=_test_srv_bug&order_by=name_asc&page=1&type=SRV + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 227 + uncompressed: false + body: '{"records":[{"comment":null,"data":"0 0 1234 foo.example.com.test-srv-duplication.scaleway-terraform.com.","id":"281d1fc6-f84f-4c85-a61a-4a10626a0448","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"}],"total_count":1}' + headers: + Content-Length: + - "227" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 27 Aug 2025 15:27:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cecd6f0f-c052-4144-a978-e5b8ff020112 + status: 200 OK + code: 200 + duration: 304.2895ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv-duplication.scaleway-terraform.com/records?id=281d1fc6-f84f-4c85-a61a-4a10626a0448&name=&order_by=name_asc&page=1&type=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 227 + uncompressed: false + body: '{"records":[{"comment":null,"data":"0 0 1234 foo.example.com.test-srv-duplication.scaleway-terraform.com.","id":"281d1fc6-f84f-4c85-a61a-4a10626a0448","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"}],"total_count":1}' + headers: + Content-Length: + - "227" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 27 Aug 2025 15:27:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8a655119-3830-418e-a31c-7ed84fb8a74d + status: 200 OK + code: 200 + duration: 124.882ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-srv-duplication.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 362 + uncompressed: false + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv-duplication","updated_at":"2025-08-27T15:26:59Z"}],"total_count":1}' + headers: + Content-Length: + - "362" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 27 Aug 2025 15:27:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 18aa948b-83d9-4882-b3d9-2b58ebf960f5 + status: 200 OK + code: 200 + duration: 141.337625ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv-duplication.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 497 + uncompressed: false + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"585a3bdd-e4fc-41e1-a31b-14e6efef15d5","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"5d55fc3f-16d0-42fe-82dd-0aafdd576996","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"0 0 1234 foo.example.com.test-srv-duplication.scaleway-terraform.com.","id":"281d1fc6-f84f-4c85-a61a-4a10626a0448","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"}],"total_count":3}' + headers: + Content-Length: + - "497" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 27 Aug 2025 15:27:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0e3a23e7-9d54-417b-81b3-648f56fd77e1 + status: 200 OK + code: 200 + duration: 132.014833ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv-duplication.scaleway-terraform.com/records?id=281d1fc6-f84f-4c85-a61a-4a10626a0448&name=_test_srv_bug&order_by=name_asc&page=1&type=SRV + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 227 + uncompressed: false + body: '{"records":[{"comment":null,"data":"0 0 1234 foo.example.com.test-srv-duplication.scaleway-terraform.com.","id":"281d1fc6-f84f-4c85-a61a-4a10626a0448","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"}],"total_count":1}' + headers: + Content-Length: + - "227" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 27 Aug 2025 15:27:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d359e392-34fc-44c4-bb16-ac7e0ae7aae8 + status: 200 OK + code: 200 + duration: 161.509ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-srv-duplication.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 362 + uncompressed: false + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv-duplication","updated_at":"2025-08-27T15:26:59Z"}],"total_count":1}' + headers: + Content-Length: + - "362" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 27 Aug 2025 15:27:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a15a7810-c088-483d-b3e8-ba31e9232f33 + status: 200 OK + code: 200 + duration: 144.996375ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv-duplication.scaleway-terraform.com/records?id=281d1fc6-f84f-4c85-a61a-4a10626a0448&name=_test_srv_bug&order_by=name_asc&page=1&type=SRV + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 227 + uncompressed: false + body: '{"records":[{"comment":null,"data":"0 0 1234 foo.example.com.test-srv-duplication.scaleway-terraform.com.","id":"281d1fc6-f84f-4c85-a61a-4a10626a0448","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"}],"total_count":1}' + headers: + Content-Length: + - "227" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 27 Aug 2025 15:27:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bddac3da-f008-47fb-8a33-d7f92ffadf65 + status: 200 OK + code: 200 + duration: 307.527334ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-srv-duplication.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 362 + uncompressed: false + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv-duplication","updated_at":"2025-08-27T15:26:59Z"}],"total_count":1}' + headers: + Content-Length: + - "362" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 27 Aug 2025 15:27:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2f6885bb-9ff4-4925-8bf9-6cbbf93a4689 + status: 200 OK + code: 200 + duration: 144.243292ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 261 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"changes":[{"set":{"id":"281d1fc6-f84f-4c85-a61a-4a10626a0448","records":[{"data":"10 0 5678 bar.example.com","name":"_test_srv_bug","priority":10,"ttl":300,"type":"SRV","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv-duplication.scaleway-terraform.com/records + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 214 + uncompressed: false + body: '{"records":[{"comment":null,"data":"10 0 5678 bar.example.com.test-srv-duplication.scaleway-terraform.com.","id":"281d1fc6-f84f-4c85-a61a-4a10626a0448","name":"_test_srv_bug","priority":10,"ttl":300,"type":"SRV"}]}' + headers: + Content-Length: + - "214" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 27 Aug 2025 15:27:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 84215b38-2b45-4505-9b40-984e21a9a902 + status: 200 OK + code: 200 + duration: 307.267708ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv-duplication.scaleway-terraform.com/records?name=_test_srv_bug&order_by=name_asc&type=SRV + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 230 + uncompressed: false + body: '{"records":[{"comment":null,"data":"10 0 5678 bar.example.com.test-srv-duplication.scaleway-terraform.com.","id":"281d1fc6-f84f-4c85-a61a-4a10626a0448","name":"_test_srv_bug","priority":10,"ttl":300,"type":"SRV"}],"total_count":1}' + headers: + Content-Length: + - "230" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 27 Aug 2025 15:27:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8a496295-10ce-4808-9f97-2e9d7464a259 + status: 200 OK + code: 200 + duration: 309.6865ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv-duplication.scaleway-terraform.com/records?id=281d1fc6-f84f-4c85-a61a-4a10626a0448&name=_test_srv_bug&order_by=name_asc&page=1&type=SRV + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 230 + uncompressed: false + body: '{"records":[{"comment":null,"data":"10 0 5678 bar.example.com.test-srv-duplication.scaleway-terraform.com.","id":"281d1fc6-f84f-4c85-a61a-4a10626a0448","name":"_test_srv_bug","priority":10,"ttl":300,"type":"SRV"}],"total_count":1}' + headers: + Content-Length: + - "230" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 27 Aug 2025 15:27:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a4ebb539-6ea7-4c4c-aaea-e013aa272bf3 + status: 200 OK + code: 200 + duration: 245.49225ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-srv-duplication.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 362 + uncompressed: false + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv-duplication","updated_at":"2025-08-27T15:27:03Z"}],"total_count":1}' + headers: + Content-Length: + - "362" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 27 Aug 2025 15:27:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d8dc57af-ad22-4b1c-aa0a-7788fd5730e4 + status: 200 OK + code: 200 + duration: 336.727708ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv-duplication.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 500 + uncompressed: false + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"585a3bdd-e4fc-41e1-a31b-14e6efef15d5","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"5d55fc3f-16d0-42fe-82dd-0aafdd576996","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"10 0 5678 bar.example.com.test-srv-duplication.scaleway-terraform.com.","id":"281d1fc6-f84f-4c85-a61a-4a10626a0448","name":"_test_srv_bug","priority":10,"ttl":300,"type":"SRV"}],"total_count":3}' + headers: + Content-Length: + - "500" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 27 Aug 2025 15:27:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d44f447d-8cba-48ea-a19e-5c6807e6b409 + status: 200 OK + code: 200 + duration: 267.781333ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv-duplication.scaleway-terraform.com/records?id=281d1fc6-f84f-4c85-a61a-4a10626a0448&name=_test_srv_bug&order_by=name_asc&page=1&type=SRV + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 230 + uncompressed: false + body: '{"records":[{"comment":null,"data":"10 0 5678 bar.example.com.test-srv-duplication.scaleway-terraform.com.","id":"281d1fc6-f84f-4c85-a61a-4a10626a0448","name":"_test_srv_bug","priority":10,"ttl":300,"type":"SRV"}],"total_count":1}' + headers: + Content-Length: + - "230" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 27 Aug 2025 15:27:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a1a55a99-2d54-4fe9-8498-27d6f9331864 + status: 200 OK + code: 200 + duration: 274.456208ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-srv-duplication.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 362 + uncompressed: false + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv-duplication","updated_at":"2025-08-27T15:27:03Z"}],"total_count":1}' + headers: + Content-Length: + - "362" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 27 Aug 2025 15:27:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 777096f7-b6d2-4678-b4eb-45193361045a + status: 200 OK + code: 200 + duration: 321.612334ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 132 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"changes":[{"delete":{"id":"281d1fc6-f84f-4c85-a61a-4a10626a0448"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv-duplication.scaleway-terraform.com/records + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"records":[]}' + headers: + Content-Length: + - "14" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 27 Aug 2025 15:27:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9c82cc32-a5ab-4cd3-b9a0-4ba04db8e5f2 + status: 200 OK + code: 200 + duration: 301.9965ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv-duplication.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 299 + uncompressed: false + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"585a3bdd-e4fc-41e1-a31b-14e6efef15d5","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"5d55fc3f-16d0-42fe-82dd-0aafdd576996","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' + headers: + Content-Length: + - "299" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 27 Aug 2025 15:27:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 25df8386-2e45-4cc7-8395-970e5ffe7313 + status: 200 OK + code: 200 + duration: 288.675917ms diff --git a/internal/services/domain/testdata/domain-registration-technical-contact-update-task-id.cassette.yaml b/internal/services/domain/testdata/domain-registration-technical-contact-update-task-id.cassette.yaml new file mode 100644 index 0000000000..38820401ac --- /dev/null +++ b/internal/services/domain/testdata/domain-registration-technical-contact-update-task-id.cassette.yaml @@ -0,0 +1,3290 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 634 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"domains":["test-technical-contact-update1.com"],"duration_in_years":1,"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","owner_contact":{"legal_form":"individual","firstname":"John","lastname":"DOE","company_name":"","email":"john.doe@example.com","email_alt":"","phone_number":"+1.23456789","fax_number":"","address_line_1":"123 Main Street","address_line_2":"","zip":"75001","city":"Paris","country":"FR","vat_identification_code":"FR12345678901","company_identification_code":"123456789","lang":"unknown_language_code","resale":false,"extension_fr":null,"extension_eu":null,"whois_opt_in":false,"state":"","extension_nl":null}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/buy-domains + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 258 + uncompressed: false + body: '{"created_at":"2025-07-08T13:36:36.557063541Z","domains":["test-technical-contact-update1.com"],"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","task_id":"947f0bac-19ba-4eeb-87ec-49897533f79a"}' + headers: + Content-Length: + - "258" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:36:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2252e857-5f12-46f8-a026-062b4afc3474 + status: 200 OK + code: 200 + duration: 1.956906667s + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23071 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"pending","type":"create_domain","updated_at":"2025-07-08T13:36:37Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' + headers: + Content-Length: + - "23071" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:36:36 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a7e43fba-26cb-47f2-b97a-e7cc55226977 + status: 200 OK + code: 200 + duration: 128.8735ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23079 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:36:37Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' + headers: + Content-Length: + - "23079" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:36:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4f4ca3e2-08f5-46d8-9a50-c2a5a3715dbe + status: 200 OK + code: 200 + duration: 113.180542ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23079 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:36:37Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' + headers: + Content-Length: + - "23079" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:36:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3c682ca4-c3d8-44f6-b48e-fa9779019c33 + status: 200 OK + code: 200 + duration: 122.546917ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23079 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:36:37Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' + headers: + Content-Length: + - "23079" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:36:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 071a94ab-93c1-47ed-a3f7-4d06250dde0b + status: 200 OK + code: 200 + duration: 127.495292ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23079 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:36:37Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' + headers: + Content-Length: + - "23079" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:36:45 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7d25248d-1472-430d-8efb-1d8ed6b6b855 + status: 200 OK + code: 200 + duration: 334.785958ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23079 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:36:37Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' + headers: + Content-Length: + - "23079" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:36:53 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c8ab5c11-f8d7-4aa0-85ee-250a7ec84059 + status: 200 OK + code: 200 + duration: 116.826916ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23079 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:36:37Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' + headers: + Content-Length: + - "23079" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:37:03 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 16669d68-2c37-4403-bf57-66f6a9ad6d38 + status: 200 OK + code: 200 + duration: 182.688209ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23079 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:36:37Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' + headers: + Content-Length: + - "23079" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:37:13 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7301ed8f-41b5-4c9d-8b66-973639861700 + status: 200 OK + code: 200 + duration: 114.3805ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23079 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:36:37Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' + headers: + Content-Length: + - "23079" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:37:23 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - de0cf27f-0609-408e-83f5-63e41282872e + status: 200 OK + code: 200 + duration: 108.268958ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23079 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:36:37Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' + headers: + Content-Length: + - "23079" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:37:34 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c6808769-58c2-4292-b884-9f6649c08fde + status: 200 OK + code: 200 + duration: 229.519875ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23079 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:36:37Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' + headers: + Content-Length: + - "23079" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:37:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d6defef5-1548-47a8-b9df-11f787c17114 + status: 200 OK + code: 200 + duration: 226.821959ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23079 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:37:47Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' + headers: + Content-Length: + - "23079" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:37:54 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 286cfb9a-b0f1-438b-95ad-a7585216c061 + status: 200 OK + code: 200 + duration: 474.985916ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23079 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:37:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' + headers: + Content-Length: + - "23079" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:38:05 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dff65a40-b485-4256-aa6d-f07c3b70d78c + status: 200 OK + code: 200 + duration: 188.421042ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23079 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:38:07Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' + headers: + Content-Length: + - "23079" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:38:15 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3e843fa7-29af-4a89-a2a9-4f551bf0ea56 + status: 200 OK + code: 200 + duration: 131.21375ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23079 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:38:17Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' + headers: + Content-Length: + - "23079" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:38:25 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c80823e6-935d-4201-a499-99398c91a68c + status: 200 OK + code: 200 + duration: 202.038208ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23071 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"pending","type":"create_domain","updated_at":"2025-07-08T13:38:28Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"}],"total_count":64}' + headers: + Content-Length: + - "23071" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:38:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9a8e7c8c-a7e7-4b3f-bcbd-1e9b08a7ccfe + status: 200 OK + code: 200 + duration: 157.886875ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23071 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"pending","type":"create_domain","updated_at":"2025-07-08T13:38:28Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"}],"total_count":64}' + headers: + Content-Length: + - "23071" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:38:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d8eb1ce4-2cbc-4f49-8aec-4765f2913968 + status: 200 OK + code: 200 + duration: 238.937167ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23071 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"pending","type":"create_domain","updated_at":"2025-07-08T13:38:28Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"}],"total_count":64}' + headers: + Content-Length: + - "23071" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:38:56 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c5115b7b-ac4f-454d-8920-1dc26bb6c6fb + status: 200 OK + code: 200 + duration: 124.677ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23071 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"pending","type":"create_domain","updated_at":"2025-07-08T13:38:28Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"}],"total_count":64}' + headers: + Content-Length: + - "23071" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:39:06 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 88a7395c-fde3-42d9-8c65-ecdfb82f3cb9 + status: 200 OK + code: 200 + duration: 134.007083ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23071 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"pending","type":"create_domain","updated_at":"2025-07-08T13:39:09Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"}],"total_count":64}' + headers: + Content-Length: + - "23071" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:39:16 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c9cb4b08-5eba-485c-95e7-72f6857ff5f1 + status: 200 OK + code: 200 + duration: 175.911625ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23071 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"pending","type":"create_domain","updated_at":"2025-07-08T13:39:09Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"}],"total_count":64}' + headers: + Content-Length: + - "23071" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:39:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b8df3cd1-a6a3-4971-b570-2a6453c6367f + status: 200 OK + code: 200 + duration: 136.878125ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23071 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"pending","type":"create_domain","updated_at":"2025-07-08T13:39:09Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"}],"total_count":64}' + headers: + Content-Length: + - "23071" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:39:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0c0300b2-4dd3-4642-a0e4-d1fc6ecaf60d + status: 200 OK + code: 200 + duration: 142.555666ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23071 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"pending","type":"create_domain","updated_at":"2025-07-08T13:39:09Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"}],"total_count":64}' + headers: + Content-Length: + - "23071" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:39:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 70c79acd-0ad2-4122-bc1e-4458e7b23290 + status: 200 OK + code: 200 + duration: 273.119333ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23071 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"pending","type":"create_domain","updated_at":"2025-07-08T13:39:49Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"}],"total_count":64}' + headers: + Content-Length: + - "23071" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:39:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6c134a7c-277e-4f8e-a82e-9d1d5fd76062 + status: 200 OK + code: 200 + duration: 127.065125ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23071 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"pending","type":"create_domain","updated_at":"2025-07-08T13:39:49Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"}],"total_count":64}' + headers: + Content-Length: + - "23071" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:07 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - da1d3e2d-267c-432b-a18f-572e75669291 + status: 200 OK + code: 200 + duration: 131.698167ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23071 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"pending","type":"create_domain","updated_at":"2025-07-08T13:40:09Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"}],"total_count":64}' + headers: + Content-Length: + - "23071" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:18 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 63decfa8-4cd3-4628-aa2b-00236e50c285 + status: 200 OK + code: 200 + duration: 144.184792ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23071 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"pending","type":"create_domain","updated_at":"2025-07-08T13:40:09Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"}],"total_count":64}' + headers: + Content-Length: + - "23071" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d5a0db3e-7122-46b1-955a-e74dd01be3ae + status: 200 OK + code: 200 + duration: 282.598916ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 23071 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:40:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"}],"total_count":64}' + headers: + Content-Length: + - "23071" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a9ad8a64-58c9-4efa-b279-57210bbcb3d1 + status: 200 OK + code: 200 + duration: 138.358083ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/domains/test-technical-contact-update1.com + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 3389 + uncompressed: false + body: '{"administrative_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"auto_renew_status":"disabled","dns_zones":[{"domain":"test-technical-contact-update1.com","linked_products":[],"message":null,"ns":["ns1.stg-scaleway.com.","ns2.stg-scaleway.com."],"ns_default":["ns1.stg-scaleway.com","ns2.stg-scaleway.com"],"ns_master":[],"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","status":"active","subdomain":"","updated_at":"2025-07-08T13:38:37Z"}],"dnssec":{"ds_records":[],"status":"disabled"},"domain":"test-technical-contact-update1.com","epp_code":["clientTransferProhibited"],"expired_at":"2026-07-08T15:39:10Z","is_external":false,"linked_products":[],"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","owner_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"pending_trade":false,"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","registrar":"SCALEWAY","status":"active","technical_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"tld":{"dnssec_support":true,"duration_in_years_max":9,"duration_in_years_min":1,"idn_support":false,"name":"com","offers":{"renew":{"action":"renew","operation_path":"/network/domain/domains/com/renew","price":{"currency_code":"EUR","nanos":990000000,"units":12}},"trade":{"action":"trade","operation_path":"/network/domain/domains/com/trade","price":{"currency_code":"EUR","nanos":0,"units":0}}},"specifications":{"grace_period":"30"}},"updated_at":"2025-07-08T13:40:09Z"}' + headers: + Content-Length: + - "3389" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4116272b-d170-4312-83a4-2e12560b17e9 + status: 200 OK + code: 200 + duration: 512.371583ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 7294 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"}],"total_count":64}' + headers: + Content-Length: + - "7294" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 929377c7-1dd2-4a0e-8b4a-7f282ab2e4d7 + status: 200 OK + code: 200 + duration: 151.688083ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 7124 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"}],"total_count":64}' + headers: + Content-Length: + - "7124" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e088a858-ce94-4e88-bd7f-f0b5c69c393e + status: 200 OK + code: 200 + duration: 102.19825ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 7296 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:40:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"}],"total_count":64}' + headers: + Content-Length: + - "7296" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a2489207-b9db-4da2-8236-40b0cd4304cf + status: 200 OK + code: 200 + duration: 118.325875ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1441 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"}],"total_count":64}' + headers: + Content-Length: + - "1441" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b01e7bd7-6e90-4382-8c08-3e113d4e6fa8 + status: 200 OK + code: 200 + duration: 124.90525ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/domains/test-technical-contact-update1.com + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 3389 + uncompressed: false + body: '{"administrative_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"auto_renew_status":"disabled","dns_zones":[{"domain":"test-technical-contact-update1.com","linked_products":[],"message":null,"ns":["ns1.stg-scaleway.com.","ns2.stg-scaleway.com."],"ns_default":["ns1.stg-scaleway.com","ns2.stg-scaleway.com"],"ns_master":[],"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","status":"active","subdomain":"","updated_at":"2025-07-08T13:38:37Z"}],"dnssec":{"ds_records":[],"status":"disabled"},"domain":"test-technical-contact-update1.com","epp_code":["clientTransferProhibited"],"expired_at":"2026-07-08T15:39:10Z","is_external":false,"linked_products":[],"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","owner_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"pending_trade":false,"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","registrar":"SCALEWAY","status":"active","technical_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"tld":{"dnssec_support":true,"duration_in_years_max":9,"duration_in_years_min":1,"idn_support":false,"name":"com","offers":{"renew":{"action":"renew","operation_path":"/network/domain/domains/com/renew","price":{"currency_code":"EUR","nanos":990000000,"units":12}},"trade":{"action":"trade","operation_path":"/network/domain/domains/com/trade","price":{"currency_code":"EUR","nanos":0,"units":0}}},"specifications":{"grace_period":"30"}},"updated_at":"2025-07-08T13:40:09Z"}' + headers: + Content-Length: + - "3389" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:40 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8989ef3e-b945-4f56-b518-531b1d984f5f + status: 200 OK + code: 200 + duration: 208.829209ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 7294 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"}],"total_count":64}' + headers: + Content-Length: + - "7294" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d5943f8d-5365-4151-85ce-1efa18dfc4a1 + status: 200 OK + code: 200 + duration: 209.484042ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 7124 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"}],"total_count":64}' + headers: + Content-Length: + - "7124" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9d29e254-07df-44af-9218-422c23892f90 + status: 200 OK + code: 200 + duration: 175.11825ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 7296 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:40:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"}],"total_count":64}' + headers: + Content-Length: + - "7296" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9fe708c7-3eb1-4d68-8b61-5fc437adbe62 + status: 200 OK + code: 200 + duration: 173.132875ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1441 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"}],"total_count":64}' + headers: + Content-Length: + - "1441" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 87df569b-e5ab-40ec-a31e-416941af41d1 + status: 200 OK + code: 200 + duration: 174.616333ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/domains/test-technical-contact-update1.com + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 3389 + uncompressed: false + body: '{"administrative_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"auto_renew_status":"disabled","dns_zones":[{"domain":"test-technical-contact-update1.com","linked_products":[],"message":null,"ns":["ns1.stg-scaleway.com.","ns2.stg-scaleway.com."],"ns_default":["ns1.stg-scaleway.com","ns2.stg-scaleway.com"],"ns_master":[],"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","status":"active","subdomain":"","updated_at":"2025-07-08T13:38:37Z"}],"dnssec":{"ds_records":[],"status":"disabled"},"domain":"test-technical-contact-update1.com","epp_code":["clientTransferProhibited"],"expired_at":"2026-07-08T15:39:10Z","is_external":false,"linked_products":[],"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","owner_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"pending_trade":false,"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","registrar":"SCALEWAY","status":"active","technical_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"tld":{"dnssec_support":true,"duration_in_years_max":9,"duration_in_years_min":1,"idn_support":false,"name":"com","offers":{"renew":{"action":"renew","operation_path":"/network/domain/domains/com/renew","price":{"currency_code":"EUR","nanos":990000000,"units":12}},"trade":{"action":"trade","operation_path":"/network/domain/domains/com/trade","price":{"currency_code":"EUR","nanos":0,"units":0}}},"specifications":{"grace_period":"30"}},"updated_at":"2025-07-08T13:40:09Z"}' + headers: + Content-Length: + - "3389" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 44dbaa07-9f1b-4576-88ee-398b54ccb6eb + status: 200 OK + code: 200 + duration: 175.356125ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 7294 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"}],"total_count":64}' + headers: + Content-Length: + - "7294" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2aaac4f3-1300-488f-9eb2-4daa81be7e1b + status: 200 OK + code: 200 + duration: 232.618541ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 7124 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"}],"total_count":64}' + headers: + Content-Length: + - "7124" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6c789cdf-f414-4a92-9ee9-8ae5ee3ab155 + status: 200 OK + code: 200 + duration: 176.685208ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 7296 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:40:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"}],"total_count":64}' + headers: + Content-Length: + - "7296" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:42 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 87a34292-b6d6-4737-a169-1d7c7566d805 + status: 200 OK + code: 200 + duration: 175.050042ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1441 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"}],"total_count":64}' + headers: + Content-Length: + - "1441" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0fd60929-6c8d-4f5c-8b35-7c5071d3a1f8 + status: 200 OK + code: 200 + duration: 157.566042ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/domains/test-technical-contact-update1.com + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 3389 + uncompressed: false + body: '{"administrative_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"auto_renew_status":"disabled","dns_zones":[{"domain":"test-technical-contact-update1.com","linked_products":[],"message":null,"ns":["ns1.stg-scaleway.com.","ns2.stg-scaleway.com."],"ns_default":["ns1.stg-scaleway.com","ns2.stg-scaleway.com"],"ns_master":[],"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","status":"active","subdomain":"","updated_at":"2025-07-08T13:38:37Z"}],"dnssec":{"ds_records":[],"status":"disabled"},"domain":"test-technical-contact-update1.com","epp_code":["clientTransferProhibited"],"expired_at":"2026-07-08T15:39:10Z","is_external":false,"linked_products":[],"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","owner_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"pending_trade":false,"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","registrar":"SCALEWAY","status":"active","technical_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"tld":{"dnssec_support":true,"duration_in_years_max":9,"duration_in_years_min":1,"idn_support":false,"name":"com","offers":{"renew":{"action":"renew","operation_path":"/network/domain/domains/com/renew","price":{"currency_code":"EUR","nanos":990000000,"units":12}},"trade":{"action":"trade","operation_path":"/network/domain/domains/com/trade","price":{"currency_code":"EUR","nanos":0,"units":0}}},"specifications":{"grace_period":"30"}},"updated_at":"2025-07-08T13:40:09Z"}' + headers: + Content-Length: + - "3389" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:43 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5b3d0b73-3633-4a88-a705-0f61cd9c8eec + status: 200 OK + code: 200 + duration: 208.503834ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 7294 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"}],"total_count":64}' + headers: + Content-Length: + - "7294" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 488b8789-c452-47cc-9c18-ad6aa1fdd5ae + status: 200 OK + code: 200 + duration: 126.945708ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 7124 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"}],"total_count":64}' + headers: + Content-Length: + - "7124" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 93e0ff6b-3165-4b5b-b97f-ae9178c662e2 + status: 200 OK + code: 200 + duration: 111.452416ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 7296 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:40:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"}],"total_count":64}' + headers: + Content-Length: + - "7296" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0f124eb2-d8c0-4894-b14b-9e73edcfb75d + status: 200 OK + code: 200 + duration: 95.806667ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1441 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"}],"total_count":64}' + headers: + Content-Length: + - "1441" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:44 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 99549d49-cda9-43f8-9ebb-348dcff7244a + status: 200 OK + code: 200 + duration: 87.579084ms + - id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 518 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"technical_contact":{"legal_form":"individual","firstname":"Jane","lastname":"SMITH","company_name":"","email":"jane.smith@example.com","email_alt":"","phone_number":"+1.98765432","fax_number":"","address_line_1":"456 Main Street","address_line_2":"","zip":"69000","city":"Lyon","country":"FR","vat_identification_code":"FR98765432109","company_identification_code":"987654321","lang":"unknown_language_code","resale":false,"extension_fr":null,"extension_eu":null,"whois_opt_in":false,"state":"","extension_nl":null}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/domains/test-technical-contact-update1.com + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 3389 + uncompressed: false + body: '{"administrative_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"auto_renew_status":"disabled","dns_zones":[{"domain":"test-technical-contact-update1.com","linked_products":[],"message":null,"ns":["ns1.stg-scaleway.com.","ns2.stg-scaleway.com."],"ns_default":["ns1.stg-scaleway.com","ns2.stg-scaleway.com"],"ns_master":[],"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","status":"active","subdomain":"","updated_at":"2025-07-08T13:38:37Z"}],"dnssec":{"ds_records":[],"status":"disabled"},"domain":"test-technical-contact-update1.com","epp_code":["clientTransferProhibited"],"expired_at":"2026-07-08T15:39:10Z","is_external":false,"linked_products":[],"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","owner_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"pending_trade":false,"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","registrar":"SCALEWAY","status":"active","technical_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"tld":{"dnssec_support":true,"duration_in_years_max":9,"duration_in_years_min":1,"idn_support":false,"name":"com","offers":{"renew":{"action":"renew","operation_path":"/network/domain/domains/com/renew","price":{"currency_code":"EUR","nanos":990000000,"units":12}},"trade":{"action":"trade","operation_path":"/network/domain/domains/com/trade","price":{"currency_code":"EUR","nanos":0,"units":0}}},"specifications":{"grace_period":"30"}},"updated_at":"2025-07-08T13:40:45Z"}' + headers: + Content-Length: + - "3389" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2179672a-b186-4475-a757-12f4bafc9a07 + status: 200 OK + code: 200 + duration: 1.654557583s + - id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?domain=test-technical-contact-update1.com&order_by=domain_desc&types=update_contact + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 29 + uncompressed: false + body: '{"tasks":[],"total_count":0}' + headers: + Content-Length: + - "29" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4b316201-cbf4-4516-b92c-b7282506630e + status: 200 OK + code: 200 + duration: 97.308583ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 7294 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"}],"total_count":65}' + headers: + Content-Length: + - "7294" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bf082738-1b98-4d21-9591-b53048843395 + status: 200 OK + code: 200 + duration: 133.576166ms + - id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 7124 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"}],"total_count":65}' + headers: + Content-Length: + - "7124" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 37f5342a-6dc8-41f3-8025-a2205dfef3af + status: 200 OK + code: 200 + duration: 110.8205ms + - id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 7276 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"473285eb-53a2-4b46-9103-85ac75541835","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:40:45Z","status":"pending","type":"update_domain","updated_at":"2025-07-08T13:40:46Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:40:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":65}' + headers: + Content-Length: + - "7276" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7cd49112-cc34-442d-8fe0-8d9568e7665b + status: 200 OK + code: 200 + duration: 140.151333ms + - id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1825 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"}],"total_count":65}' + headers: + Content-Length: + - "1825" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:46 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fe4f9adc-5119-4fe4-b0ec-cd0061ceef06 + status: 200 OK + code: 200 + duration: 97.954334ms + - id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/domains/test-technical-contact-update1.com + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 3389 + uncompressed: false + body: '{"administrative_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"auto_renew_status":"disabled","dns_zones":[{"domain":"test-technical-contact-update1.com","linked_products":[],"message":null,"ns":["ns1.stg-scaleway.com.","ns2.stg-scaleway.com."],"ns_default":["ns1.stg-scaleway.com","ns2.stg-scaleway.com"],"ns_master":[],"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","status":"active","subdomain":"","updated_at":"2025-07-08T13:38:37Z"}],"dnssec":{"ds_records":[],"status":"disabled"},"domain":"test-technical-contact-update1.com","epp_code":["clientTransferProhibited"],"expired_at":"2026-07-08T15:39:10Z","is_external":false,"linked_products":[],"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","owner_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"pending_trade":false,"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","registrar":"SCALEWAY","status":"active","technical_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"tld":{"dnssec_support":true,"duration_in_years_max":9,"duration_in_years_min":1,"idn_support":false,"name":"com","offers":{"renew":{"action":"renew","operation_path":"/network/domain/domains/com/renew","price":{"currency_code":"EUR","nanos":990000000,"units":12}},"trade":{"action":"trade","operation_path":"/network/domain/domains/com/trade","price":{"currency_code":"EUR","nanos":0,"units":0}}},"specifications":{"grace_period":"30"}},"updated_at":"2025-07-08T13:40:45Z"}' + headers: + Content-Length: + - "3389" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6629a450-b31d-4dc0-9cf1-19123b2398cb + status: 200 OK + code: 200 + duration: 199.857583ms + - id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/domains/test-technical-contact-update1.com + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 3389 + uncompressed: false + body: '{"administrative_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"auto_renew_status":"disabled","dns_zones":[{"domain":"test-technical-contact-update1.com","linked_products":[],"message":null,"ns":["ns1.stg-scaleway.com.","ns2.stg-scaleway.com."],"ns_default":["ns1.stg-scaleway.com","ns2.stg-scaleway.com"],"ns_master":[],"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","status":"active","subdomain":"","updated_at":"2025-07-08T13:38:37Z"}],"dnssec":{"ds_records":[],"status":"disabled"},"domain":"test-technical-contact-update1.com","epp_code":["clientTransferProhibited"],"expired_at":"2026-07-08T15:39:10Z","is_external":false,"linked_products":[],"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","owner_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"pending_trade":false,"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","registrar":"SCALEWAY","status":"active","technical_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"tld":{"dnssec_support":true,"duration_in_years_max":9,"duration_in_years_min":1,"idn_support":false,"name":"com","offers":{"renew":{"action":"renew","operation_path":"/network/domain/domains/com/renew","price":{"currency_code":"EUR","nanos":990000000,"units":12}},"trade":{"action":"trade","operation_path":"/network/domain/domains/com/trade","price":{"currency_code":"EUR","nanos":0,"units":0}}},"specifications":{"grace_period":"30"}},"updated_at":"2025-07-08T13:40:45Z"}' + headers: + Content-Length: + - "3389" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9b4bf35c-13bd-44da-b73e-0c2a66fe2edd + status: 200 OK + code: 200 + duration: 110.204959ms + - id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 7294 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"}],"total_count":65}' + headers: + Content-Length: + - "7294" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b302f0d5-f16e-4ec4-93cf-33418f58be18 + status: 200 OK + code: 200 + duration: 124.999041ms + - id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 7124 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"}],"total_count":65}' + headers: + Content-Length: + - "7124" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0ff01605-6fa7-4a90-b173-4ba505ce35d5 + status: 200 OK + code: 200 + duration: 110.050625ms + - id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 7276 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"473285eb-53a2-4b46-9103-85ac75541835","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:40:45Z","status":"pending","type":"update_domain","updated_at":"2025-07-08T13:40:46Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:40:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":65}' + headers: + Content-Length: + - "7276" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 54cadd18-3e0d-4c70-a6fc-6caeac1d17ef + status: 200 OK + code: 200 + duration: 138.947916ms + - id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1825 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"}],"total_count":65}' + headers: + Content-Length: + - "1825" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4f427a21-a67d-471a-a3ec-9044dd8605b8 + status: 200 OK + code: 200 + duration: 114.675083ms + - id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/domains/test-technical-contact-update1.com + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 3389 + uncompressed: false + body: '{"administrative_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"auto_renew_status":"disabled","dns_zones":[{"domain":"test-technical-contact-update1.com","linked_products":[],"message":null,"ns":["ns1.stg-scaleway.com.","ns2.stg-scaleway.com."],"ns_default":["ns1.stg-scaleway.com","ns2.stg-scaleway.com"],"ns_master":[],"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","status":"active","subdomain":"","updated_at":"2025-07-08T13:38:37Z"}],"dnssec":{"ds_records":[],"status":"disabled"},"domain":"test-technical-contact-update1.com","epp_code":["clientTransferProhibited"],"expired_at":"2026-07-08T15:39:10Z","is_external":false,"linked_products":[],"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","owner_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"pending_trade":false,"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","registrar":"SCALEWAY","status":"active","technical_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"tld":{"dnssec_support":true,"duration_in_years_max":9,"duration_in_years_min":1,"idn_support":false,"name":"com","offers":{"renew":{"action":"renew","operation_path":"/network/domain/domains/com/renew","price":{"currency_code":"EUR","nanos":990000000,"units":12}},"trade":{"action":"trade","operation_path":"/network/domain/domains/com/trade","price":{"currency_code":"EUR","nanos":0,"units":0}}},"specifications":{"grace_period":"30"}},"updated_at":"2025-07-08T13:40:45Z"}' + headers: + Content-Length: + - "3389" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 376109ce-07e4-4543-9cdb-7c383315a6ae + status: 200 OK + code: 200 + duration: 142.361083ms + - id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 7294 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"}],"total_count":65}' + headers: + Content-Length: + - "7294" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c53df2bb-5936-40e1-81a3-69d900b781be + status: 200 OK + code: 200 + duration: 127.000833ms + - id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 7124 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"}],"total_count":65}' + headers: + Content-Length: + - "7124" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a5f7ebe0-85da-4ca3-8493-e3bd50faac0f + status: 200 OK + code: 200 + duration: 127.104125ms + - id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 7276 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"473285eb-53a2-4b46-9103-85ac75541835","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:40:45Z","status":"pending","type":"update_domain","updated_at":"2025-07-08T13:40:46Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:40:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":65}' + headers: + Content-Length: + - "7276" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8fd344cd-3e2a-4b07-814f-6678869921c8 + status: 200 OK + code: 200 + duration: 124.212541ms + - id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1825 + uncompressed: false + body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"}],"total_count":65}' + headers: + Content-Length: + - "1825" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ec2f9b11-02e2-4d9e-87ca-8d14a27c629f + status: 200 OK + code: 200 + duration: 109.886416ms + - id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: agw.stg.fr-par-2.internal.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/domains/test-technical-contact-update1.com + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 3389 + uncompressed: false + body: '{"administrative_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"auto_renew_status":"disabled","dns_zones":[{"domain":"test-technical-contact-update1.com","linked_products":[],"message":null,"ns":["ns1.stg-scaleway.com.","ns2.stg-scaleway.com."],"ns_default":["ns1.stg-scaleway.com","ns2.stg-scaleway.com"],"ns_master":[],"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","status":"active","subdomain":"","updated_at":"2025-07-08T13:38:37Z"}],"dnssec":{"ds_records":[],"status":"disabled"},"domain":"test-technical-contact-update1.com","epp_code":["clientTransferProhibited"],"expired_at":"2026-07-08T15:39:10Z","is_external":false,"linked_products":[],"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","owner_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"pending_trade":false,"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","registrar":"SCALEWAY","status":"active","technical_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"tld":{"dnssec_support":true,"duration_in_years_max":9,"duration_in_years_min":1,"idn_support":false,"name":"com","offers":{"renew":{"action":"renew","operation_path":"/network/domain/domains/com/renew","price":{"currency_code":"EUR","nanos":990000000,"units":12}},"trade":{"action":"trade","operation_path":"/network/domain/domains/com/trade","price":{"currency_code":"EUR","nanos":0,"units":0}}},"specifications":{"grace_period":"30"}},"updated_at":"2025-07-08T13:40:45Z"}' + headers: + Content-Length: + - "3389" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Tue, 08 Jul 2025 13:40:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9c9c7c67-c3ec-4dc2-88e9-502d568a6b03 + status: 200 OK + code: 200 + duration: 108.398333ms diff --git a/internal/services/domain/testdata/domain-zone-versioning.cassette.yaml b/internal/services/domain/testdata/domain-zone-versioning.cassette.yaml new file mode 100644 index 0000000000..b7cacf786e --- /dev/null +++ b/internal/services/domain/testdata/domain-zone-versioning.cassette.yaml @@ -0,0 +1,199 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-version-zone.scaleway-terraform.com&domain=&order_by=domain_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 370 + uncompressed: false + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-version-zone","updated_at":"2025-07-16T14:13:56Z"}],"total_count":1}' + headers: + Content-Length: + - "370" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Jul 2025 14:13:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 02b1b97a-cd47-4ce0-ae31-aa5ee00006d5 + status: 200 OK + code: 200 + duration: 384.644333ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-version-zone.scaleway-terraform.com&domain=&order_by=domain_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 370 + uncompressed: false + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-version-zone","updated_at":"2025-07-16T14:13:56Z"}],"total_count":1}' + headers: + Content-Length: + - "370" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Jul 2025 14:13:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2a9984cf-d4ac-47ab-9faa-464907410958 + status: 200 OK + code: 200 + duration: 100.423042ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-version-zone.scaleway-terraform.com/versions?page_size=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 32 + uncompressed: false + body: '{"total_count":0,"versions":[]}' + headers: + Content-Length: + - "32" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Jul 2025 14:13:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3e981024-9385-4880-b9f1-a7ed434016af + status: 200 OK + code: 200 + duration: 87.650625ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-version-zone.scaleway-terraform.com&domain=&order_by=domain_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 33 + uncompressed: false + body: '{"dns_zones":[],"total_count":0}' + headers: + Content-Length: + - "33" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 16 Jul 2025 14:13:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - afe792b5-fa42-4e9d-a205-dcd53fa02290 + status: 200 OK + code: 200 + duration: 99.977125ms diff --git a/internal/services/domain/types.go b/internal/services/domain/types.go index a3bcfaa7dc..d0072b24ac 100644 --- a/internal/services/domain/types.go +++ b/internal/services/domain/types.go @@ -8,6 +8,14 @@ import ( "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" ) +// getStringSafely safely extracts a string value from an interface +func getStringSafely(v any) string { + if s, ok := v.(string); ok { + return s + } + return "" +} + func flattenDomainData(data string, recordType domain.RecordType) any { switch recordType { case domain.RecordTypeMX: // API return this format: "{priority} {data}" @@ -17,11 +25,49 @@ func flattenDomainData(data string, recordType domain.RecordType) any { } case domain.RecordTypeTXT: return strings.Trim(data, "\"") + case domain.RecordTypeSRV: + return normalizeSRVData(data) + } + + return data +} + +// normalizeSRVData normalizes SRV record data by handling weight field and zone domain suffixes +func normalizeSRVData(data string) string { + parts := strings.Fields(data) + + if len(parts) >= 4 { + priority, weight, port, target := parts[0], parts[1], parts[2], parts[3] + target = removeZoneDomainSuffix(target) + return strings.Join([]string{priority, weight, port, target}, " ") + } + + if len(parts) == 3 { + priority, port, target := parts[0], parts[1], parts[2] + return strings.Join([]string{priority, "0", port, target}, " ") } return data } +// removeZoneDomainSuffix removes the zone domain suffix from a target +func removeZoneDomainSuffix(target string) string { + if !strings.Contains(target, ".") { + return target + } + + targetParts := strings.Split(strings.TrimSuffix(target, "."), ".") + + switch { + case len(targetParts) > 4: + return strings.Join(targetParts[:len(targetParts)-3], ".") + case len(targetParts) > 3: + return strings.Join(targetParts[:len(targetParts)-2], ".") + default: + return strings.TrimSuffix(target, ".") + } +} + func flattenDomainGeoIP(config *domain.RecordGeoIPConfig) any { flattenedResult := []map[string]any{} @@ -135,22 +181,34 @@ func expandDomainHTTPService(i any, ok bool) *domain.RecordHTTPServiceConfig { return nil } - rawMap := i.([]any)[0].(map[string]any) + lst, ok := i.([]any) + if !ok || len(lst) == 0 { + return nil + } + + rawMap, ok := lst[0].(map[string]any) + if !ok { + return nil + } ips := []net.IP{} rawIPs, ok := rawMap["ips"].([]any) if ok { for _, rawIP := range rawIPs { - ips = append(ips, net.ParseIP(rawIP.(string))) + if s, ok := rawIP.(string); ok { + if ip := net.ParseIP(s); ip != nil { + ips = append(ips, ip) + } + } } } return &domain.RecordHTTPServiceConfig{ MustContain: types.ExpandStringPtr(rawMap["must_contain"]), - URL: rawMap["url"].(string), + URL: getStringSafely(rawMap["url"]), UserAgent: types.ExpandStringPtr(rawMap["user_agent"]), - Strategy: domain.RecordHTTPServiceConfigStrategy(rawMap["strategy"].(string)), + Strategy: domain.RecordHTTPServiceConfigStrategy(getStringSafely(rawMap["strategy"])), IPs: ips, } } From 9b26ab84eee975f8b1d05bea05334846cab5414b Mon Sep 17 00:00:00 2001 From: Jonathan Remy Date: Wed, 27 Aug 2025 17:42:54 +0200 Subject: [PATCH 2/3] fix lint: --- internal/services/domain/helpers.go | 4 + internal/services/domain/record.go | 2 +- internal/services/domain/record_test.go | 8 +- ...-srv-with-domain-duplication.cassette.yaml | 256 +- .../domain-record-srv-zone.cassette.yaml | 434 +-- ...nical-contact-update-task-id.cassette.yaml | 3290 ----------------- .../domain-zone-versioning.cassette.yaml | 199 - internal/services/domain/types.go | 44 +- 8 files changed, 224 insertions(+), 4013 deletions(-) delete mode 100644 internal/services/domain/testdata/domain-registration-technical-contact-update-task-id.cassette.yaml delete mode 100644 internal/services/domain/testdata/domain-zone-versioning.cassette.yaml diff --git a/internal/services/domain/helpers.go b/internal/services/domain/helpers.go index 9ebc1fdf90..abedac4233 100644 --- a/internal/services/domain/helpers.go +++ b/internal/services/domain/helpers.go @@ -40,7 +40,9 @@ func getRecordFromTypeAndData(dnsType domain.RecordType, data string, records [] if currentRecord != nil { return nil, errors.New("multiple records found with same type and data") } + currentRecord = r + break } } else { @@ -48,7 +50,9 @@ func getRecordFromTypeAndData(dnsType domain.RecordType, data string, records [] if currentRecord != nil { return nil, errors.New("multiple records found with same type and data") } + currentRecord = r + break } } diff --git a/internal/services/domain/record.go b/internal/services/domain/record.go index 6ff111e572..0e69a03b7f 100644 --- a/internal/services/domain/record.go +++ b/internal/services/domain/record.go @@ -296,7 +296,7 @@ func resourceRecordCreate(ctx context.Context, d *schema.ResourceData, m any) di return diag.FromErr(err) } - currentRecord, err := getRecordFromTypeAndData(recordType, recordData, dnsZoneData.Records) + currentRecord, err := getRecordFromTypeAndData(recordType, flattenDomainData(recordData, recordType).(string), dnsZoneData.Records) if err != nil { return diag.FromErr(err) } diff --git a/internal/services/domain/record_test.go b/internal/services/domain/record_test.go index 14062c9c3b..f4a8f67210 100644 --- a/internal/services/domain/record_test.go +++ b/internal/services/domain/record_test.go @@ -701,7 +701,7 @@ func TestAccDomainRecord_SRVWithDomainDuplication(t *testing.T) { name := "_test_srv_bug" recordType := "SRV" - data := "0 0 1234 foo.example.com" + data := "0 0 1234 foo.example.com." ttl := 60 priority := 0 @@ -726,7 +726,7 @@ func TestAccDomainRecord_SRVWithDomainDuplication(t *testing.T) { resource.TestCheckResourceAttr("scaleway_domain_record.srv_test", "dns_zone", testDNSZone), resource.TestCheckResourceAttr("scaleway_domain_record.srv_test", "name", name), resource.TestCheckResourceAttr("scaleway_domain_record.srv_test", "type", recordType), - resource.TestCheckResourceAttr("scaleway_domain_record.srv_test", "data", "0 0 1234 foo.example.com"), + resource.TestCheckResourceAttr("scaleway_domain_record.srv_test", "data", "0 0 1234 foo.example.com."), resource.TestCheckResourceAttr("scaleway_domain_record.srv_test", "ttl", strconv.Itoa(ttl)), resource.TestCheckResourceAttr("scaleway_domain_record.srv_test", "priority", strconv.Itoa(priority)), acctest.CheckResourceAttrUUID("scaleway_domain_record.srv_test", "id"), @@ -738,7 +738,7 @@ func TestAccDomainRecord_SRVWithDomainDuplication(t *testing.T) { dns_zone = "%[1]s" name = "%[2]s" type = "%[3]s" - data = "10 0 5678 bar.example.com" + data = "10 0 5678 bar.example.com." priority = 10 ttl = 300 } @@ -748,7 +748,7 @@ func TestAccDomainRecord_SRVWithDomainDuplication(t *testing.T) { resource.TestCheckResourceAttr("scaleway_domain_record.srv_test", "dns_zone", testDNSZone), resource.TestCheckResourceAttr("scaleway_domain_record.srv_test", "name", name), resource.TestCheckResourceAttr("scaleway_domain_record.srv_test", "type", recordType), - resource.TestCheckResourceAttr("scaleway_domain_record.srv_test", "data", "10 0 5678 bar.example.com"), + resource.TestCheckResourceAttr("scaleway_domain_record.srv_test", "data", "10 0 5678 bar.example.com."), resource.TestCheckResourceAttr("scaleway_domain_record.srv_test", "ttl", "300"), resource.TestCheckResourceAttr("scaleway_domain_record.srv_test", "priority", "10"), acctest.CheckResourceAttrUUID("scaleway_domain_record.srv_test", "id"), diff --git a/internal/services/domain/testdata/domain-record-srv-with-domain-duplication.cassette.yaml b/internal/services/domain/testdata/domain-record-srv-with-domain-duplication.cassette.yaml index 869517168a..86dfbda048 100644 --- a/internal/services/domain/testdata/domain-record-srv-with-domain-duplication.cassette.yaml +++ b/internal/services/domain/testdata/domain-record-srv-with-domain-duplication.cassette.yaml @@ -6,13 +6,13 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 214 + content_length: 215 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"add":{"records":[{"data":"0 0 1234 foo.example.com","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"add":{"records":[{"data":"0 0 1234 foo.example.com.","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 211 + content_length: 167 uncompressed: false - body: '{"records":[{"comment":null,"data":"0 0 1234 foo.example.com.test-srv-duplication.scaleway-terraform.com.","id":"281d1fc6-f84f-4c85-a61a-4a10626a0448","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"}]}' + body: '{"records":[{"comment":null,"data":"0 0 1234 foo.example.com.","id":"8c8f4c1e-8cc2-4dc2-b730-34b08ecdb762","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"}]}' headers: Content-Length: - - "211" + - "167" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 27 Aug 2025 15:26:59 GMT + - Thu, 28 Aug 2025 08:44:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d480cf1-7b85-4e73-bb61-fdbed55e4b94 + - 46b5ebfe-21c9-4973-82a2-1669c25e7955 status: 200 OK code: 200 - duration: 905.051417ms + duration: 4.198144667s - id: 1 request: proto: HTTP/1.1 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 227 + content_length: 381 uncompressed: false - body: '{"records":[{"comment":null,"data":"0 0 1234 foo.example.com.test-srv-duplication.scaleway-terraform.com.","id":"281d1fc6-f84f-4c85-a61a-4a10626a0448","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"0 0 1234 foo.example.com.test-srv-duplication.scaleway-terraform.com.","id":"e5ace7ca-ee80-49ec-83cf-a509aec22ca9","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"},{"comment":null,"data":"0 0 1234 foo.example.com.","id":"8c8f4c1e-8cc2-4dc2-b730-34b08ecdb762","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"}],"total_count":2}' headers: Content-Length: - - "227" + - "381" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 27 Aug 2025 15:26:59 GMT + - Thu, 28 Aug 2025 08:44:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73bbd038-5db1-4040-ae5a-f0e19476b7f7 + - 714886df-ac64-44c4-bbd3-6a61524bf8b8 status: 200 OK code: 200 - duration: 327.221667ms + duration: 316.176541ms - id: 2 request: proto: HTTP/1.1 @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 227 + content_length: 381 uncompressed: false - body: '{"records":[{"comment":null,"data":"0 0 1234 foo.example.com.test-srv-duplication.scaleway-terraform.com.","id":"281d1fc6-f84f-4c85-a61a-4a10626a0448","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"0 0 1234 foo.example.com.test-srv-duplication.scaleway-terraform.com.","id":"e5ace7ca-ee80-49ec-83cf-a509aec22ca9","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"},{"comment":null,"data":"0 0 1234 foo.example.com.","id":"8c8f4c1e-8cc2-4dc2-b730-34b08ecdb762","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"}],"total_count":2}' headers: Content-Length: - - "227" + - "381" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 27 Aug 2025 15:27:00 GMT + - Thu, 28 Aug 2025 08:44:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cecd6f0f-c052-4144-a978-e5b8ff020112 + - 503e9642-5792-48a7-bf79-59433ddfef13 status: 200 OK code: 200 - duration: 304.2895ms + duration: 355.19425ms - id: 3 request: proto: HTTP/1.1 @@ -166,7 +166,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv-duplication.scaleway-terraform.com/records?id=281d1fc6-f84f-4c85-a61a-4a10626a0448&name=&order_by=name_asc&page=1&type=unknown + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv-duplication.scaleway-terraform.com/records?id=e5ace7ca-ee80-49ec-83cf-a509aec22ca9&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -176,7 +176,7 @@ interactions: trailer: {} content_length: 227 uncompressed: false - body: '{"records":[{"comment":null,"data":"0 0 1234 foo.example.com.test-srv-duplication.scaleway-terraform.com.","id":"281d1fc6-f84f-4c85-a61a-4a10626a0448","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"0 0 1234 foo.example.com.test-srv-duplication.scaleway-terraform.com.","id":"e5ace7ca-ee80-49ec-83cf-a509aec22ca9","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"}],"total_count":1}' headers: Content-Length: - "227" @@ -185,9 +185,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 27 Aug 2025 15:27:00 GMT + - Thu, 28 Aug 2025 08:44:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a655119-3830-418e-a31c-7ed84fb8a74d + - e5bf280b-8d63-4228-a059-d99d14923706 status: 200 OK code: 200 - duration: 124.882ms + duration: 376.670375ms - id: 4 request: proto: HTTP/1.1 @@ -225,7 +225,7 @@ interactions: trailer: {} content_length: 362 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv-duplication","updated_at":"2025-08-27T15:26:59Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv-duplication","updated_at":"2025-08-28T08:44:21Z"}],"total_count":1}' headers: Content-Length: - "362" @@ -234,9 +234,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 27 Aug 2025 15:27:00 GMT + - Thu, 28 Aug 2025 08:44:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18aa948b-83d9-4882-b3d9-2b58ebf960f5 + - ea6cba2f-53d2-4b4f-8153-2a6835de7a76 status: 200 OK code: 200 - duration: 141.337625ms + duration: 215.473833ms - id: 5 request: proto: HTTP/1.1 @@ -272,20 +272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 497 + content_length: 651 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"585a3bdd-e4fc-41e1-a31b-14e6efef15d5","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"5d55fc3f-16d0-42fe-82dd-0aafdd576996","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"0 0 1234 foo.example.com.test-srv-duplication.scaleway-terraform.com.","id":"281d1fc6-f84f-4c85-a61a-4a10626a0448","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"585a3bdd-e4fc-41e1-a31b-14e6efef15d5","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"5d55fc3f-16d0-42fe-82dd-0aafdd576996","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"0 0 1234 foo.example.com.test-srv-duplication.scaleway-terraform.com.","id":"e5ace7ca-ee80-49ec-83cf-a509aec22ca9","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"},{"comment":null,"data":"0 0 1234 foo.example.com.","id":"8c8f4c1e-8cc2-4dc2-b730-34b08ecdb762","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"}],"total_count":4}' headers: Content-Length: - - "497" + - "651" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 27 Aug 2025 15:27:00 GMT + - Thu, 28 Aug 2025 08:44:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e3a23e7-9d54-417b-81b3-648f56fd77e1 + - ff5e946d-3768-42a7-a603-576507b8e5ce status: 200 OK code: 200 - duration: 132.014833ms + duration: 256.639125ms - id: 6 request: proto: HTTP/1.1 @@ -313,7 +313,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv-duplication.scaleway-terraform.com/records?id=281d1fc6-f84f-4c85-a61a-4a10626a0448&name=_test_srv_bug&order_by=name_asc&page=1&type=SRV + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv-duplication.scaleway-terraform.com/records?id=e5ace7ca-ee80-49ec-83cf-a509aec22ca9&name=_test_srv_bug&order_by=name_asc&page=1&type=SRV method: GET response: proto: HTTP/2.0 @@ -323,7 +323,7 @@ interactions: trailer: {} content_length: 227 uncompressed: false - body: '{"records":[{"comment":null,"data":"0 0 1234 foo.example.com.test-srv-duplication.scaleway-terraform.com.","id":"281d1fc6-f84f-4c85-a61a-4a10626a0448","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"0 0 1234 foo.example.com.test-srv-duplication.scaleway-terraform.com.","id":"e5ace7ca-ee80-49ec-83cf-a509aec22ca9","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"}],"total_count":1}' headers: Content-Length: - "227" @@ -332,9 +332,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 27 Aug 2025 15:27:01 GMT + - Thu, 28 Aug 2025 08:44:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d359e392-34fc-44c4-bb16-ac7e0ae7aae8 + - 6433737b-7c51-4a26-abe4-61f578fc711b status: 200 OK code: 200 - duration: 161.509ms + duration: 274.149208ms - id: 7 request: proto: HTTP/1.1 @@ -372,7 +372,7 @@ interactions: trailer: {} content_length: 362 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv-duplication","updated_at":"2025-08-27T15:26:59Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv-duplication","updated_at":"2025-08-28T08:44:21Z"}],"total_count":1}' headers: Content-Length: - "362" @@ -381,9 +381,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 27 Aug 2025 15:27:01 GMT + - Thu, 28 Aug 2025 08:44:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a15a7810-c088-483d-b3e8-ba31e9232f33 + - 84297b18-5324-4bcd-a7c6-5202e7bf0d5a status: 200 OK code: 200 - duration: 144.996375ms + duration: 739.464541ms - id: 8 request: proto: HTTP/1.1 @@ -411,7 +411,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv-duplication.scaleway-terraform.com/records?id=281d1fc6-f84f-4c85-a61a-4a10626a0448&name=_test_srv_bug&order_by=name_asc&page=1&type=SRV + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv-duplication.scaleway-terraform.com/records?id=e5ace7ca-ee80-49ec-83cf-a509aec22ca9&name=_test_srv_bug&order_by=name_asc&page=1&type=SRV method: GET response: proto: HTTP/2.0 @@ -421,7 +421,7 @@ interactions: trailer: {} content_length: 227 uncompressed: false - body: '{"records":[{"comment":null,"data":"0 0 1234 foo.example.com.test-srv-duplication.scaleway-terraform.com.","id":"281d1fc6-f84f-4c85-a61a-4a10626a0448","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"0 0 1234 foo.example.com.test-srv-duplication.scaleway-terraform.com.","id":"e5ace7ca-ee80-49ec-83cf-a509aec22ca9","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"}],"total_count":1}' headers: Content-Length: - "227" @@ -430,9 +430,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 27 Aug 2025 15:27:02 GMT + - Thu, 28 Aug 2025 08:44:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bddac3da-f008-47fb-8a33-d7f92ffadf65 + - 1ef0532a-94fe-4d49-8584-9cf55757d4f9 status: 200 OK code: 200 - duration: 307.527334ms + duration: 299.146792ms - id: 9 request: proto: HTTP/1.1 @@ -470,7 +470,7 @@ interactions: trailer: {} content_length: 362 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv-duplication","updated_at":"2025-08-27T15:26:59Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv-duplication","updated_at":"2025-08-28T08:44:21Z"}],"total_count":1}' headers: Content-Length: - "362" @@ -479,9 +479,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 27 Aug 2025 15:27:02 GMT + - Thu, 28 Aug 2025 08:44:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,22 +489,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f6885bb-9ff4-4925-8bf9-6cbbf93a4689 + - c07d1da5-d86e-419a-a2ac-6c726e8eb2a9 status: 200 OK code: 200 - duration: 144.243292ms + duration: 268.728791ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 261 + content_length: 262 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"set":{"id":"281d1fc6-f84f-4c85-a61a-4a10626a0448","records":[{"data":"10 0 5678 bar.example.com","name":"_test_srv_bug","priority":10,"ttl":300,"type":"SRV","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"set":{"id":"e5ace7ca-ee80-49ec-83cf-a509aec22ca9","records":[{"data":"10 0 5678 bar.example.com.","name":"_test_srv_bug","priority":10,"ttl":300,"type":"SRV","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: @@ -519,20 +519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 214 + content_length: 170 uncompressed: false - body: '{"records":[{"comment":null,"data":"10 0 5678 bar.example.com.test-srv-duplication.scaleway-terraform.com.","id":"281d1fc6-f84f-4c85-a61a-4a10626a0448","name":"_test_srv_bug","priority":10,"ttl":300,"type":"SRV"}]}' + body: '{"records":[{"comment":null,"data":"10 0 5678 bar.example.com.","id":"e5ace7ca-ee80-49ec-83cf-a509aec22ca9","name":"_test_srv_bug","priority":10,"ttl":300,"type":"SRV"}]}' headers: Content-Length: - - "214" + - "170" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 27 Aug 2025 15:27:03 GMT + - Thu, 28 Aug 2025 08:44:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,10 +540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84215b38-2b45-4505-9b40-984e21a9a902 + - 75ff6ee8-5f2c-4625-8fc2-7e962029b790 status: 200 OK code: 200 - duration: 307.267708ms + duration: 238.58575ms - id: 11 request: proto: HTTP/1.1 @@ -568,20 +568,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 230 + content_length: 340 uncompressed: false - body: '{"records":[{"comment":null,"data":"10 0 5678 bar.example.com.test-srv-duplication.scaleway-terraform.com.","id":"281d1fc6-f84f-4c85-a61a-4a10626a0448","name":"_test_srv_bug","priority":10,"ttl":300,"type":"SRV"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"0 0 1234 foo.example.com.","id":"8c8f4c1e-8cc2-4dc2-b730-34b08ecdb762","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"},{"comment":null,"data":"10 0 5678 bar.example.com.","id":"e5ace7ca-ee80-49ec-83cf-a509aec22ca9","name":"_test_srv_bug","priority":10,"ttl":300,"type":"SRV"}],"total_count":2}' headers: Content-Length: - - "230" + - "340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 27 Aug 2025 15:27:04 GMT + - Thu, 28 Aug 2025 08:44:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,10 +589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a496295-10ce-4808-9f97-2e9d7464a259 + - 5a777dc5-1ffe-402e-951e-2a49f923c384 status: 200 OK code: 200 - duration: 309.6865ms + duration: 261.249458ms - id: 12 request: proto: HTTP/1.1 @@ -609,7 +609,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv-duplication.scaleway-terraform.com/records?id=281d1fc6-f84f-4c85-a61a-4a10626a0448&name=_test_srv_bug&order_by=name_asc&page=1&type=SRV + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv-duplication.scaleway-terraform.com/records?id=e5ace7ca-ee80-49ec-83cf-a509aec22ca9&name=_test_srv_bug&order_by=name_asc&page=1&type=SRV method: GET response: proto: HTTP/2.0 @@ -617,20 +617,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 230 + content_length: 186 uncompressed: false - body: '{"records":[{"comment":null,"data":"10 0 5678 bar.example.com.test-srv-duplication.scaleway-terraform.com.","id":"281d1fc6-f84f-4c85-a61a-4a10626a0448","name":"_test_srv_bug","priority":10,"ttl":300,"type":"SRV"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"10 0 5678 bar.example.com.","id":"e5ace7ca-ee80-49ec-83cf-a509aec22ca9","name":"_test_srv_bug","priority":10,"ttl":300,"type":"SRV"}],"total_count":1}' headers: Content-Length: - - "230" + - "186" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 27 Aug 2025 15:27:04 GMT + - Thu, 28 Aug 2025 08:44:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,10 +638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4ebb539-6ea7-4c4c-aaea-e013aa272bf3 + - b8d813d7-326b-4a60-b8ba-ac32367e04c0 status: 200 OK code: 200 - duration: 245.49225ms + duration: 216.967083ms - id: 13 request: proto: HTTP/1.1 @@ -666,20 +666,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 361 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv-duplication","updated_at":"2025-08-27T15:27:03Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-srv-duplication","updated_at":"2025-08-28T08:44:27Z"}],"total_count":1}' headers: Content-Length: - - "362" + - "361" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 27 Aug 2025 15:27:04 GMT + - Thu, 28 Aug 2025 08:44:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,10 +687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8dc57af-ad22-4b1c-aa0a-7788fd5730e4 + - b164d6a1-40cd-49e3-b45b-6c5a23a38dcb status: 200 OK code: 200 - duration: 336.727708ms + duration: 276.022834ms - id: 14 request: proto: HTTP/1.1 @@ -715,20 +715,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 500 + content_length: 610 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"585a3bdd-e4fc-41e1-a31b-14e6efef15d5","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"5d55fc3f-16d0-42fe-82dd-0aafdd576996","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"10 0 5678 bar.example.com.test-srv-duplication.scaleway-terraform.com.","id":"281d1fc6-f84f-4c85-a61a-4a10626a0448","name":"_test_srv_bug","priority":10,"ttl":300,"type":"SRV"}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"585a3bdd-e4fc-41e1-a31b-14e6efef15d5","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"5d55fc3f-16d0-42fe-82dd-0aafdd576996","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"0 0 1234 foo.example.com.","id":"8c8f4c1e-8cc2-4dc2-b730-34b08ecdb762","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"},{"comment":null,"data":"10 0 5678 bar.example.com.","id":"e5ace7ca-ee80-49ec-83cf-a509aec22ca9","name":"_test_srv_bug","priority":10,"ttl":300,"type":"SRV"}],"total_count":4}' headers: Content-Length: - - "500" + - "610" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 27 Aug 2025 15:27:05 GMT + - Thu, 28 Aug 2025 08:44:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -736,10 +736,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d44f447d-8cba-48ea-a19e-5c6807e6b409 + - 0b432026-5e1d-436d-8300-5ef34baf39a7 status: 200 OK code: 200 - duration: 267.781333ms + duration: 258.37625ms - id: 15 request: proto: HTTP/1.1 @@ -756,7 +756,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv-duplication.scaleway-terraform.com/records?id=281d1fc6-f84f-4c85-a61a-4a10626a0448&name=_test_srv_bug&order_by=name_asc&page=1&type=SRV + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv-duplication.scaleway-terraform.com/records?id=e5ace7ca-ee80-49ec-83cf-a509aec22ca9&name=_test_srv_bug&order_by=name_asc&page=1&type=SRV method: GET response: proto: HTTP/2.0 @@ -764,20 +764,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 230 + content_length: 186 uncompressed: false - body: '{"records":[{"comment":null,"data":"10 0 5678 bar.example.com.test-srv-duplication.scaleway-terraform.com.","id":"281d1fc6-f84f-4c85-a61a-4a10626a0448","name":"_test_srv_bug","priority":10,"ttl":300,"type":"SRV"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"10 0 5678 bar.example.com.","id":"e5ace7ca-ee80-49ec-83cf-a509aec22ca9","name":"_test_srv_bug","priority":10,"ttl":300,"type":"SRV"}],"total_count":1}' headers: Content-Length: - - "230" + - "186" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 27 Aug 2025 15:27:06 GMT + - Thu, 28 Aug 2025 08:44:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -785,10 +785,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1a55a99-2d54-4fe9-8498-27d6f9331864 + - e161b1e7-a5d6-4bd3-bed1-e76d67c55492 status: 200 OK code: 200 - duration: 274.456208ms + duration: 264.983417ms - id: 16 request: proto: HTTP/1.1 @@ -813,20 +813,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 361 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv-duplication","updated_at":"2025-08-27T15:27:03Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-srv-duplication","updated_at":"2025-08-28T08:44:27Z"}],"total_count":1}' headers: Content-Length: - - "362" + - "361" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 27 Aug 2025 15:27:06 GMT + - Thu, 28 Aug 2025 08:44:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -834,10 +834,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 777096f7-b6d2-4678-b4eb-45193361045a + - 7323b676-869d-41bd-96d9-53107864ac75 status: 200 OK code: 200 - duration: 321.612334ms + duration: 271.111833ms - id: 17 request: proto: HTTP/1.1 @@ -849,7 +849,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"281d1fc6-f84f-4c85-a61a-4a10626a0448"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"delete":{"id":"e5ace7ca-ee80-49ec-83cf-a509aec22ca9"}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: @@ -875,9 +875,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 27 Aug 2025 15:27:07 GMT + - Thu, 28 Aug 2025 08:44:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -885,10 +885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c82cc32-a5ab-4cd3-b9a0-4ba04db8e5f2 + - 9030154e-5ee0-4330-a20e-5ef96f1256e3 status: 200 OK code: 200 - duration: 301.9965ms + duration: 244.937208ms - id: 18 request: proto: HTTP/1.1 @@ -913,20 +913,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 299 + content_length: 453 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"585a3bdd-e4fc-41e1-a31b-14e6efef15d5","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"5d55fc3f-16d0-42fe-82dd-0aafdd576996","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"585a3bdd-e4fc-41e1-a31b-14e6efef15d5","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"5d55fc3f-16d0-42fe-82dd-0aafdd576996","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"0 0 1234 foo.example.com.","id":"8c8f4c1e-8cc2-4dc2-b730-34b08ecdb762","name":"_test_srv_bug","priority":0,"ttl":60,"type":"SRV"}],"total_count":3}' headers: Content-Length: - - "299" + - "453" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 27 Aug 2025 15:27:07 GMT + - Thu, 28 Aug 2025 08:44:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-1;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -934,7 +934,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25df8386-2e45-4cc7-8395-970e5ffe7313 + - 2817e899-ac23-40f4-9d68-18cacf476faf status: 200 OK code: 200 - duration: 288.675917ms + duration: 233.7665ms diff --git a/internal/services/domain/testdata/domain-record-srv-zone.cassette.yaml b/internal/services/domain/testdata/domain-record-srv-zone.cassette.yaml index 103a8bf61d..02b6f63811 100644 --- a/internal/services/domain/testdata/domain-record-srv-zone.cassette.yaml +++ b/internal/services/domain/testdata/domain-record-srv-zone.cassette.yaml @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 194 + content_length: 188 uncompressed: false - body: '{"records":[{"comment":null,"data":"100 1 3128 bigbox.example.com.","id":"fbdb94d0-fe8c-40b4-abb2-d612325e305d","name":"_proxy-preproduction._tcp","priority":100,"ttl":3600,"type":"SRV"}]}' + body: '{"records":[{"comment":null,"data":"100 1 3128 bigbox.example.com.","id":"23aa10c3-8e04-4cc7-9e4c-206d5c4e4b0e","name":"_proxy-preproduction._tcp","priority":100,"ttl":3600,"type":"SRV"}]}' headers: Content-Length: - - "194" + - "188" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 16 Jul 2025 12:20:10 GMT + - Thu, 28 Aug 2025 07:24:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afbc7792-7747-4ba0-810f-287232f291e4 + - 5b3f71a6-ccec-4d75-8aa5-b1b6ba483a8d status: 200 OK code: 200 - duration: 1.027307292s + duration: 1.234859708s - id: 1 request: proto: HTTP/1.1 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 211 + content_length: 204 uncompressed: false - body: '{"records":[{"comment":null,"data":"100 1 3128 bigbox.example.com.","id":"fbdb94d0-fe8c-40b4-abb2-d612325e305d","name":"_proxy-preproduction._tcp","priority":100,"ttl":3600,"type":"SRV"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"100 1 3128 bigbox.example.com.","id":"23aa10c3-8e04-4cc7-9e4c-206d5c4e4b0e","name":"_proxy-preproduction._tcp","priority":100,"ttl":3600,"type":"SRV"}],"total_count":1}' headers: Content-Length: - - "211" + - "204" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 16 Jul 2025 12:20:10 GMT + - Thu, 28 Aug 2025 07:24:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2f7860f-08a5-4830-bd0b-670f500da5ee + - d820a21b-90e0-490e-89f8-9b39f8729004 status: 200 OK code: 200 - duration: 139.298625ms + duration: 504.770417ms - id: 2 request: proto: HTTP/1.1 @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 211 + content_length: 204 uncompressed: false - body: '{"records":[{"comment":null,"data":"100 1 3128 bigbox.example.com.","id":"fbdb94d0-fe8c-40b4-abb2-d612325e305d","name":"_proxy-preproduction._tcp","priority":100,"ttl":3600,"type":"SRV"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"100 1 3128 bigbox.example.com.","id":"23aa10c3-8e04-4cc7-9e4c-206d5c4e4b0e","name":"_proxy-preproduction._tcp","priority":100,"ttl":3600,"type":"SRV"}],"total_count":1}' headers: Content-Length: - - "211" + - "204" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 16 Jul 2025 12:20:10 GMT + - Thu, 28 Aug 2025 07:24:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71b5d4b6-e179-4f35-81b9-316c460703c3 + - f8278058-d39f-46bb-838d-2968b8e93012 status: 200 OK code: 200 - duration: 88.373542ms + duration: 239.821792ms - id: 3 request: proto: HTTP/1.1 @@ -166,7 +166,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv.scaleway-terraform.com/records?id=fbdb94d0-fe8c-40b4-abb2-d612325e305d&name=&order_by=name_asc&page=1&type=unknown + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv.scaleway-terraform.com/records?id=23aa10c3-8e04-4cc7-9e4c-206d5c4e4b0e&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 211 + content_length: 204 uncompressed: false - body: '{"records":[{"comment":null,"data":"100 1 3128 bigbox.example.com.","id":"fbdb94d0-fe8c-40b4-abb2-d612325e305d","name":"_proxy-preproduction._tcp","priority":100,"ttl":3600,"type":"SRV"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"100 1 3128 bigbox.example.com.","id":"23aa10c3-8e04-4cc7-9e4c-206d5c4e4b0e","name":"_proxy-preproduction._tcp","priority":100,"ttl":3600,"type":"SRV"}],"total_count":1}' headers: Content-Length: - - "211" + - "204" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 16 Jul 2025 12:20:10 GMT + - Thu, 28 Aug 2025 07:24:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 444930b5-6bce-40f8-a2cb-c9ae1b7a450e + - 19c5dac2-a902-46f9-af29-5ac32042c7a9 status: 200 OK code: 200 - duration: 177.191125ms + duration: 250.111167ms - id: 4 request: proto: HTTP/1.1 @@ -223,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 350 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv","updated_at":"2025-07-16T12:20:10Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv","updated_at":"2025-08-28T07:24:55Z"}],"total_count":1}' headers: Content-Length: - - "362" + - "350" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 16 Jul 2025 12:20:10 GMT + - Thu, 28 Aug 2025 07:24:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b3069ba-bc25-48de-ad6a-8116951923ba + - 2fa88fc4-457b-4b4c-ba94-6abead3350b1 status: 200 OK code: 200 - duration: 80.29375ms + duration: 380.588125ms - id: 5 request: proto: HTTP/1.1 @@ -272,20 +272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 495 + content_length: 474 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"38489364-f311-4f9a-806c-78600931d819","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"00f0570e-98aa-4e02-ad58-6f5548a7664a","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"100 1 3128 bigbox.example.com.","id":"fbdb94d0-fe8c-40b4-abb2-d612325e305d","name":"_proxy-preproduction._tcp","priority":100,"ttl":3600,"type":"SRV"}],"total_count":3}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"02010150-17e5-489f-a9ae-b8005f763e99","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"12e27922-0805-4056-91e7-b42a30ec5a98","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"100 1 3128 bigbox.example.com.","id":"23aa10c3-8e04-4cc7-9e4c-206d5c4e4b0e","name":"_proxy-preproduction._tcp","priority":100,"ttl":3600,"type":"SRV"}],"total_count":3}' headers: Content-Length: - - "495" + - "474" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 16 Jul 2025 12:20:11 GMT + - Thu, 28 Aug 2025 07:24:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - faf33f97-d5ab-48eb-9268-c9afe6e73998 + - 2c9bfc4e-b56c-4bff-a348-f2ae29176fec status: 200 OK code: 200 - duration: 237.542625ms + duration: 374.968417ms - id: 6 request: proto: HTTP/1.1 @@ -313,7 +313,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv.scaleway-terraform.com/records?id=fbdb94d0-fe8c-40b4-abb2-d612325e305d&name=_proxy-preproduction._tcp&order_by=name_asc&page=1&type=SRV + url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv.scaleway-terraform.com/records?id=23aa10c3-8e04-4cc7-9e4c-206d5c4e4b0e&name=_proxy-preproduction._tcp&order_by=name_asc&page=1&type=SRV method: GET response: proto: HTTP/2.0 @@ -321,20 +321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 211 + content_length: 204 uncompressed: false - body: '{"records":[{"comment":null,"data":"100 1 3128 bigbox.example.com.","id":"fbdb94d0-fe8c-40b4-abb2-d612325e305d","name":"_proxy-preproduction._tcp","priority":100,"ttl":3600,"type":"SRV"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"100 1 3128 bigbox.example.com.","id":"23aa10c3-8e04-4cc7-9e4c-206d5c4e4b0e","name":"_proxy-preproduction._tcp","priority":100,"ttl":3600,"type":"SRV"}],"total_count":1}' headers: Content-Length: - - "211" + - "204" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 16 Jul 2025 12:20:12 GMT + - Thu, 28 Aug 2025 07:24:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 181129c2-ba2d-40f1-90ae-333f35b55a92 + - 582f3a74-f91d-490f-aa27-5e3c35e18965 status: 200 OK code: 200 - duration: 93.073667ms + duration: 482.944084ms - id: 7 request: proto: HTTP/1.1 @@ -370,20 +370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 350 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv","updated_at":"2025-07-16T12:20:10Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv","updated_at":"2025-08-28T07:24:55Z"}],"total_count":1}' headers: Content-Length: - - "362" + - "350" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 16 Jul 2025 12:20:12 GMT + - Thu, 28 Aug 2025 07:24:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1310440-3699-4cd2-9b5f-b5257af33195 + - 0ce9cd6f-6e9f-45d5-9069-b18f792fdaf4 status: 200 OK code: 200 - duration: 98.608333ms + duration: 378.63275ms - id: 8 request: proto: HTTP/1.1 @@ -406,7 +406,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"fbdb94d0-fe8c-40b4-abb2-d612325e305d"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"delete":{"id":"23aa10c3-8e04-4cc7-9e4c-206d5c4e4b0e"}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: @@ -432,9 +432,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 16 Jul 2025 12:20:13 GMT + - Thu, 28 Aug 2025 07:25:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -442,10 +442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61d95ef1-c7ba-4402-be0c-3b96042967b5 + - 1db8d3b2-b21a-4645-b8e7-dda194c562ee status: 200 OK code: 200 - duration: 128.473042ms + duration: 581.490625ms - id: 9 request: proto: HTTP/1.1 @@ -470,20 +470,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 313 + content_length: 299 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"38489364-f311-4f9a-806c-78600931d819","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"00f0570e-98aa-4e02-ad58-6f5548a7664a","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' + body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"02010150-17e5-489f-a9ae-b8005f763e99","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"12e27922-0805-4056-91e7-b42a30ec5a98","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' headers: Content-Length: - - "313" + - "299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 16 Jul 2025 12:20:13 GMT + - Thu, 28 Aug 2025 07:25:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -491,301 +491,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d31e402d-4062-40ae-b606-e3c1e3b16dcd + - 45fa492b-d2b9-4623-86fc-e8e51e5c2800 status: 200 OK code: 200 - duration: 160.813416ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-srv.scaleway-terraform.com&domain=&order_by=domain_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 362 - uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv","updated_at":"2025-07-16T12:20:13Z"}],"total_count":1}' - headers: - Content-Length: - - "362" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 16 Jul 2025 12:20:13 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e6d5e6f8-0dcd-4079-88eb-b7964ccce78f - status: 200 OK - code: 200 - duration: 84.655916ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-srv.scaleway-terraform.com&domain=&order_by=domain_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 362 - uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv","updated_at":"2025-07-16T12:20:13Z"}],"total_count":1}' - headers: - Content-Length: - - "362" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 16 Jul 2025 12:20:18 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e8933318-ef48-4d53-9ad8-b5fd498f6ca8 - status: 200 OK - code: 200 - duration: 119.971709ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-srv.scaleway-terraform.com&domain=&order_by=domain_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 362 - uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"test-srv","updated_at":"2025-07-16T12:20:13Z"}],"total_count":1}' - headers: - Content-Length: - - "362" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 16 Jul 2025 12:20:23 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4c7b7ca2-ed3e-42f1-bbe8-ee625550c98b - status: 200 OK - code: 200 - duration: 100.698625ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-srv.scaleway-terraform.com&domain=&order_by=domain_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 361 - uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-srv","updated_at":"2025-07-16T12:20:24Z"}],"total_count":1}' - headers: - Content-Length: - - "361" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 16 Jul 2025 12:20:28 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c6808582-b31a-4e65-80bc-c47df6c03d41 - status: 200 OK - code: 200 - duration: 97.452709ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2 - uncompressed: false - body: '{}' - headers: - Content-Length: - - "2" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 16 Jul 2025 12:20:28 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 895fc51b-9e12-4c0d-890b-f36df13da01d - status: 200 OK - code: 200 - duration: 165.272041ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-srv.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 33 - uncompressed: false - body: '{"message":"subdomain not found"}' - headers: - Content-Length: - - "33" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 16 Jul 2025 12:20:28 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9b4ac104-c632-4c22-91c7-ef8cd9036eb3 - status: 403 Forbidden - code: 403 - duration: 129.817833ms + duration: 466.386208ms diff --git a/internal/services/domain/testdata/domain-registration-technical-contact-update-task-id.cassette.yaml b/internal/services/domain/testdata/domain-registration-technical-contact-update-task-id.cassette.yaml deleted file mode 100644 index 38820401ac..0000000000 --- a/internal/services/domain/testdata/domain-registration-technical-contact-update-task-id.cassette.yaml +++ /dev/null @@ -1,3290 +0,0 @@ ---- -version: 2 -interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 634 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"domains":["test-technical-contact-update1.com"],"duration_in_years":1,"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","owner_contact":{"legal_form":"individual","firstname":"John","lastname":"DOE","company_name":"","email":"john.doe@example.com","email_alt":"","phone_number":"+1.23456789","fax_number":"","address_line_1":"123 Main Street","address_line_2":"","zip":"75001","city":"Paris","country":"FR","vat_identification_code":"FR12345678901","company_identification_code":"123456789","lang":"unknown_language_code","resale":false,"extension_fr":null,"extension_eu":null,"whois_opt_in":false,"state":"","extension_nl":null}}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/buy-domains - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 258 - uncompressed: false - body: '{"created_at":"2025-07-08T13:36:36.557063541Z","domains":["test-technical-contact-update1.com"],"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","task_id":"947f0bac-19ba-4eeb-87ec-49897533f79a"}' - headers: - Content-Length: - - "258" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:36:36 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2252e857-5f12-46f8-a026-062b4afc3474 - status: 200 OK - code: 200 - duration: 1.956906667s - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23071 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"pending","type":"create_domain","updated_at":"2025-07-08T13:36:37Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' - headers: - Content-Length: - - "23071" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:36:36 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a7e43fba-26cb-47f2-b97a-e7cc55226977 - status: 200 OK - code: 200 - duration: 128.8735ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23079 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:36:37Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' - headers: - Content-Length: - - "23079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:36:37 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4f4ca3e2-08f5-46d8-9a50-c2a5a3715dbe - status: 200 OK - code: 200 - duration: 113.180542ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23079 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:36:37Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' - headers: - Content-Length: - - "23079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:36:38 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3c682ca4-c3d8-44f6-b48e-fa9779019c33 - status: 200 OK - code: 200 - duration: 122.546917ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23079 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:36:37Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' - headers: - Content-Length: - - "23079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:36:40 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 071a94ab-93c1-47ed-a3f7-4d06250dde0b - status: 200 OK - code: 200 - duration: 127.495292ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23079 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:36:37Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' - headers: - Content-Length: - - "23079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:36:45 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7d25248d-1472-430d-8efb-1d8ed6b6b855 - status: 200 OK - code: 200 - duration: 334.785958ms - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23079 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:36:37Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' - headers: - Content-Length: - - "23079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:36:53 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c8ab5c11-f8d7-4aa0-85ee-250a7ec84059 - status: 200 OK - code: 200 - duration: 116.826916ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23079 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:36:37Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' - headers: - Content-Length: - - "23079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:37:03 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 16669d68-2c37-4403-bf57-66f6a9ad6d38 - status: 200 OK - code: 200 - duration: 182.688209ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23079 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:36:37Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' - headers: - Content-Length: - - "23079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:37:13 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7301ed8f-41b5-4c9d-8b66-973639861700 - status: 200 OK - code: 200 - duration: 114.3805ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23079 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:36:37Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' - headers: - Content-Length: - - "23079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:37:23 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - de0cf27f-0609-408e-83f5-63e41282872e - status: 200 OK - code: 200 - duration: 108.268958ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23079 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:36:37Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' - headers: - Content-Length: - - "23079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:37:34 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c6808769-58c2-4292-b884-9f6649c08fde - status: 200 OK - code: 200 - duration: 229.519875ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23079 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:36:37Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' - headers: - Content-Length: - - "23079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:37:44 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d6defef5-1548-47a8-b9df-11f787c17114 - status: 200 OK - code: 200 - duration: 226.821959ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23079 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:37:47Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' - headers: - Content-Length: - - "23079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:37:54 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 286cfb9a-b0f1-438b-95ad-a7585216c061 - status: 200 OK - code: 200 - duration: 474.985916ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23079 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:37:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' - headers: - Content-Length: - - "23079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:38:05 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dff65a40-b485-4256-aa6d-f07c3b70d78c - status: 200 OK - code: 200 - duration: 188.421042ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23079 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:38:07Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' - headers: - Content-Length: - - "23079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:38:15 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3e843fa7-29af-4a89-a2a9-4f551bf0ea56 - status: 200 OK - code: 200 - duration: 131.21375ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23079 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"waiting_payment","type":"create_domain","updated_at":"2025-07-08T13:38:17Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":64}' - headers: - Content-Length: - - "23079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:38:25 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c80823e6-935d-4201-a499-99398c91a68c - status: 200 OK - code: 200 - duration: 202.038208ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23071 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"pending","type":"create_domain","updated_at":"2025-07-08T13:38:28Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"}],"total_count":64}' - headers: - Content-Length: - - "23071" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:38:35 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9a8e7c8c-a7e7-4b3f-bcbd-1e9b08a7ccfe - status: 200 OK - code: 200 - duration: 157.886875ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23071 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"pending","type":"create_domain","updated_at":"2025-07-08T13:38:28Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"}],"total_count":64}' - headers: - Content-Length: - - "23071" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:38:46 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d8eb1ce4-2cbc-4f49-8aec-4765f2913968 - status: 200 OK - code: 200 - duration: 238.937167ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23071 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"pending","type":"create_domain","updated_at":"2025-07-08T13:38:28Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"}],"total_count":64}' - headers: - Content-Length: - - "23071" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:38:56 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c5115b7b-ac4f-454d-8920-1dc26bb6c6fb - status: 200 OK - code: 200 - duration: 124.677ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23071 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"pending","type":"create_domain","updated_at":"2025-07-08T13:38:28Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"}],"total_count":64}' - headers: - Content-Length: - - "23071" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:39:06 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 88a7395c-fde3-42d9-8c65-ecdfb82f3cb9 - status: 200 OK - code: 200 - duration: 134.007083ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23071 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"pending","type":"create_domain","updated_at":"2025-07-08T13:39:09Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"}],"total_count":64}' - headers: - Content-Length: - - "23071" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:39:16 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c9cb4b08-5eba-485c-95e7-72f6857ff5f1 - status: 200 OK - code: 200 - duration: 175.911625ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23071 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"pending","type":"create_domain","updated_at":"2025-07-08T13:39:09Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"}],"total_count":64}' - headers: - Content-Length: - - "23071" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:39:27 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b8df3cd1-a6a3-4971-b570-2a6453c6367f - status: 200 OK - code: 200 - duration: 136.878125ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23071 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"pending","type":"create_domain","updated_at":"2025-07-08T13:39:09Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"}],"total_count":64}' - headers: - Content-Length: - - "23071" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:39:37 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0c0300b2-4dd3-4642-a0e4-d1fc6ecaf60d - status: 200 OK - code: 200 - duration: 142.555666ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23071 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"pending","type":"create_domain","updated_at":"2025-07-08T13:39:09Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"}],"total_count":64}' - headers: - Content-Length: - - "23071" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:39:47 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 70c79acd-0ad2-4122-bc1e-4458e7b23290 - status: 200 OK - code: 200 - duration: 273.119333ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23071 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"pending","type":"create_domain","updated_at":"2025-07-08T13:39:49Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"}],"total_count":64}' - headers: - Content-Length: - - "23071" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:39:57 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6c134a7c-277e-4f8e-a82e-9d1d5fd76062 - status: 200 OK - code: 200 - duration: 127.065125ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23071 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"pending","type":"create_domain","updated_at":"2025-07-08T13:39:49Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"}],"total_count":64}' - headers: - Content-Length: - - "23071" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:07 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - da1d3e2d-267c-432b-a18f-572e75669291 - status: 200 OK - code: 200 - duration: 131.698167ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23071 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"pending","type":"create_domain","updated_at":"2025-07-08T13:40:09Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"}],"total_count":64}' - headers: - Content-Length: - - "23071" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:18 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 63decfa8-4cd3-4628-aa2b-00236e50c285 - status: 200 OK - code: 200 - duration: 144.184792ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23071 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"pending","type":"create_domain","updated_at":"2025-07-08T13:40:09Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"}],"total_count":64}' - headers: - Content-Length: - - "23071" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:28 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d5a0db3e-7122-46b1-955a-e74dd01be3ae - status: 200 OK - code: 200 - duration: 282.598916ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1&page_size=1000 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 23071 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"},{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"},{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:40:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"}],"total_count":64}' - headers: - Content-Length: - - "23071" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:38 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a9ad8a64-58c9-4efa-b279-57210bbcb3d1 - status: 200 OK - code: 200 - duration: 138.358083ms - - id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/domains/test-technical-contact-update1.com - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 3389 - uncompressed: false - body: '{"administrative_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"auto_renew_status":"disabled","dns_zones":[{"domain":"test-technical-contact-update1.com","linked_products":[],"message":null,"ns":["ns1.stg-scaleway.com.","ns2.stg-scaleway.com."],"ns_default":["ns1.stg-scaleway.com","ns2.stg-scaleway.com"],"ns_master":[],"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","status":"active","subdomain":"","updated_at":"2025-07-08T13:38:37Z"}],"dnssec":{"ds_records":[],"status":"disabled"},"domain":"test-technical-contact-update1.com","epp_code":["clientTransferProhibited"],"expired_at":"2026-07-08T15:39:10Z","is_external":false,"linked_products":[],"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","owner_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"pending_trade":false,"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","registrar":"SCALEWAY","status":"active","technical_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"tld":{"dnssec_support":true,"duration_in_years_max":9,"duration_in_years_min":1,"idn_support":false,"name":"com","offers":{"renew":{"action":"renew","operation_path":"/network/domain/domains/com/renew","price":{"currency_code":"EUR","nanos":990000000,"units":12}},"trade":{"action":"trade","operation_path":"/network/domain/domains/com/trade","price":{"currency_code":"EUR","nanos":0,"units":0}}},"specifications":{"grace_period":"30"}},"updated_at":"2025-07-08T13:40:09Z"}' - headers: - Content-Length: - - "3389" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:39 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4116272b-d170-4312-83a4-2e12560b17e9 - status: 200 OK - code: 200 - duration: 512.371583ms - - id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 7294 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"}],"total_count":64}' - headers: - Content-Length: - - "7294" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:39 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 929377c7-1dd2-4a0e-8b4a-7f282ab2e4d7 - status: 200 OK - code: 200 - duration: 151.688083ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 7124 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"}],"total_count":64}' - headers: - Content-Length: - - "7124" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:39 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e088a858-ce94-4e88-bd7f-f0b5c69c393e - status: 200 OK - code: 200 - duration: 102.19825ms - - id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 7296 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:40:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"}],"total_count":64}' - headers: - Content-Length: - - "7296" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:39 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a2489207-b9db-4da2-8236-40b0cd4304cf - status: 200 OK - code: 200 - duration: 118.325875ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1441 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"}],"total_count":64}' - headers: - Content-Length: - - "1441" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:39 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b01e7bd7-6e90-4382-8c08-3e113d4e6fa8 - status: 200 OK - code: 200 - duration: 124.90525ms - - id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/domains/test-technical-contact-update1.com - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 3389 - uncompressed: false - body: '{"administrative_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"auto_renew_status":"disabled","dns_zones":[{"domain":"test-technical-contact-update1.com","linked_products":[],"message":null,"ns":["ns1.stg-scaleway.com.","ns2.stg-scaleway.com."],"ns_default":["ns1.stg-scaleway.com","ns2.stg-scaleway.com"],"ns_master":[],"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","status":"active","subdomain":"","updated_at":"2025-07-08T13:38:37Z"}],"dnssec":{"ds_records":[],"status":"disabled"},"domain":"test-technical-contact-update1.com","epp_code":["clientTransferProhibited"],"expired_at":"2026-07-08T15:39:10Z","is_external":false,"linked_products":[],"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","owner_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"pending_trade":false,"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","registrar":"SCALEWAY","status":"active","technical_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"tld":{"dnssec_support":true,"duration_in_years_max":9,"duration_in_years_min":1,"idn_support":false,"name":"com","offers":{"renew":{"action":"renew","operation_path":"/network/domain/domains/com/renew","price":{"currency_code":"EUR","nanos":990000000,"units":12}},"trade":{"action":"trade","operation_path":"/network/domain/domains/com/trade","price":{"currency_code":"EUR","nanos":0,"units":0}}},"specifications":{"grace_period":"30"}},"updated_at":"2025-07-08T13:40:09Z"}' - headers: - Content-Length: - - "3389" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:40 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8989ef3e-b945-4f56-b518-531b1d984f5f - status: 200 OK - code: 200 - duration: 208.829209ms - - id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 7294 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"}],"total_count":64}' - headers: - Content-Length: - - "7294" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:41 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d5943f8d-5365-4151-85ce-1efa18dfc4a1 - status: 200 OK - code: 200 - duration: 209.484042ms - - id: 36 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 7124 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"}],"total_count":64}' - headers: - Content-Length: - - "7124" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:41 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9d29e254-07df-44af-9218-422c23892f90 - status: 200 OK - code: 200 - duration: 175.11825ms - - id: 37 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 7296 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:40:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"}],"total_count":64}' - headers: - Content-Length: - - "7296" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:41 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9fe708c7-3eb1-4d68-8b61-5fc437adbe62 - status: 200 OK - code: 200 - duration: 173.132875ms - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1441 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"}],"total_count":64}' - headers: - Content-Length: - - "1441" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:41 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 87df569b-e5ab-40ec-a31e-416941af41d1 - status: 200 OK - code: 200 - duration: 174.616333ms - - id: 39 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/domains/test-technical-contact-update1.com - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 3389 - uncompressed: false - body: '{"administrative_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"auto_renew_status":"disabled","dns_zones":[{"domain":"test-technical-contact-update1.com","linked_products":[],"message":null,"ns":["ns1.stg-scaleway.com.","ns2.stg-scaleway.com."],"ns_default":["ns1.stg-scaleway.com","ns2.stg-scaleway.com"],"ns_master":[],"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","status":"active","subdomain":"","updated_at":"2025-07-08T13:38:37Z"}],"dnssec":{"ds_records":[],"status":"disabled"},"domain":"test-technical-contact-update1.com","epp_code":["clientTransferProhibited"],"expired_at":"2026-07-08T15:39:10Z","is_external":false,"linked_products":[],"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","owner_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"pending_trade":false,"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","registrar":"SCALEWAY","status":"active","technical_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"tld":{"dnssec_support":true,"duration_in_years_max":9,"duration_in_years_min":1,"idn_support":false,"name":"com","offers":{"renew":{"action":"renew","operation_path":"/network/domain/domains/com/renew","price":{"currency_code":"EUR","nanos":990000000,"units":12}},"trade":{"action":"trade","operation_path":"/network/domain/domains/com/trade","price":{"currency_code":"EUR","nanos":0,"units":0}}},"specifications":{"grace_period":"30"}},"updated_at":"2025-07-08T13:40:09Z"}' - headers: - Content-Length: - - "3389" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:41 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 44dbaa07-9f1b-4576-88ee-398b54ccb6eb - status: 200 OK - code: 200 - duration: 175.356125ms - - id: 40 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 7294 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"}],"total_count":64}' - headers: - Content-Length: - - "7294" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:42 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2aaac4f3-1300-488f-9eb2-4daa81be7e1b - status: 200 OK - code: 200 - duration: 232.618541ms - - id: 41 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 7124 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"}],"total_count":64}' - headers: - Content-Length: - - "7124" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:42 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6c789cdf-f414-4a92-9ee9-8ae5ee3ab155 - status: 200 OK - code: 200 - duration: 176.685208ms - - id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 7296 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:40:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"}],"total_count":64}' - headers: - Content-Length: - - "7296" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:42 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 87a34292-b6d6-4737-a169-1d7c7566d805 - status: 200 OK - code: 200 - duration: 175.050042ms - - id: 43 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1441 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"}],"total_count":64}' - headers: - Content-Length: - - "1441" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:43 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0fd60929-6c8d-4f5c-8b35-7c5071d3a1f8 - status: 200 OK - code: 200 - duration: 157.566042ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/domains/test-technical-contact-update1.com - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 3389 - uncompressed: false - body: '{"administrative_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"auto_renew_status":"disabled","dns_zones":[{"domain":"test-technical-contact-update1.com","linked_products":[],"message":null,"ns":["ns1.stg-scaleway.com.","ns2.stg-scaleway.com."],"ns_default":["ns1.stg-scaleway.com","ns2.stg-scaleway.com"],"ns_master":[],"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","status":"active","subdomain":"","updated_at":"2025-07-08T13:38:37Z"}],"dnssec":{"ds_records":[],"status":"disabled"},"domain":"test-technical-contact-update1.com","epp_code":["clientTransferProhibited"],"expired_at":"2026-07-08T15:39:10Z","is_external":false,"linked_products":[],"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","owner_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"pending_trade":false,"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","registrar":"SCALEWAY","status":"active","technical_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"tld":{"dnssec_support":true,"duration_in_years_max":9,"duration_in_years_min":1,"idn_support":false,"name":"com","offers":{"renew":{"action":"renew","operation_path":"/network/domain/domains/com/renew","price":{"currency_code":"EUR","nanos":990000000,"units":12}},"trade":{"action":"trade","operation_path":"/network/domain/domains/com/trade","price":{"currency_code":"EUR","nanos":0,"units":0}}},"specifications":{"grace_period":"30"}},"updated_at":"2025-07-08T13:40:09Z"}' - headers: - Content-Length: - - "3389" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:43 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5b3d0b73-3633-4a88-a705-0f61cd9c8eec - status: 200 OK - code: 200 - duration: 208.503834ms - - id: 45 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 7294 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"}],"total_count":64}' - headers: - Content-Length: - - "7294" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:44 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 488b8789-c452-47cc-9c18-ad6aa1fdd5ae - status: 200 OK - code: 200 - duration: 126.945708ms - - id: 46 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 7124 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"}],"total_count":64}' - headers: - Content-Length: - - "7124" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:44 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 93e0ff6b-3165-4b5b-b97f-ae9178c662e2 - status: 200 OK - code: 200 - duration: 111.452416ms - - id: 47 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 7296 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:40:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"},{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"}],"total_count":64}' - headers: - Content-Length: - - "7296" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:44 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0f124eb2-d8c0-4894-b14b-9e73edcfb75d - status: 200 OK - code: 200 - duration: 95.806667ms - - id: 48 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1441 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"}],"total_count":64}' - headers: - Content-Length: - - "1441" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:44 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 99549d49-cda9-43f8-9ebb-348dcff7244a - status: 200 OK - code: 200 - duration: 87.579084ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 518 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"technical_contact":{"legal_form":"individual","firstname":"Jane","lastname":"SMITH","company_name":"","email":"jane.smith@example.com","email_alt":"","phone_number":"+1.98765432","fax_number":"","address_line_1":"456 Main Street","address_line_2":"","zip":"69000","city":"Lyon","country":"FR","vat_identification_code":"FR98765432109","company_identification_code":"987654321","lang":"unknown_language_code","resale":false,"extension_fr":null,"extension_eu":null,"whois_opt_in":false,"state":"","extension_nl":null}}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/domains/test-technical-contact-update1.com - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 3389 - uncompressed: false - body: '{"administrative_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"auto_renew_status":"disabled","dns_zones":[{"domain":"test-technical-contact-update1.com","linked_products":[],"message":null,"ns":["ns1.stg-scaleway.com.","ns2.stg-scaleway.com."],"ns_default":["ns1.stg-scaleway.com","ns2.stg-scaleway.com"],"ns_master":[],"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","status":"active","subdomain":"","updated_at":"2025-07-08T13:38:37Z"}],"dnssec":{"ds_records":[],"status":"disabled"},"domain":"test-technical-contact-update1.com","epp_code":["clientTransferProhibited"],"expired_at":"2026-07-08T15:39:10Z","is_external":false,"linked_products":[],"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","owner_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"pending_trade":false,"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","registrar":"SCALEWAY","status":"active","technical_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"tld":{"dnssec_support":true,"duration_in_years_max":9,"duration_in_years_min":1,"idn_support":false,"name":"com","offers":{"renew":{"action":"renew","operation_path":"/network/domain/domains/com/renew","price":{"currency_code":"EUR","nanos":990000000,"units":12}},"trade":{"action":"trade","operation_path":"/network/domain/domains/com/trade","price":{"currency_code":"EUR","nanos":0,"units":0}}},"specifications":{"grace_period":"30"}},"updated_at":"2025-07-08T13:40:45Z"}' - headers: - Content-Length: - - "3389" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:46 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2179672a-b186-4475-a757-12f4bafc9a07 - status: 200 OK - code: 200 - duration: 1.654557583s - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?domain=test-technical-contact-update1.com&order_by=domain_desc&types=update_contact - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 29 - uncompressed: false - body: '{"tasks":[],"total_count":0}' - headers: - Content-Length: - - "29" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:46 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4b316201-cbf4-4516-b92c-b7282506630e - status: 200 OK - code: 200 - duration: 97.308583ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 7294 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"}],"total_count":65}' - headers: - Content-Length: - - "7294" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:46 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bf082738-1b98-4d21-9591-b53048843395 - status: 200 OK - code: 200 - duration: 133.576166ms - - id: 52 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 7124 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"}],"total_count":65}' - headers: - Content-Length: - - "7124" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:46 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 37f5342a-6dc8-41f3-8025-a2205dfef3af - status: 200 OK - code: 200 - duration: 110.8205ms - - id: 53 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 7276 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"473285eb-53a2-4b46-9103-85ac75541835","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:40:45Z","status":"pending","type":"update_domain","updated_at":"2025-07-08T13:40:46Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:40:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":65}' - headers: - Content-Length: - - "7276" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:46 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7cd49112-cc34-442d-8fe0-8d9568e7665b - status: 200 OK - code: 200 - duration: 140.151333ms - - id: 54 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1825 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"}],"total_count":65}' - headers: - Content-Length: - - "1825" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:46 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fe4f9adc-5119-4fe4-b0ec-cd0061ceef06 - status: 200 OK - code: 200 - duration: 97.954334ms - - id: 55 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/domains/test-technical-contact-update1.com - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 3389 - uncompressed: false - body: '{"administrative_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"auto_renew_status":"disabled","dns_zones":[{"domain":"test-technical-contact-update1.com","linked_products":[],"message":null,"ns":["ns1.stg-scaleway.com.","ns2.stg-scaleway.com."],"ns_default":["ns1.stg-scaleway.com","ns2.stg-scaleway.com"],"ns_master":[],"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","status":"active","subdomain":"","updated_at":"2025-07-08T13:38:37Z"}],"dnssec":{"ds_records":[],"status":"disabled"},"domain":"test-technical-contact-update1.com","epp_code":["clientTransferProhibited"],"expired_at":"2026-07-08T15:39:10Z","is_external":false,"linked_products":[],"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","owner_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"pending_trade":false,"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","registrar":"SCALEWAY","status":"active","technical_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"tld":{"dnssec_support":true,"duration_in_years_max":9,"duration_in_years_min":1,"idn_support":false,"name":"com","offers":{"renew":{"action":"renew","operation_path":"/network/domain/domains/com/renew","price":{"currency_code":"EUR","nanos":990000000,"units":12}},"trade":{"action":"trade","operation_path":"/network/domain/domains/com/trade","price":{"currency_code":"EUR","nanos":0,"units":0}}},"specifications":{"grace_period":"30"}},"updated_at":"2025-07-08T13:40:45Z"}' - headers: - Content-Length: - - "3389" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:47 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6629a450-b31d-4dc0-9cf1-19123b2398cb - status: 200 OK - code: 200 - duration: 199.857583ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/domains/test-technical-contact-update1.com - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 3389 - uncompressed: false - body: '{"administrative_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"auto_renew_status":"disabled","dns_zones":[{"domain":"test-technical-contact-update1.com","linked_products":[],"message":null,"ns":["ns1.stg-scaleway.com.","ns2.stg-scaleway.com."],"ns_default":["ns1.stg-scaleway.com","ns2.stg-scaleway.com"],"ns_master":[],"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","status":"active","subdomain":"","updated_at":"2025-07-08T13:38:37Z"}],"dnssec":{"ds_records":[],"status":"disabled"},"domain":"test-technical-contact-update1.com","epp_code":["clientTransferProhibited"],"expired_at":"2026-07-08T15:39:10Z","is_external":false,"linked_products":[],"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","owner_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"pending_trade":false,"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","registrar":"SCALEWAY","status":"active","technical_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"tld":{"dnssec_support":true,"duration_in_years_max":9,"duration_in_years_min":1,"idn_support":false,"name":"com","offers":{"renew":{"action":"renew","operation_path":"/network/domain/domains/com/renew","price":{"currency_code":"EUR","nanos":990000000,"units":12}},"trade":{"action":"trade","operation_path":"/network/domain/domains/com/trade","price":{"currency_code":"EUR","nanos":0,"units":0}}},"specifications":{"grace_period":"30"}},"updated_at":"2025-07-08T13:40:45Z"}' - headers: - Content-Length: - - "3389" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:47 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9b4bf35c-13bd-44da-b73e-0c2a66fe2edd - status: 200 OK - code: 200 - duration: 110.204959ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 7294 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"}],"total_count":65}' - headers: - Content-Length: - - "7294" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:47 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b302f0d5-f16e-4ec4-93cf-33418f58be18 - status: 200 OK - code: 200 - duration: 124.999041ms - - id: 58 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 7124 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"}],"total_count":65}' - headers: - Content-Length: - - "7124" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:47 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0ff01605-6fa7-4a90-b173-4ba505ce35d5 - status: 200 OK - code: 200 - duration: 110.050625ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 7276 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"473285eb-53a2-4b46-9103-85ac75541835","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:40:45Z","status":"pending","type":"update_domain","updated_at":"2025-07-08T13:40:46Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:40:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":65}' - headers: - Content-Length: - - "7276" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:48 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 54cadd18-3e0d-4c70-a6fc-6caeac1d17ef - status: 200 OK - code: 200 - duration: 138.947916ms - - id: 60 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1825 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"}],"total_count":65}' - headers: - Content-Length: - - "1825" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:48 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4f427a21-a67d-471a-a3ec-9044dd8605b8 - status: 200 OK - code: 200 - duration: 114.675083ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/domains/test-technical-contact-update1.com - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 3389 - uncompressed: false - body: '{"administrative_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"auto_renew_status":"disabled","dns_zones":[{"domain":"test-technical-contact-update1.com","linked_products":[],"message":null,"ns":["ns1.stg-scaleway.com.","ns2.stg-scaleway.com."],"ns_default":["ns1.stg-scaleway.com","ns2.stg-scaleway.com"],"ns_master":[],"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","status":"active","subdomain":"","updated_at":"2025-07-08T13:38:37Z"}],"dnssec":{"ds_records":[],"status":"disabled"},"domain":"test-technical-contact-update1.com","epp_code":["clientTransferProhibited"],"expired_at":"2026-07-08T15:39:10Z","is_external":false,"linked_products":[],"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","owner_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"pending_trade":false,"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","registrar":"SCALEWAY","status":"active","technical_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"tld":{"dnssec_support":true,"duration_in_years_max":9,"duration_in_years_min":1,"idn_support":false,"name":"com","offers":{"renew":{"action":"renew","operation_path":"/network/domain/domains/com/renew","price":{"currency_code":"EUR","nanos":990000000,"units":12}},"trade":{"action":"trade","operation_path":"/network/domain/domains/com/trade","price":{"currency_code":"EUR","nanos":0,"units":0}}},"specifications":{"grace_period":"30"}},"updated_at":"2025-07-08T13:40:45Z"}' - headers: - Content-Length: - - "3389" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:48 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 376109ce-07e4-4543-9cdb-7c383315a6ae - status: 200 OK - code: 200 - duration: 142.361083ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 7294 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain219.com","id":"7b612952-4a54-42e4-b8ff-a2a3fd062d58","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T09:52:15Z","status":"success","type":"create_domain","updated_at":"2025-01-06T09:55:45Z"},{"contact_identifier":"","domain":"test-basic-domain224.com","id":"2c0c099e-5e83-4d9d-8e0b-bf55ed535b22","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:05:55Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:09:47Z"},{"contact_identifier":"","domain":"test-basic-domain232.com","id":"ade85679-cfc2-47e6-a6a1-4693b492663a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:27:21Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:31:12Z"},{"contact_identifier":"","domain":"test-basic-domain234.com","id":"bd9314e3-dfa0-4dd4-84f0-8829d8cce719","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-06T10:23:59Z","status":"success","type":"create_domain","updated_at":"2025-01-06T10:27:12Z"},{"contact_identifier":"","domain":"test-basic-domain240.com","id":"2f639524-4053-4545-846d-cc81e5a4eb90","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T09:39:40Z","status":"success","type":"create_domain","updated_at":"2025-01-08T09:42:30Z"},{"contact_identifier":"","domain":"test-basic-domain246.com","id":"7f5f6f62-5a31-4457-949a-eca947c966c3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-08T15:25:09Z","status":"success","type":"create_domain","updated_at":"2025-01-08T15:28:47Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"33b1b427-4f61-44c5-a06f-154a75778c30","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:38:11Z","status":"success","type":"create_domain","updated_at":"2025-01-03T14:41:30Z"},{"contact_identifier":"","domain":"test-basic-domain66.com","id":"c51032af-67cf-4fef-9843-40acf1d97181","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T14:41:36Z","status":"success","type":"update_domain","updated_at":"2025-01-03T14:42:43Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"126c1592-f120-4692-ab65-dfb1936ba7a2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-basic-domain70.com","id":"161cd86f-9395-468f-a1f8-df043c9ef0c2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:14:08Z","status":"success","type":"update_domain","updated_at":"2025-01-03T15:15:13Z"},{"contact_identifier":"","domain":"test-multiple-100.com,test-multiple-101.com,test-multiple-102.com","id":"292453ad-17f0-4c17-8f09-eebc64fc6d45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T10:25:24Z","status":"success","type":"create_domain","updated_at":"2025-02-12T10:28:46Z"},{"contact_identifier":"","domain":"test-multiple-106.com","id":"bcc46564-c80d-4552-a7c9-97eecec404e7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:45:57Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T13:46:28Z"},{"contact_identifier":"","domain":"test-multiple-106.com,test-multiple-107.com,test-multiple-108.com","id":"43386a97-3aea-42e3-83ae-227248b8998d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:42:14Z","status":"success","type":"create_domain","updated_at":"2025-02-12T13:45:43Z"},{"contact_identifier":"","domain":"test-multiple-109.com,test-multiple-110.com,test-multiple-111.com","id":"09e9c7f0-76b6-4373-baa0-0a20b53f7ccf","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T13:57:17Z","status":"success","type":"create_domain","updated_at":"2025-02-12T14:00:48Z"},{"contact_identifier":"","domain":"test-multiple-115.com","id":"16bafbf2-f6b2-417d-933c-1ee3e7a085f3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:05:28Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:05:59Z"},{"contact_identifier":"","domain":"test-multiple-116.com","id":"491d7173-0cf5-491f-84bd-09cc0e9bbae3","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:15:30Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:16:01Z"},{"contact_identifier":"","domain":"test-multiple-117.com","id":"6b830589-31cd-4aaa-b67f-79da59762c4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:25:32Z","status":"success","type":"enable_dnssec","updated_at":"2025-02-12T15:26:04Z"},{"contact_identifier":"","domain":"test-multiple-115.com,test-multiple-116.com,test-multiple-117.com","id":"321293d4-5d16-413b-bbcb-f5359679ec8f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T15:01:43Z","status":"success","type":"create_domain","updated_at":"2025-02-12T15:05:11Z"},{"contact_identifier":"","domain":"test-multiple-118.com,test-multiple-119.com,test-multiple-120.com","id":"1f08e0cd-7f02-434c-abc0-58f6b63cfbf2","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-12T21:04:35Z","status":"success","type":"create_domain","updated_at":"2025-02-12T21:08:29Z"},{"contact_identifier":"","domain":"test-multiple-122.com","id":"858e6aec-2ffd-4006-9462-3a826a9c09ed","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:40:58Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:41:40Z"}],"total_count":65}' - headers: - Content-Length: - - "7294" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:48 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c53df2bb-5936-40e1-81a3-69d900b781be - status: 200 OK - code: 200 - duration: 127.000833ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 7124 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-multiple-123.com","id":"df9d1027-3a4d-483e-831b-421f53d0ea5e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:51:00Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-11T10:51:42Z"},{"contact_identifier":"","domain":"test-single-dsrecord35.com","id":"17fc6259-7a20-4a59-8481-6788953e63ce","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:00:13Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:04:25Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"430e475a-1099-4d78-ac0f-89a5e213dc24","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:20:07Z","status":"success","type":"create_domain","updated_at":"2025-03-10T15:23:16Z"},{"contact_identifier":"","domain":"test-single-dsrecord36.com","id":"49cad877-c6bb-43db-b448-3543def607eb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-10T15:23:19Z","status":"success","type":"enable_dnssec","updated_at":"2025-03-10T15:23:51Z"},{"contact_identifier":"","domain":"test-single-updates11.com","id":"33d4a72d-a92a-42f8-b7f3-3249bedadc45","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:35:34Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:38:34Z"},{"contact_identifier":"","domain":"test-single-updates14.com","id":"42b3ab17-0db7-46ef-a51e-e35f20e9d705","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T15:13:27Z","status":"success","type":"create_domain","updated_at":"2025-01-30T15:17:07Z"},{"contact_identifier":"","domain":"test-single-updates15.com","id":"890525da-cdde-4dac-99fa-5f1706911f62","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:33:40Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:36:50Z"},{"contact_identifier":"","domain":"test-single-updates16.com","id":"e1337439-56f0-4c43-9ead-d5926d07fc2b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T09:50:25Z","status":"success","type":"create_domain","updated_at":"2025-01-31T09:53:34Z"},{"contact_identifier":"","domain":"test-single-updates17.com","id":"37231404-aca1-4b84-8071-82cbf6f85b4c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T11:05:28Z","status":"success","type":"create_domain","updated_at":"2025-01-31T11:08:39Z"},{"contact_identifier":"","domain":"test-single-updates18.com","id":"9a525b06-5ae1-4ac9-b0d2-2897218f4991","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-31T14:07:29Z","status":"success","type":"create_domain","updated_at":"2025-01-31T14:10:59Z"},{"contact_identifier":"","domain":"test-single-updates24.com","id":"3da9703b-7c72-4030-ab49-b2e11f10e70a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-05T10:35:36Z","status":"success","type":"create_domain","updated_at":"2025-02-05T10:39:07Z"},{"contact_identifier":"","domain":"test-single-updates27.com","id":"9499a393-8fd4-47ff-9051-11d02a59c2ba","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-06T18:13:04Z","status":"success","type":"create_domain","updated_at":"2025-02-06T18:16:34Z"},{"contact_identifier":"","domain":"test-single-updates28.com","id":"95e31238-e2b9-45ef-9f8b-c5244cd31429","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T08:55:15Z","status":"success","type":"create_domain","updated_at":"2025-02-07T08:59:17Z"},{"contact_identifier":"","domain":"test-single-updates29.com","id":"1b779c72-cb4f-4b68-8b13-e53ad8cbbaef","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-07T15:39:46Z","status":"success","type":"create_domain","updated_at":"2025-02-07T15:42:38Z"},{"contact_identifier":"","domain":"test-single-updates30.com","id":"d58c358c-ed84-49b1-a645-61312e69b205","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-10T14:29:00Z","status":"success","type":"create_domain","updated_at":"2025-02-10T14:32:31Z"},{"contact_identifier":"","domain":"test-single-updates33.com","id":"3fd47dd0-6b7d-4bc6-ad79-fafefa12beda","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-02-11T10:07:20Z","status":"success","type":"create_domain","updated_at":"2025-02-11T10:10:23Z"},{"contact_identifier":"","domain":"test-single-updates36.com","id":"aa234acd-6d40-4994-8558-0acabfda4208","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T09:55:36Z","status":"success","type":"create_domain","updated_at":"2025-03-11T09:59:35Z"},{"contact_identifier":"","domain":"test-single-updates4.com","id":"58231537-4c78-453a-991d-c87fa1862b23","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:12:38Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:15:48Z"},{"contact_identifier":"","domain":"test-single-updates5.com","id":"dffa3277-5e04-423d-b902-90f0f22b24ae","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T10:27:12Z","status":"success","type":"create_domain","updated_at":"2025-01-30T10:30:48Z"},{"contact_identifier":"","domain":"test-single-updates7.com","id":"c6bf5549-56bc-4684-80db-0af0f6259bb7","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:14:19Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:18:19Z"}],"total_count":65}' - headers: - Content-Length: - - "7124" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:48 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a5f7ebe0-85da-4ca3-8493-e3bd50faac0f - status: 200 OK - code: 200 - duration: 127.104125ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 7276 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-single-updates8.com","id":"ea8e863e-5751-4326-90a5-bc99ac46c116","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-30T14:19:45Z","status":"success","type":"create_domain","updated_at":"2025-01-30T14:23:26Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"473285eb-53a2-4b46-9103-85ac75541835","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:40:45Z","status":"pending","type":"update_domain","updated_at":"2025-07-08T13:40:46Z"},{"contact_identifier":"","domain":"test-technical-contact-update1.com","id":"947f0bac-19ba-4eeb-87ec-49897533f79a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:36:37Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:40:29Z"},{"contact_identifier":"","domain":"test-technical-contact-update.com","id":"a2b3e6d4-46ef-4f64-b4e0-c1fe4c52528f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-07-08T13:23:12Z","status":"success","type":"create_domain","updated_at":"2025-07-08T13:27:12Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain59.com","id":"b319d23a-54f7-40a4-9da6-94b076bf7775","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:18:00Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain60.com","id":"fd5b2c26-808d-4de2-9971-a80a8230065c","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:36:19Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain62.com","id":"ecffbafc-b772-4760-9c8d-5953935ea16a","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:59:35Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain63.com","id":"6c33a83c-7284-4307-b751-cb3ab08e4829","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:06:43Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain64.com","id":"6e5872a9-0958-49f4-ab3d-ad8bd8d82930","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:20:52Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:46Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain65.com","id":"84686a91-f882-4098-ad61-8a78eee36e36","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:31:55Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:47Z"},{"contact_identifier":"individual John DOE","domain":"test-update-owner-domain66.com","id":"31a2ad04-4def-48de-9809-7293c715e2af","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T15:48:08Z","status":"error","type":"trade_domain","updated_at":"2025-03-13T09:09:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"c570f848-1c45-4e32-8901-23b73d1eb65b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:56:05Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:56:06Z"},{"contact_identifier":"","domain":"test-basic-domain201.com","id":"f438dc5b-9427-4f76-a55d-f3622f0da72b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:40Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain204.com","id":"f8744e62-5936-48b2-855f-e38ce3bdd693","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain203.com","id":"d24807ef-3ec3-4545-aea2-473d97bd09c4","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:40Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"0b292160-8fdf-49b7-ad09-3e561187d47f","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:01:00Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:01:00Z"},{"contact_identifier":"","domain":"test-basic-domain202.com","id":"fc840638-1ac3-4cb6-982e-b79623d8988b","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:41Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:42Z"},{"contact_identifier":"","domain":"test-update-owner-domain59.com","id":"91dc3bdc-de5f-4d27-a0d3-d5a9f9ac2c01","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-31T14:14:46Z","status":"error","type":"create_domain","updated_at":"2024-12-31T14:16:12Z"},{"contact_identifier":"","domain":"test-basic-domain205.com","id":"43293d69-a1cd-47d1-83fd-9c8461458681","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-01-03T15:30:38Z","status":"error","type":"create_domain","updated_at":"2025-01-03T15:32:29Z"},{"contact_identifier":"","domain":"test-basic-domain14.com","id":"089aa5d9-fd12-4d0b-be0e-f163475ad59d","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T14:55:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T14:55:36Z"}],"total_count":65}' - headers: - Content-Length: - - "7276" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:48 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8fd344cd-3e2a-4b07-814f-6678869921c8 - status: 200 OK - code: 200 - duration: 124.212541ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/tasks?order_by=domain_desc&page=4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1825 - uncompressed: false - body: '{"tasks":[{"contact_identifier":"","domain":"test-basic-domain22.com","id":"94561204-571f-41bc-9893-6ef49ee2b24e","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:05:28Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:05:29Z"},{"contact_identifier":"","domain":"test-multiple-121.com,test-multiple-122.com,test-multiple-123.com","id":"9ada331b-30c8-42b6-afd8-3dfb19839e97","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2025-03-11T10:26:42Z","status":"error","type":"create_domain","updated_at":"2025-03-11T10:28:48Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"8d606813-1514-401c-9148-a47a77819f40","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:03:35Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:03:35Z"},{"contact_identifier":"","domain":"test-basic-domain15.com","id":"406a06c9-1d49-4ffb-abbe-e8a749807aeb","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:02:22Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:02:22Z"},{"contact_identifier":"","domain":"test-basic-domain23.com","id":"4a0ac06e-49c8-4ee5-bd41-3f60dc660f44","message":null,"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","started_at":"2024-12-16T15:42:57Z","status":"error","type":"create_domain","updated_at":"2024-12-16T15:42:57Z"}],"total_count":65}' - headers: - Content-Length: - - "1825" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:48 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ec2f9b11-02e2-4d9e-87ca-8d14a27c629f - status: 200 OK - code: 200 - duration: 109.886416ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: agw.stg.fr-par-2.internal.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://agw.stg.fr-par-2.internal.scaleway.com/domain/v2beta1/domains/test-technical-contact-update1.com - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 3389 - uncompressed: false - body: '{"administrative_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"auto_renew_status":"disabled","dns_zones":[{"domain":"test-technical-contact-update1.com","linked_products":[],"message":null,"ns":["ns1.stg-scaleway.com.","ns2.stg-scaleway.com."],"ns_default":["ns1.stg-scaleway.com","ns2.stg-scaleway.com"],"ns_master":[],"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","status":"active","subdomain":"","updated_at":"2025-07-08T13:38:37Z"}],"dnssec":{"ds_records":[],"status":"disabled"},"domain":"test-technical-contact-update1.com","epp_code":["clientTransferProhibited"],"expired_at":"2026-07-08T15:39:10Z","is_external":false,"linked_products":[],"organization_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","owner_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"pending_trade":false,"project_id":"2efde44b-c582-4939-be07-6e3f62b3d71e","registrar":"SCALEWAY","status":"active","technical_contact":{"address_line_1":"123 Main Street","address_line_2":"","city":"Paris","company_identification_code":"123456789","company_name":"","country":"FR","email":"john.doe@example.com","email_alt":"","email_status":"email_status_unknown","extension_eu":{"european_citizenship":"FR"},"extension_fr":{"mode":"mode_unknown"},"extension_nl":null,"fax_number":"","firstname":"John","id":"pON-Iq0WEFtzKuD_yRnt-WOhVdVuuiIQdAiFzBrbV2leKg==","lang":"en_US","lastname":"DOE","legal_form":"individual","phone_number":"+1.23456789","questions":[],"resale":false,"state":"","status":"status_unknown","vat_identification_code":"FR12345678901","whois_opt_in":false,"zip":"75001"},"tld":{"dnssec_support":true,"duration_in_years_max":9,"duration_in_years_min":1,"idn_support":false,"name":"com","offers":{"renew":{"action":"renew","operation_path":"/network/domain/domains/com/renew","price":{"currency_code":"EUR","nanos":990000000,"units":12}},"trade":{"action":"trade","operation_path":"/network/domain/domains/com/trade","price":{"currency_code":"EUR","nanos":0,"units":0}}},"specifications":{"grace_period":"30"}},"updated_at":"2025-07-08T13:40:45Z"}' - headers: - Content-Length: - - "3389" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 08 Jul 2025 13:40:49 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9c9c7c67-c3ec-4dc2-88e9-502d568a6b03 - status: 200 OK - code: 200 - duration: 108.398333ms diff --git a/internal/services/domain/testdata/domain-zone-versioning.cassette.yaml b/internal/services/domain/testdata/domain-zone-versioning.cassette.yaml deleted file mode 100644 index b7cacf786e..0000000000 --- a/internal/services/domain/testdata/domain-zone-versioning.cassette.yaml +++ /dev/null @@ -1,199 +0,0 @@ ---- -version: 2 -interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-version-zone.scaleway-terraform.com&domain=&order_by=domain_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 370 - uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-version-zone","updated_at":"2025-07-16T14:13:56Z"}],"total_count":1}' - headers: - Content-Length: - - "370" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 16 Jul 2025 14:13:57 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 02b1b97a-cd47-4ce0-ae31-aa5ee00006d5 - status: 200 OK - code: 200 - duration: 384.644333ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=test-version-zone.scaleway-terraform.com&domain=&order_by=domain_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 370 - uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"test-version-zone","updated_at":"2025-07-16T14:13:56Z"}],"total_count":1}' - headers: - Content-Length: - - "370" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 16 Jul 2025 14:13:57 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2a9984cf-d4ac-47ab-9faa-464907410958 - status: 200 OK - code: 200 - duration: 100.423042ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/test-version-zone.scaleway-terraform.com/versions?page_size=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 32 - uncompressed: false - body: '{"total_count":0,"versions":[]}' - headers: - Content-Length: - - "32" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 16 Jul 2025 14:13:57 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3e981024-9385-4880-b9f1-a7ed434016af - status: 200 OK - code: 200 - duration: 87.650625ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=test-version-zone.scaleway-terraform.com&domain=&order_by=domain_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 33 - uncompressed: false - body: '{"dns_zones":[],"total_count":0}' - headers: - Content-Length: - - "33" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 16 Jul 2025 14:13:58 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - afe792b5-fa42-4e9d-a205-dcd53fa02290 - status: 200 OK - code: 200 - duration: 99.977125ms diff --git a/internal/services/domain/types.go b/internal/services/domain/types.go index d0072b24ac..9cd6a07af5 100644 --- a/internal/services/domain/types.go +++ b/internal/services/domain/types.go @@ -8,14 +8,6 @@ import ( "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" ) -// getStringSafely safely extracts a string value from an interface -func getStringSafely(v any) string { - if s, ok := v.(string); ok { - return s - } - return "" -} - func flattenDomainData(data string, recordType domain.RecordType) any { switch recordType { case domain.RecordTypeMX: // API return this format: "{priority} {data}" @@ -39,11 +31,13 @@ func normalizeSRVData(data string) string { if len(parts) >= 4 { priority, weight, port, target := parts[0], parts[1], parts[2], parts[3] target = removeZoneDomainSuffix(target) + return strings.Join([]string{priority, weight, port, target}, " ") } if len(parts) == 3 { priority, port, target := parts[0], parts[1], parts[2] + return strings.Join([]string{priority, "0", port, target}, " ") } @@ -56,16 +50,24 @@ func removeZoneDomainSuffix(target string) string { return target } + hadTrailingDot := strings.HasSuffix(target, ".") + targetParts := strings.Split(strings.TrimSuffix(target, "."), ".") switch { case len(targetParts) > 4: - return strings.Join(targetParts[:len(targetParts)-3], ".") + target = strings.Join(targetParts[:len(targetParts)-3], ".") case len(targetParts) > 3: - return strings.Join(targetParts[:len(targetParts)-2], ".") + target = strings.Join(targetParts[:len(targetParts)-2], ".") default: - return strings.TrimSuffix(target, ".") + target = strings.TrimSuffix(target, ".") + } + + if hadTrailingDot { + target += "." } + + return target } func flattenDomainGeoIP(config *domain.RecordGeoIPConfig) any { @@ -181,34 +183,22 @@ func expandDomainHTTPService(i any, ok bool) *domain.RecordHTTPServiceConfig { return nil } - lst, ok := i.([]any) - if !ok || len(lst) == 0 { - return nil - } - - rawMap, ok := lst[0].(map[string]any) - if !ok { - return nil - } + rawMap := i.([]any)[0].(map[string]any) ips := []net.IP{} rawIPs, ok := rawMap["ips"].([]any) if ok { for _, rawIP := range rawIPs { - if s, ok := rawIP.(string); ok { - if ip := net.ParseIP(s); ip != nil { - ips = append(ips, ip) - } - } + ips = append(ips, net.ParseIP(rawIP.(string))) } } return &domain.RecordHTTPServiceConfig{ MustContain: types.ExpandStringPtr(rawMap["must_contain"]), - URL: getStringSafely(rawMap["url"]), + URL: rawMap["url"].(string), UserAgent: types.ExpandStringPtr(rawMap["user_agent"]), - Strategy: domain.RecordHTTPServiceConfigStrategy(getStringSafely(rawMap["strategy"])), + Strategy: domain.RecordHTTPServiceConfigStrategy(rawMap["strategy"].(string)), IPs: ips, } } From 52cac964120134439b13784e5770a4474684941f Mon Sep 17 00:00:00 2001 From: Jonathan Remy Date: Tue, 2 Sep 2025 04:57:35 +0200 Subject: [PATCH 3/3] add unit test and better help messages --- internal/services/domain/helpers.go | 8 +- internal/services/domain/record.go | 4 +- internal/services/domain/types.go | 15 +- internal/services/domain/types_test.go | 208 +++++++++++++++++++++++++ 4 files changed, 222 insertions(+), 13 deletions(-) create mode 100644 internal/services/domain/types_test.go diff --git a/internal/services/domain/helpers.go b/internal/services/domain/helpers.go index abedac4233..3d7d84ce5b 100644 --- a/internal/services/domain/helpers.go +++ b/internal/services/domain/helpers.go @@ -32,13 +32,13 @@ func getRecordFromTypeAndData(dnsType domain.RecordType, data string, records [] var currentRecord *domain.Record for _, r := range records { - flattedData := flattenDomainData(strings.ToLower(r.Data), r.Type).(string) - flattenCurrentData := flattenDomainData(strings.ToLower(data), r.Type).(string) + flattedData := FlattenDomainData(strings.ToLower(r.Data), r.Type).(string) + flattenCurrentData := FlattenDomainData(strings.ToLower(data), r.Type).(string) if dnsType == domain.RecordTypeSRV { if flattedData == flattenCurrentData { if currentRecord != nil { - return nil, errors.New("multiple records found with same type and data") + return nil, fmt.Errorf("multiple records found with same type and data: existing record %s (ID: %s) conflicts with new record data %s", currentRecord.Data, currentRecord.ID, data) } currentRecord = r @@ -48,7 +48,7 @@ func getRecordFromTypeAndData(dnsType domain.RecordType, data string, records [] } else { if strings.HasPrefix(flattedData, flattenCurrentData) && r.Type == dnsType { if currentRecord != nil { - return nil, errors.New("multiple records found with same type and data") + return nil, fmt.Errorf("multiple records found with same type and data: existing record %s (ID: %s) conflicts with new record data %s", currentRecord.Data, currentRecord.ID, data) } currentRecord = r diff --git a/internal/services/domain/record.go b/internal/services/domain/record.go index 0e69a03b7f..95a3c4ee9e 100644 --- a/internal/services/domain/record.go +++ b/internal/services/domain/record.go @@ -296,7 +296,7 @@ func resourceRecordCreate(ctx context.Context, d *schema.ResourceData, m any) di return diag.FromErr(err) } - currentRecord, err := getRecordFromTypeAndData(recordType, flattenDomainData(recordData, recordType).(string), dnsZoneData.Records) + currentRecord, err := getRecordFromTypeAndData(recordType, FlattenDomainData(recordData, recordType).(string), dnsZoneData.Records) if err != nil { return diag.FromErr(err) } @@ -408,7 +408,7 @@ func resourceDomainRecordRead(ctx context.Context, d *schema.ResourceData, m any _ = d.Set("dns_zone", dnsZone) _ = d.Set("name", record.Name) _ = d.Set("type", record.Type.String()) - _ = d.Set("data", flattenDomainData(record.Data, record.Type).(string)) + _ = d.Set("data", FlattenDomainData(record.Data, record.Type).(string)) _ = d.Set("ttl", int(record.TTL)) _ = d.Set("priority", int(record.Priority)) _ = d.Set("geo_ip", flattenDomainGeoIP(record.GeoIPConfig)) diff --git a/internal/services/domain/types.go b/internal/services/domain/types.go index 9cd6a07af5..d341366a4d 100644 --- a/internal/services/domain/types.go +++ b/internal/services/domain/types.go @@ -8,7 +8,8 @@ import ( "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" ) -func flattenDomainData(data string, recordType domain.RecordType) any { +// FlattenDomainData normalizes domain record data based on record type +func FlattenDomainData(data string, recordType domain.RecordType) any { switch recordType { case domain.RecordTypeMX: // API return this format: "{priority} {data}" dataSplit := strings.SplitN(data, " ", 2) @@ -18,19 +19,19 @@ func flattenDomainData(data string, recordType domain.RecordType) any { case domain.RecordTypeTXT: return strings.Trim(data, "\"") case domain.RecordTypeSRV: - return normalizeSRVData(data) + return NormalizeSRVData(data) } return data } -// normalizeSRVData normalizes SRV record data by handling weight field and zone domain suffixes -func normalizeSRVData(data string) string { +// NormalizeSRVData normalizes SRV record data by handling weight field and zone domain suffixes +func NormalizeSRVData(data string) string { parts := strings.Fields(data) if len(parts) >= 4 { priority, weight, port, target := parts[0], parts[1], parts[2], parts[3] - target = removeZoneDomainSuffix(target) + target = RemoveZoneDomainSuffix(target) return strings.Join([]string{priority, weight, port, target}, " ") } @@ -44,8 +45,8 @@ func normalizeSRVData(data string) string { return data } -// removeZoneDomainSuffix removes the zone domain suffix from a target -func removeZoneDomainSuffix(target string) string { +// RemoveZoneDomainSuffix removes the zone domain suffix from a target +func RemoveZoneDomainSuffix(target string) string { if !strings.Contains(target, ".") { return target } diff --git a/internal/services/domain/types_test.go b/internal/services/domain/types_test.go new file mode 100644 index 0000000000..ce4af3b055 --- /dev/null +++ b/internal/services/domain/types_test.go @@ -0,0 +1,208 @@ +package domain_test + +import ( + "testing" + + domainSDK "github.com/scaleway/scaleway-sdk-go/api/domain/v2beta1" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/domain" +) + +func TestFlattenDomainData(t *testing.T) { + tests := []struct { + name string + data string + recordType domainSDK.RecordType + expected string + }{ + { + name: "SRV record with domain duplication", + data: "0 0 1234 foo.noet-ia.com.noet-ia.com.", + recordType: domainSDK.RecordTypeSRV, + expected: "0 0 1234 foo.noet-ia.", + }, + { + name: "SRV record without domain duplication", + data: "0 0 1234 foo.noet-ia.com", + recordType: domainSDK.RecordTypeSRV, + expected: "0 0 1234 foo.noet-ia.com", + }, + { + name: "SRV record with complex domain duplication", + data: "10 5 8080 service.example.com.example.com.", + recordType: domainSDK.RecordTypeSRV, + expected: "10 5 8080 service.example.", + }, + { + name: "SRV record with no duplication pattern", + data: "0 0 1234 foo.bar.com", + recordType: domainSDK.RecordTypeSRV, + expected: "0 0 1234 foo.bar.com", + }, + { + name: "SRV record with trailing dot only", + data: "0 0 1234 foo.example.com.", + recordType: domainSDK.RecordTypeSRV, + expected: "0 0 1234 foo.example.com.", + }, + { + name: "SRV record with real test case", + data: "0 0 1234 foo.example.com.test-srv-duplication.scaleway-terraform.com.", + recordType: domainSDK.RecordTypeSRV, + expected: "0 0 1234 foo.example.com.", + }, + { + name: "SRV record with Terraform data (3 parts)", + data: "0 1234 foo.example.com", + recordType: domainSDK.RecordTypeSRV, + expected: "0 0 1234 foo.example.com", + }, + { + name: "MX record", + data: "10 mail.example.com", + recordType: domainSDK.RecordTypeMX, + expected: "mail.example.com", + }, + { + name: "TXT record", + data: "\"v=spf1 include:_spf.example.com ~all\"", + recordType: domainSDK.RecordTypeTXT, + expected: "v=spf1 include:_spf.example.com ~all", + }, + { + name: "A record", + data: "192.168.1.1", + recordType: domainSDK.RecordTypeA, + expected: "192.168.1.1", + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + result := domain.FlattenDomainData(tt.data, tt.recordType) + if result != tt.expected { + t.Errorf("flattenDomainData(%q, %v) = %q, want %q", tt.data, tt.recordType, result, tt.expected) + } + }) + } +} + +func TestNormalizeSRVData(t *testing.T) { + tests := []struct { + name string + input string + expected string + }{ + { + name: "SRV with weight 0", + input: "0 0 8080 server.example.com", + expected: "0 0 8080 server.example.com", + }, + { + name: "SRV with weight 1", + input: "0 1 8080 server.example.com", + expected: "0 1 8080 server.example.com", + }, + { + name: "SRV with high weight", + input: "0 100 8080 server.example.com", + expected: "0 100 8080 server.example.com", + }, + { + name: "SRV with priority 10", + input: "10 0 8080 server.example.com", + expected: "10 0 8080 server.example.com", + }, + { + name: "SRV with port 443", + input: "0 0 443 server.example.com", + expected: "0 0 443 server.example.com", + }, + { + name: "SRV with complex target", + input: "0 0 8080 server.subdomain.example.com", + expected: "0 0 8080 server.subdomain", + }, + { + name: "SRV with trailing dot", + input: "0 0 8080 server.example.com.", + expected: "0 0 8080 server.example.com.", + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + result := domain.NormalizeSRVData(tt.input) + if result != tt.expected { + t.Errorf("normalizeSRVData(%q) = %q, want %q", tt.input, result, tt.expected) + } + }) + } +} + +func TestRemoveZoneDomainSuffix(t *testing.T) { + tests := []struct { + name string + input string + expected string + }{ + { + name: "simple domain", + input: "server.example.com", + expected: "server.example.com", + }, + { + name: "with trailing dot", + input: "server.example.com.", + expected: "server.example.com.", + }, + { + name: "with zone domain duplication", + input: "server.example.com.zone.tld", + expected: "server.example", + }, + { + name: "with zone domain duplication and trailing dot", + input: "server.example.com.zone.tld.", + expected: "server.example.", + }, + { + name: "with complex zone domain duplication", + input: "server.example.com.subdomain.zone.tld", + expected: "server.example.com", + }, + { + name: "with complex zone domain duplication and trailing dot", + input: "server.example.com.subdomain.zone.tld.", + expected: "server.example.com.", + }, + { + name: "no domain duplication pattern", + input: "server.example.com.other.tld", + expected: "server.example", + }, + { + name: "no domain duplication pattern with trailing dot", + input: "server.example.com.other.tld.", + expected: "server.example.", + }, + { + name: "single word", + input: "server", + expected: "server", + }, + { + name: "single word with trailing dot", + input: "server.", + expected: "server.", + }, + } + + for _, tt := range tests { + t.Run(tt.name, func(t *testing.T) { + result := domain.RemoveZoneDomainSuffix(tt.input) + if result != tt.expected { + t.Errorf("removeZoneDomainSuffix(%q) = %q, want %q", tt.input, result, tt.expected) + } + }) + } +}