From 57254de25c32c40ab0abb82d40bb85e4818f25e8 Mon Sep 17 00:00:00 2001 From: Kunal Dawar Date: Mon, 27 May 2024 15:16:25 +0530 Subject: [PATCH 1/8] Refactor organization-related pagination method from "Offset pagination" to "Checkpoint pagination". --- internal/auth0/organization/data_source.go | 6 +- internal/auth0/organization/flatten.go | 11 +- .../auth0/organization/resource_members.go | 56 +- .../TestAccDataSourceOrganization.yaml | 566 ++-- .../TestAccOrganizationConnection.yaml | 1128 +++---- .../TestAccOrganizationConnections.yaml | 1924 ++++++------ .../recordings/TestAccOrganizationMember.yaml | 1752 +++++++---- .../TestAccOrganizationMemberRole.yaml | 776 ++--- .../TestAccOrganizationMemberRoles.yaml | 794 ++--- .../TestAccOrganizationMembers.yaml | 2786 +++++++++++------ 10 files changed, 5561 insertions(+), 4238 deletions(-) diff --git a/internal/auth0/organization/data_source.go b/internal/auth0/organization/data_source.go index e0850fa73..0b1f222a4 100644 --- a/internal/auth0/organization/data_source.go +++ b/internal/auth0/organization/data_source.go @@ -129,10 +129,10 @@ func fetchAllOrganizationConnections(ctx context.Context, api *management.Manage func fetchAllOrganizationMembers(ctx context.Context, api *management.Management, organizationID string) ([]string, error) { foundMembers := make([]string, 0) - var page int + var from string for { - members, err := api.Organization.Members(ctx, organizationID, management.Page(page), management.PerPage(100)) + members, err := api.Organization.Members(ctx, organizationID, management.From(from), management.Take(100), management.IncludeFields("user_id")) if err != nil { return nil, err } @@ -145,7 +145,7 @@ func fetchAllOrganizationMembers(ctx context.Context, api *management.Management break } - page++ + from = members.Next } return foundMembers, nil diff --git a/internal/auth0/organization/flatten.go b/internal/auth0/organization/flatten.go index 816df752d..216c33c53 100644 --- a/internal/auth0/organization/flatten.go +++ b/internal/auth0/organization/flatten.go @@ -89,7 +89,7 @@ func flattenOrganizationMemberRole(data *schema.ResourceData, role management.Or return result.ErrorOrNil() } -func flattenOrganizationMembers(data *schema.ResourceData, members []management.OrganizationMember) error { +func flattenOrganizationMembers(data *schema.ResourceData, members []string) error { result := multierror.Append( data.Set("organization_id", data.Id()), data.Set("members", flattenOrganizationMembersSlice(members)), @@ -98,15 +98,10 @@ func flattenOrganizationMembers(data *schema.ResourceData, members []management. return result.ErrorOrNil() } -func flattenOrganizationMembersSlice(members []management.OrganizationMember) []string { +func flattenOrganizationMembersSlice(members []string) []string { if len(members) == 0 { return nil } - flattenedMembers := make([]string, 0) - for _, member := range members { - flattenedMembers = append(flattenedMembers, member.GetUserID()) - } - - return flattenedMembers + return members } diff --git a/internal/auth0/organization/resource_members.go b/internal/auth0/organization/resource_members.go index 6b90bf1ad..b64cf90cc 100644 --- a/internal/auth0/organization/resource_members.go +++ b/internal/auth0/organization/resource_members.go @@ -4,7 +4,6 @@ import ( "context" "fmt" - "github.com/auth0/go-auth0/management" "github.com/google/go-cmp/cmp" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" @@ -49,26 +48,9 @@ func createOrganizationMembers(ctx context.Context, data *schema.ResourceData, m organizationID := data.Get("organization_id").(string) - var alreadyMembers []management.OrganizationMember - var page int - for { - memberList, err := api.Organization.Members( - ctx, - organizationID, - management.Page(page), - management.PerPage(100), - ) - if err != nil { - return diag.FromErr(internalError.HandleAPIError(data, err)) - } - - alreadyMembers = append(alreadyMembers, memberList.Members...) - - if !memberList.HasNext() { - break - } - - page++ + alreadyMembers, err := fetchAllOrganizationMembers(ctx, api, organizationID) + if err != nil { + return diag.FromErr(internalError.HandleAPIError(data, err)) } data.SetId(organizationID) @@ -96,26 +78,9 @@ func createOrganizationMembers(ctx context.Context, data *schema.ResourceData, m func readOrganizationMembers(ctx context.Context, data *schema.ResourceData, meta interface{}) diag.Diagnostics { api := meta.(*config.Config).GetAPI() - var members []management.OrganizationMember - var page int - for { - memberList, err := api.Organization.Members( - ctx, - data.Id(), - management.Page(page), - management.PerPage(100), - ) - if err != nil { - return diag.FromErr(internalError.HandleAPIError(data, err)) - } - - members = append(members, memberList.Members...) - - if !memberList.HasNext() { - break - } - - page++ + members, err := fetchAllOrganizationMembers(ctx, api, data.Id()) + if err != nil { + return diag.FromErr(internalError.HandleAPIError(data, err)) } return diag.FromErr(flattenOrganizationMembers(data, members)) @@ -173,18 +138,13 @@ func deleteOrganizationMembers(ctx context.Context, data *schema.ResourceData, m func guardAgainstErasingUnwantedMembers( organizationID string, - alreadyMembers []management.OrganizationMember, + alreadyMemberIDs []string, memberIDsToAdd []string, ) diag.Diagnostics { - if len(alreadyMembers) == 0 { + if len(alreadyMemberIDs) == 0 { return nil } - alreadyMemberIDs := make([]string, 0) - for _, member := range alreadyMembers { - alreadyMemberIDs = append(alreadyMemberIDs, member.GetUserID()) - } - if cmp.Equal(memberIDsToAdd, alreadyMemberIDs) { return nil } diff --git a/test/data/recordings/TestAccDataSourceOrganization.yaml b/test/data/recordings/TestAccDataSourceOrganization.yaml index 40277e4c3..bf979d1ad 100644 --- a/test/data/recordings/TestAccDataSourceOrganization.yaml +++ b/test/data/recordings/TestAccDataSourceOrganization.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 + - Go-Auth0/1.4.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XXXXXXXXXXXXXXXX method: GET response: @@ -36,7 +36,7 @@ interactions: - application/json; charset=utf-8 status: 404 Not Found code: 404 - duration: 165.69375ms + duration: 303.832583ms - id: 1 request: proto: HTTP/1.1 @@ -55,7 +55,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 + - Go-Auth0/1.4.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users method: POST response: @@ -66,13 +66,13 @@ interactions: trailer: {} content_length: 605 uncompressed: false - body: '{"created_at":"2023-11-09T12:30:38.436Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"654cd0ee363ee12f2da85472","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-11-09T12:30:38.436Z","user_id":"auth0|654cd0ee363ee12f2da85472","username":"testaccdatasourceorganization"}' + body: '{"created_at":"2024-05-27T09:43:02.188Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665455a6971dfa41d42ed3fe","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:43:02.188Z","user_id":"auth0|665455a6971dfa41d42ed3fe","username":"testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 387.624041ms + duration: 462.531458ms - id: 2 request: proto: HTTP/1.1 @@ -91,8 +91,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C654cd0ee363ee12f2da85472 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665455a6971dfa41d42ed3fe method: GET response: proto: HTTP/2.0 @@ -102,13 +102,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-11-09T12:30:38.436Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"654cd0ee363ee12f2da85472","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-11-09T12:30:38.436Z","user_id":"auth0|654cd0ee363ee12f2da85472","username":"testaccdatasourceorganization"}' + body: '{"created_at":"2024-05-27T09:43:02.188Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665455a6971dfa41d42ed3fe","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:43:02.188Z","user_id":"auth0|665455a6971dfa41d42ed3fe","username":"testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 166.752084ms + duration: 300.074417ms - id: 3 request: proto: HTTP/1.1 @@ -127,7 +127,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 + - Go-Auth0/1.4.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections method: POST response: @@ -138,13 +138,13 @@ interactions: trailer: {} content_length: 568 uncompressed: false - body: '{"id":"con_qlmnK8guONVl2P0I","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' + body: '{"id":"con_v7jQF3OTsml4M0ZC","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 107.704417ms + duration: 367.0945ms - id: 4 request: proto: HTTP/1.1 @@ -163,8 +163,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qlmnK8guONVl2P0I + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_v7jQF3OTsml4M0ZC method: GET response: proto: HTTP/2.0 @@ -174,13 +174,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_qlmnK8guONVl2P0I","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' + body: '{"id":"con_v7jQF3OTsml4M0ZC","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 128.05575ms + duration: 314.417375ms - id: 5 request: proto: HTTP/1.1 @@ -199,7 +199,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 + - Go-Auth0/1.4.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations method: POST response: @@ -210,13 +210,13 @@ interactions: trailer: {} content_length: 130 uncompressed: false - body: '{"name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization","id":"org_o1PqSDYybA2dZKzK"}' + body: '{"id":"org_mgU9zXuLYXCBETku","display_name":"Acme Inc. testaccdatasourceorganization","name":"test-testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 146.179083ms + duration: 297.053166ms - id: 6 request: proto: HTTP/1.1 @@ -235,8 +235,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku method: GET response: proto: HTTP/2.0 @@ -246,13 +246,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_o1PqSDYybA2dZKzK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"id":"org_mgU9zXuLYXCBETku","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 105.65825ms + duration: 303.4005ms - id: 7 request: proto: HTTP/1.1 @@ -265,14 +265,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_qlmnK8guONVl2P0I","assign_membership_on_login":false} + {"connection_id":"con_v7jQF3OTsml4M0ZC","assign_membership_on_login":false} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/enabled_connections + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/enabled_connections method: POST response: proto: HTTP/2.0 @@ -280,15 +280,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 175 + content_length: 197 uncompressed: false - body: '{"connection_id":"con_qlmnK8guONVl2P0I","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' + body: '{"connection_id":"con_v7jQF3OTsml4M0ZC","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 114.620625ms + duration: 302.645208ms - id: 8 request: proto: HTTP/1.1 @@ -307,8 +307,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/enabled_connections/con_qlmnK8guONVl2P0I + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/enabled_connections/con_v7jQF3OTsml4M0ZC method: GET response: proto: HTTP/2.0 @@ -318,13 +318,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_qlmnK8guONVl2P0I","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' + body: '{"connection_id":"con_v7jQF3OTsml4M0ZC","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 142.873375ms + duration: 397.7185ms - id: 9 request: proto: HTTP/1.1 @@ -337,14 +337,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|654cd0ee363ee12f2da85472"]} + {"members":["auth0|665455a6971dfa41d42ed3fe"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/members + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/members method: POST response: proto: HTTP/2.0 @@ -360,7 +360,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 156.748417ms + duration: 316.479208ms - id: 10 request: proto: HTTP/1.1 @@ -379,8 +379,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -390,13 +390,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|654cd0ee363ee12f2da85472","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|665455a6971dfa41d42ed3fe","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 106.875917ms + duration: 327.272459ms - id: 11 request: proto: HTTP/1.1 @@ -415,7 +415,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 + - Go-Auth0/1.4.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/name/test-testaccdatasourceorganization method: GET response: @@ -426,13 +426,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_o1PqSDYybA2dZKzK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"id":"org_mgU9zXuLYXCBETku","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 83.2505ms + duration: 275.898542ms - id: 12 request: proto: HTTP/1.1 @@ -451,8 +451,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -462,13 +462,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_qlmnK8guONVl2P0I","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_v7jQF3OTsml4M0ZC","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 96.724125ms + duration: 289.199041ms - id: 13 request: proto: HTTP/1.1 @@ -487,8 +487,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -498,13 +498,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|654cd0ee363ee12f2da85472","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|665455a6971dfa41d42ed3fe"}],"next":"MjAyNC0wNS0yNyAwOTo0MzowNC44NDgwMDBVVEMsYXV0aDB8NjY1NDU1YTY5NzFkZmE0MWQ0MmVkM2Zl"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 97.8565ms + duration: 291.41475ms - id: 14 request: proto: HTTP/1.1 @@ -523,8 +523,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/name/test-testaccdatasourceorganization + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTo0MzowNC44NDgwMDBVVEMsYXV0aDB8NjY1NDU1YTY5NzFkZmE0MWQ0MmVkM2Zl&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -532,15 +532,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_o1PqSDYybA2dZKzK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 96.267041ms + duration: 299.735167ms - id: 15 request: proto: HTTP/1.1 @@ -559,8 +559,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/name/test-testaccdatasourceorganization method: GET response: proto: HTTP/2.0 @@ -570,13 +570,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_qlmnK8guONVl2P0I","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_mgU9zXuLYXCBETku","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 88.474542ms + duration: 288.787334ms - id: 16 request: proto: HTTP/1.1 @@ -595,8 +595,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -606,13 +606,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|654cd0ee363ee12f2da85472","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_v7jQF3OTsml4M0ZC","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 92.271917ms + duration: 325.50625ms - id: 17 request: proto: HTTP/1.1 @@ -631,8 +631,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C654cd0ee363ee12f2da85472 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -642,13 +642,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-11-09T12:30:38.436Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"654cd0ee363ee12f2da85472","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-11-09T12:30:38.436Z","user_id":"auth0|654cd0ee363ee12f2da85472","username":"testaccdatasourceorganization"}' + body: '{"members":[{"user_id":"auth0|665455a6971dfa41d42ed3fe"}],"next":"MjAyNC0wNS0yNyAwOTo0MzowNC44NDgwMDBVVEMsYXV0aDB8NjY1NDU1YTY5NzFkZmE0MWQ0MmVkM2Zl"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.321125ms + duration: 318.18775ms - id: 18 request: proto: HTTP/1.1 @@ -667,8 +667,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qlmnK8guONVl2P0I + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTo0MzowNC44NDgwMDBVVEMsYXV0aDB8NjY1NDU1YTY5NzFkZmE0MWQ0MmVkM2Zl&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -676,15 +676,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"con_qlmnK8guONVl2P0I","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 89.024917ms + duration: 321.623584ms - id: 19 request: proto: HTTP/1.1 @@ -703,8 +703,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665455a6971dfa41d42ed3fe method: GET response: proto: HTTP/2.0 @@ -714,13 +714,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_o1PqSDYybA2dZKzK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"created_at":"2024-05-27T09:43:02.188Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665455a6971dfa41d42ed3fe","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:43:02.188Z","user_id":"auth0|665455a6971dfa41d42ed3fe","username":"testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 82.796959ms + duration: 279.936209ms - id: 20 request: proto: HTTP/1.1 @@ -739,8 +739,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/enabled_connections/con_qlmnK8guONVl2P0I + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_v7jQF3OTsml4M0ZC method: GET response: proto: HTTP/2.0 @@ -750,13 +750,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_qlmnK8guONVl2P0I","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' + body: '{"id":"con_v7jQF3OTsml4M0ZC","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.213292ms + duration: 288.677ms - id: 21 request: proto: HTTP/1.1 @@ -775,8 +775,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku method: GET response: proto: HTTP/2.0 @@ -786,13 +786,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|654cd0ee363ee12f2da85472","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"id":"org_mgU9zXuLYXCBETku","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 102.376666ms + duration: 360.165958ms - id: 22 request: proto: HTTP/1.1 @@ -811,8 +811,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/name/test-testaccdatasourceorganization + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/enabled_connections/con_v7jQF3OTsml4M0ZC method: GET response: proto: HTTP/2.0 @@ -822,13 +822,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_o1PqSDYybA2dZKzK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"connection_id":"con_v7jQF3OTsml4M0ZC","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 122.452666ms + duration: 386.765375ms - id: 23 request: proto: HTTP/1.1 @@ -847,8 +847,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -858,13 +858,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_qlmnK8guONVl2P0I","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"members":[{"user_id":"auth0|665455a6971dfa41d42ed3fe","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 106.37625ms + duration: 352.050125ms - id: 24 request: proto: HTTP/1.1 @@ -883,8 +883,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/name/test-testaccdatasourceorganization method: GET response: proto: HTTP/2.0 @@ -894,13 +894,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|654cd0ee363ee12f2da85472","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"id":"org_mgU9zXuLYXCBETku","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 84.583875ms + duration: 348.476459ms - id: 25 request: proto: HTTP/1.1 @@ -919,8 +919,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/name/test-testaccdatasourceorganization + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -930,13 +930,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_o1PqSDYybA2dZKzK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"enabled_connections":[{"connection_id":"con_v7jQF3OTsml4M0ZC","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 104.06725ms + duration: 340.680167ms - id: 26 request: proto: HTTP/1.1 @@ -955,8 +955,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -966,13 +966,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_qlmnK8guONVl2P0I","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"members":[{"user_id":"auth0|665455a6971dfa41d42ed3fe"}],"next":"MjAyNC0wNS0yNyAwOTo0MzowNC44NDgwMDBVVEMsYXV0aDB8NjY1NDU1YTY5NzFkZmE0MWQ0MmVkM2Zl"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 104.220792ms + duration: 350.943417ms - id: 27 request: proto: HTTP/1.1 @@ -991,8 +991,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTo0MzowNC44NDgwMDBVVEMsYXV0aDB8NjY1NDU1YTY5NzFkZmE0MWQ0MmVkM2Zl&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1000,15 +1000,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|654cd0ee363ee12f2da85472","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":100,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.068292ms + duration: 353.846458ms - id: 28 request: proto: HTTP/1.1 @@ -1027,8 +1027,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C654cd0ee363ee12f2da85472 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665455a6971dfa41d42ed3fe method: GET response: proto: HTTP/2.0 @@ -1038,13 +1038,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-11-09T12:30:38.436Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"654cd0ee363ee12f2da85472","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-11-09T12:30:38.436Z","user_id":"auth0|654cd0ee363ee12f2da85472","username":"testaccdatasourceorganization"}' + body: '{"created_at":"2024-05-27T09:43:02.188Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665455a6971dfa41d42ed3fe","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:43:02.188Z","user_id":"auth0|665455a6971dfa41d42ed3fe","username":"testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 104.772ms + duration: 322.231583ms - id: 29 request: proto: HTTP/1.1 @@ -1063,8 +1063,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qlmnK8guONVl2P0I + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_v7jQF3OTsml4M0ZC method: GET response: proto: HTTP/2.0 @@ -1074,13 +1074,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_qlmnK8guONVl2P0I","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' + body: '{"id":"con_v7jQF3OTsml4M0ZC","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 96.194375ms + duration: 305.395459ms - id: 30 request: proto: HTTP/1.1 @@ -1099,8 +1099,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku method: GET response: proto: HTTP/2.0 @@ -1110,13 +1110,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_o1PqSDYybA2dZKzK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"id":"org_mgU9zXuLYXCBETku","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 95.643917ms + duration: 465.690583ms - id: 31 request: proto: HTTP/1.1 @@ -1135,8 +1135,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/enabled_connections/con_qlmnK8guONVl2P0I + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/enabled_connections/con_v7jQF3OTsml4M0ZC method: GET response: proto: HTTP/2.0 @@ -1146,13 +1146,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_qlmnK8guONVl2P0I","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' + body: '{"connection_id":"con_v7jQF3OTsml4M0ZC","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 100.63375ms + duration: 289.677583ms - id: 32 request: proto: HTTP/1.1 @@ -1171,8 +1171,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1182,13 +1182,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|654cd0ee363ee12f2da85472","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|665455a6971dfa41d42ed3fe","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 101.719459ms + duration: 303.092917ms - id: 33 request: proto: HTTP/1.1 @@ -1207,8 +1207,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku method: GET response: proto: HTTP/2.0 @@ -1218,13 +1218,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_o1PqSDYybA2dZKzK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"id":"org_mgU9zXuLYXCBETku","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 84.451083ms + duration: 298.00775ms - id: 34 request: proto: HTTP/1.1 @@ -1243,8 +1243,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1254,13 +1254,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_qlmnK8guONVl2P0I","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_v7jQF3OTsml4M0ZC","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 131.364292ms + duration: 291.68975ms - id: 35 request: proto: HTTP/1.1 @@ -1279,8 +1279,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1290,13 +1290,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|654cd0ee363ee12f2da85472","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|665455a6971dfa41d42ed3fe"}],"next":"MjAyNC0wNS0yNyAwOTo0MzowNC44NDgwMDBVVEMsYXV0aDB8NjY1NDU1YTY5NzFkZmE0MWQ0MmVkM2Zl"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.971708ms + duration: 282.835042ms - id: 36 request: proto: HTTP/1.1 @@ -1315,8 +1315,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTo0MzowNC44NDgwMDBVVEMsYXV0aDB8NjY1NDU1YTY5NzFkZmE0MWQ0MmVkM2Zl&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1324,15 +1324,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_o1PqSDYybA2dZKzK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 92.315958ms + duration: 359.884042ms - id: 37 request: proto: HTTP/1.1 @@ -1351,8 +1351,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku method: GET response: proto: HTTP/2.0 @@ -1362,13 +1362,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_qlmnK8guONVl2P0I","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_mgU9zXuLYXCBETku","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 100.475125ms + duration: 413.235958ms - id: 38 request: proto: HTTP/1.1 @@ -1387,8 +1387,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1398,13 +1398,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|654cd0ee363ee12f2da85472","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_v7jQF3OTsml4M0ZC","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.476083ms + duration: 299.704667ms - id: 39 request: proto: HTTP/1.1 @@ -1423,8 +1423,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1434,13 +1434,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_o1PqSDYybA2dZKzK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"members":[{"user_id":"auth0|665455a6971dfa41d42ed3fe"}],"next":"MjAyNC0wNS0yNyAwOTo0MzowNC44NDgwMDBVVEMsYXV0aDB8NjY1NDU1YTY5NzFkZmE0MWQ0MmVkM2Zl"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 88.830417ms + duration: 291.990791ms - id: 40 request: proto: HTTP/1.1 @@ -1459,8 +1459,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTo0MzowNC44NDgwMDBVVEMsYXV0aDB8NjY1NDU1YTY5NzFkZmE0MWQ0MmVkM2Zl&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1468,15 +1468,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_qlmnK8guONVl2P0I","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.626083ms + duration: 285.079708ms - id: 41 request: proto: HTTP/1.1 @@ -1495,8 +1495,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665455a6971dfa41d42ed3fe method: GET response: proto: HTTP/2.0 @@ -1506,13 +1506,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|654cd0ee363ee12f2da85472","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"created_at":"2024-05-27T09:43:02.188Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665455a6971dfa41d42ed3fe","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:43:02.188Z","user_id":"auth0|665455a6971dfa41d42ed3fe","username":"testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 130.32525ms + duration: 307.069417ms - id: 42 request: proto: HTTP/1.1 @@ -1531,8 +1531,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C654cd0ee363ee12f2da85472 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_v7jQF3OTsml4M0ZC method: GET response: proto: HTTP/2.0 @@ -1542,13 +1542,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-11-09T12:30:38.436Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"654cd0ee363ee12f2da85472","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-11-09T12:30:38.436Z","user_id":"auth0|654cd0ee363ee12f2da85472","username":"testaccdatasourceorganization"}' + body: '{"id":"con_v7jQF3OTsml4M0ZC","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 94.248417ms + duration: 340.422042ms - id: 43 request: proto: HTTP/1.1 @@ -1567,8 +1567,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qlmnK8guONVl2P0I + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku method: GET response: proto: HTTP/2.0 @@ -1578,13 +1578,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_qlmnK8guONVl2P0I","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' + body: '{"id":"org_mgU9zXuLYXCBETku","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 95.519666ms + duration: 298.301834ms - id: 44 request: proto: HTTP/1.1 @@ -1603,8 +1603,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/enabled_connections/con_v7jQF3OTsml4M0ZC method: GET response: proto: HTTP/2.0 @@ -1614,13 +1614,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_o1PqSDYybA2dZKzK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"connection_id":"con_v7jQF3OTsml4M0ZC","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 96.90375ms + duration: 275.377375ms - id: 45 request: proto: HTTP/1.1 @@ -1639,8 +1639,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/enabled_connections/con_qlmnK8guONVl2P0I + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1650,13 +1650,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_qlmnK8guONVl2P0I","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' + body: '{"members":[{"user_id":"auth0|665455a6971dfa41d42ed3fe","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 93.739083ms + duration: 309.752417ms - id: 46 request: proto: HTTP/1.1 @@ -1675,8 +1675,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku method: GET response: proto: HTTP/2.0 @@ -1686,13 +1686,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|654cd0ee363ee12f2da85472","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"id":"org_mgU9zXuLYXCBETku","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 138.798584ms + duration: 280.623916ms - id: 47 request: proto: HTTP/1.1 @@ -1711,8 +1711,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1722,13 +1722,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_o1PqSDYybA2dZKzK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"enabled_connections":[{"connection_id":"con_v7jQF3OTsml4M0ZC","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 101.447042ms + duration: 290.477709ms - id: 48 request: proto: HTTP/1.1 @@ -1747,8 +1747,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1758,13 +1758,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_qlmnK8guONVl2P0I","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"members":[{"user_id":"auth0|665455a6971dfa41d42ed3fe"}],"next":"MjAyNC0wNS0yNyAwOTo0MzowNC44NDgwMDBVVEMsYXV0aDB8NjY1NDU1YTY5NzFkZmE0MWQ0MmVkM2Zl"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 102.193292ms + duration: 302.045792ms - id: 49 request: proto: HTTP/1.1 @@ -1783,8 +1783,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTo0MzowNC44NDgwMDBVVEMsYXV0aDB8NjY1NDU1YTY5NzFkZmE0MWQ0MmVkM2Zl&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1792,124 +1792,16 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|654cd0ee363ee12f2da85472","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":100,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 92.514292ms + duration: 311.143875ms - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_o1PqSDYybA2dZKzK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 86.778542ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/enabled_connections?include_totals=true&page=0&per_page=100 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_qlmnK8guONVl2P0I","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 114.77875ms - - id: 52 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 5 - transfer_encoding: [] - trailer: {} - host: terraform-provider-auth0-dev.eu.auth0.com - remote_addr: "" - request_uri: "" - body: | - null - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/members?include_totals=true&page=0&per_page=100 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|654cd0ee363ee12f2da85472","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":100,"total":1}' - headers: - Content-Type: - - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 101.036ms - - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -1921,14 +1813,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|654cd0ee363ee12f2da85472"]} + {"members":["auth0|665455a6971dfa41d42ed3fe"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/members + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/members method: DELETE response: proto: HTTP/2.0 @@ -1944,8 +1836,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 97.854083ms - - id: 54 + duration: 306.411875ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -1962,8 +1854,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK/enabled_connections/con_qlmnK8guONVl2P0I + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku/enabled_connections/con_v7jQF3OTsml4M0ZC method: DELETE response: proto: HTTP/2.0 @@ -1979,8 +1871,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 108.326541ms - - id: 55 + duration: 595.141ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -1997,8 +1889,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_o1PqSDYybA2dZKzK + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mgU9zXuLYXCBETku method: DELETE response: proto: HTTP/2.0 @@ -2014,8 +1906,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 95.901208ms - - id: 56 + duration: 309.180667ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2032,8 +1924,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_qlmnK8guONVl2P0I + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_v7jQF3OTsml4M0ZC method: DELETE response: proto: HTTP/2.0 @@ -2043,14 +1935,14 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2023-11-09T12:30:47.191Z"}' + body: '{"deleted_at":"2024-05-27T09:43:22.890Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 129.508583ms - - id: 57 + duration: 316.600375ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2067,8 +1959,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.2.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C654cd0ee363ee12f2da85472 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665455a6971dfa41d42ed3fe method: DELETE response: proto: HTTP/2.0 @@ -2084,4 +1976,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 324.137625ms + duration: 346.503292ms diff --git a/test/data/recordings/TestAccOrganizationConnection.yaml b/test/data/recordings/TestAccOrganizationConnection.yaml index a881ac701..8951d7038 100644 --- a/test/data/recordings/TestAccOrganizationConnection.yaml +++ b/test/data/recordings/TestAccOrganizationConnection.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.4.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections method: POST response: @@ -30,13 +30,13 @@ interactions: trailer: {} content_length: 572 uncompressed: false - body: '{"id":"con_kSmtGDoqQZJnQXwY","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_jHyITBwLmg3Ym74z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 550.445375ms + duration: 309.981875ms - id: 1 request: proto: HTTP/1.1 @@ -55,8 +55,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_jHyITBwLmg3Ym74z method: GET response: proto: HTTP/2.0 @@ -66,13 +66,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_kSmtGDoqQZJnQXwY","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_jHyITBwLmg3Ym74z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 450.420458ms + duration: 281.733542ms - id: 2 request: proto: HTTP/1.1 @@ -91,7 +91,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.4.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections method: POST response: @@ -102,13 +102,13 @@ interactions: trailer: {} content_length: 572 uncompressed: false - body: '{"id":"con_mqNWICASGv8ApKru","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_YdILkmHbPlVw9JvO","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 528.943792ms + duration: 318.565ms - id: 3 request: proto: HTTP/1.1 @@ -127,8 +127,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mqNWICASGv8ApKru + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YdILkmHbPlVw9JvO method: GET response: proto: HTTP/2.0 @@ -138,13 +138,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mqNWICASGv8ApKru","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_YdILkmHbPlVw9JvO","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 217.926ms + duration: 288.933583ms - id: 4 request: proto: HTTP/1.1 @@ -163,7 +163,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.4.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations method: POST response: @@ -174,13 +174,13 @@ interactions: trailer: {} content_length: 124 uncompressed: false - body: '{"name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection","id":"org_RMHyUPzcaccyanue"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","display_name":"testaccorganizationconnection","name":"some-org-testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 284.190209ms + duration: 290.003375ms - id: 5 request: proto: HTTP/1.1 @@ -199,8 +199,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -210,13 +210,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 465.653125ms + duration: 282.753167ms - id: 6 request: proto: HTTP/1.1 @@ -229,14 +229,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":false} + {"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":false} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections method: POST response: proto: HTTP/2.0 @@ -244,15 +244,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 177 + content_length: 199 uncompressed: false - body: '{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 397.911708ms + duration: 308.043333ms - id: 7 request: proto: HTTP/1.1 @@ -271,8 +271,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections/con_jHyITBwLmg3Ym74z method: GET response: proto: HTTP/2.0 @@ -282,13 +282,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 233.691375ms + duration: 296.523417ms - id: 8 request: proto: HTTP/1.1 @@ -307,8 +307,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -318,13 +318,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 499.791625ms + duration: 284.115791ms - id: 9 request: proto: HTTP/1.1 @@ -343,8 +343,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -354,13 +354,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 314.801792ms + duration: 315.573ms - id: 10 request: proto: HTTP/1.1 @@ -379,8 +379,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -388,15 +388,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 250.1735ms + duration: 282.8675ms - id: 11 request: proto: HTTP/1.1 @@ -415,8 +415,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -426,13 +426,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 211.421042ms + duration: 275.226625ms - id: 12 request: proto: HTTP/1.1 @@ -451,8 +451,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -462,13 +462,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 263.257959ms + duration: 291.454084ms - id: 13 request: proto: HTTP/1.1 @@ -487,8 +487,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -496,15 +496,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 179.907958ms + duration: 282.119584ms - id: 14 request: proto: HTTP/1.1 @@ -523,8 +523,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_jHyITBwLmg3Ym74z method: GET response: proto: HTTP/2.0 @@ -534,13 +534,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_kSmtGDoqQZJnQXwY","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_jHyITBwLmg3Ym74z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 504.414209ms + duration: 278.548291ms - id: 15 request: proto: HTTP/1.1 @@ -559,8 +559,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mqNWICASGv8ApKru + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YdILkmHbPlVw9JvO method: GET response: proto: HTTP/2.0 @@ -570,13 +570,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mqNWICASGv8ApKru","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_YdILkmHbPlVw9JvO","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.534919083s + duration: 276.820959ms - id: 16 request: proto: HTTP/1.1 @@ -595,8 +595,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -606,13 +606,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 387.325041ms + duration: 279.07875ms - id: 17 request: proto: HTTP/1.1 @@ -631,8 +631,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections/con_jHyITBwLmg3Ym74z method: GET response: proto: HTTP/2.0 @@ -642,13 +642,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 172.504167ms + duration: 293.492667ms - id: 18 request: proto: HTTP/1.1 @@ -667,8 +667,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -678,13 +678,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 210.373791ms + duration: 286.929625ms - id: 19 request: proto: HTTP/1.1 @@ -703,8 +703,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -714,13 +714,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 455.370792ms + duration: 290.613792ms - id: 20 request: proto: HTTP/1.1 @@ -739,8 +739,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -748,15 +748,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 221.365625ms + duration: 281.328375ms - id: 21 request: proto: HTTP/1.1 @@ -775,8 +775,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_jHyITBwLmg3Ym74z method: GET response: proto: HTTP/2.0 @@ -786,13 +786,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_kSmtGDoqQZJnQXwY","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_jHyITBwLmg3Ym74z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 408.196791ms + duration: 285.088041ms - id: 22 request: proto: HTTP/1.1 @@ -811,8 +811,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mqNWICASGv8ApKru + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YdILkmHbPlVw9JvO method: GET response: proto: HTTP/2.0 @@ -822,13 +822,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mqNWICASGv8ApKru","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_YdILkmHbPlVw9JvO","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 484.792041ms + duration: 328.964291ms - id: 23 request: proto: HTTP/1.1 @@ -847,8 +847,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -858,13 +858,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 243.861875ms + duration: 484.324584ms - id: 24 request: proto: HTTP/1.1 @@ -883,8 +883,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections/con_jHyITBwLmg3Ym74z method: GET response: proto: HTTP/2.0 @@ -894,13 +894,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 248.894917ms + duration: 438.797167ms - id: 25 request: proto: HTTP/1.1 @@ -919,8 +919,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections/con_jHyITBwLmg3Ym74z method: PATCH response: proto: HTTP/2.0 @@ -930,13 +930,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.073459ms + duration: 353.343583ms - id: 26 request: proto: HTTP/1.1 @@ -955,8 +955,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections/con_jHyITBwLmg3Ym74z method: GET response: proto: HTTP/2.0 @@ -966,13 +966,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 527.842125ms + duration: 332.258458ms - id: 27 request: proto: HTTP/1.1 @@ -991,8 +991,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -1002,13 +1002,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 323.482333ms + duration: 345.112166ms - id: 28 request: proto: HTTP/1.1 @@ -1027,8 +1027,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1038,13 +1038,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 238.802167ms + duration: 357.362583ms - id: 29 request: proto: HTTP/1.1 @@ -1063,8 +1063,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1072,15 +1072,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.995167ms + duration: 419.787167ms - id: 30 request: proto: HTTP/1.1 @@ -1099,8 +1099,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -1110,13 +1110,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.319208ms + duration: 288.390375ms - id: 31 request: proto: HTTP/1.1 @@ -1135,8 +1135,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1146,13 +1146,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 387.786625ms + duration: 299.773625ms - id: 32 request: proto: HTTP/1.1 @@ -1171,8 +1171,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1180,15 +1180,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 183.876791ms + duration: 300.3085ms - id: 33 request: proto: HTTP/1.1 @@ -1207,8 +1207,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_jHyITBwLmg3Ym74z method: GET response: proto: HTTP/2.0 @@ -1218,13 +1218,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_kSmtGDoqQZJnQXwY","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_jHyITBwLmg3Ym74z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 162.542167ms + duration: 295.450791ms - id: 34 request: proto: HTTP/1.1 @@ -1243,8 +1243,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mqNWICASGv8ApKru + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YdILkmHbPlVw9JvO method: GET response: proto: HTTP/2.0 @@ -1254,13 +1254,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mqNWICASGv8ApKru","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_YdILkmHbPlVw9JvO","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 154.351083ms + duration: 291.257916ms - id: 35 request: proto: HTTP/1.1 @@ -1279,8 +1279,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -1290,13 +1290,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 200.975458ms + duration: 303.662459ms - id: 36 request: proto: HTTP/1.1 @@ -1315,8 +1315,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections/con_jHyITBwLmg3Ym74z method: GET response: proto: HTTP/2.0 @@ -1326,13 +1326,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 497.372709ms + duration: 284.911958ms - id: 37 request: proto: HTTP/1.1 @@ -1351,8 +1351,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -1362,13 +1362,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 386.737833ms + duration: 292.264125ms - id: 38 request: proto: HTTP/1.1 @@ -1387,8 +1387,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1398,13 +1398,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 242.946459ms + duration: 445.583125ms - id: 39 request: proto: HTTP/1.1 @@ -1423,8 +1423,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1432,15 +1432,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 165.481959ms + duration: 310.94975ms - id: 40 request: proto: HTTP/1.1 @@ -1459,8 +1459,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_jHyITBwLmg3Ym74z method: GET response: proto: HTTP/2.0 @@ -1470,13 +1470,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_kSmtGDoqQZJnQXwY","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_jHyITBwLmg3Ym74z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 267.85375ms + duration: 308.783041ms - id: 41 request: proto: HTTP/1.1 @@ -1495,8 +1495,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mqNWICASGv8ApKru + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YdILkmHbPlVw9JvO method: GET response: proto: HTTP/2.0 @@ -1506,13 +1506,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mqNWICASGv8ApKru","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_YdILkmHbPlVw9JvO","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 225.726541ms + duration: 288.899084ms - id: 42 request: proto: HTTP/1.1 @@ -1531,8 +1531,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -1542,13 +1542,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 253.593792ms + duration: 284.651208ms - id: 43 request: proto: HTTP/1.1 @@ -1567,8 +1567,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections/con_jHyITBwLmg3Ym74z method: GET response: proto: HTTP/2.0 @@ -1578,13 +1578,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 244.699167ms + duration: 290.978333ms - id: 44 request: proto: HTTP/1.1 @@ -1597,14 +1597,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_mqNWICASGv8ApKru","assign_membership_on_login":true} + {"connection_id":"con_YdILkmHbPlVw9JvO","assign_membership_on_login":true} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections method: POST response: proto: HTTP/2.0 @@ -1612,15 +1612,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 176 + content_length: 198 uncompressed: false - body: '{"connection_id":"con_mqNWICASGv8ApKru","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_YdILkmHbPlVw9JvO","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 300.098584ms + duration: 288.671625ms - id: 45 request: proto: HTTP/1.1 @@ -1639,8 +1639,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections/con_mqNWICASGv8ApKru + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections/con_YdILkmHbPlVw9JvO method: GET response: proto: HTTP/2.0 @@ -1650,13 +1650,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_mqNWICASGv8ApKru","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_YdILkmHbPlVw9JvO","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 250.234209ms + duration: 305.134125ms - id: 46 request: proto: HTTP/1.1 @@ -1675,8 +1675,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -1686,13 +1686,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 454.921625ms + duration: 311.336667ms - id: 47 request: proto: HTTP/1.1 @@ -1711,8 +1711,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1722,13 +1722,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_mqNWICASGv8ApKru","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_YdILkmHbPlVw9JvO","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 263.985459ms + duration: 299.565875ms - id: 48 request: proto: HTTP/1.1 @@ -1747,8 +1747,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1756,15 +1756,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 319.840459ms + duration: 284.182916ms - id: 49 request: proto: HTTP/1.1 @@ -1783,8 +1783,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -1794,13 +1794,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 458.312375ms + duration: 307.437917ms - id: 50 request: proto: HTTP/1.1 @@ -1819,8 +1819,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1830,13 +1830,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_mqNWICASGv8ApKru","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_YdILkmHbPlVw9JvO","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 368.979042ms + duration: 308.663ms - id: 51 request: proto: HTTP/1.1 @@ -1855,8 +1855,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1864,15 +1864,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 271.180166ms + duration: 296.693541ms - id: 52 request: proto: HTTP/1.1 @@ -1891,8 +1891,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_jHyITBwLmg3Ym74z method: GET response: proto: HTTP/2.0 @@ -1902,13 +1902,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_kSmtGDoqQZJnQXwY","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_jHyITBwLmg3Ym74z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 266.240292ms + duration: 312.81825ms - id: 53 request: proto: HTTP/1.1 @@ -1927,8 +1927,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mqNWICASGv8ApKru + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YdILkmHbPlVw9JvO method: GET response: proto: HTTP/2.0 @@ -1938,13 +1938,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mqNWICASGv8ApKru","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_YdILkmHbPlVw9JvO","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.72ms + duration: 286.34175ms - id: 54 request: proto: HTTP/1.1 @@ -1963,8 +1963,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -1974,13 +1974,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 272.804792ms + duration: 293.856125ms - id: 55 request: proto: HTTP/1.1 @@ -1999,8 +1999,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections/con_jHyITBwLmg3Ym74z method: GET response: proto: HTTP/2.0 @@ -2010,13 +2010,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 239.728708ms + duration: 317.50225ms - id: 56 request: proto: HTTP/1.1 @@ -2035,8 +2035,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections/con_mqNWICASGv8ApKru + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections/con_YdILkmHbPlVw9JvO method: GET response: proto: HTTP/2.0 @@ -2046,13 +2046,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_mqNWICASGv8ApKru","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_YdILkmHbPlVw9JvO","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 454.691333ms + duration: 651.78075ms - id: 57 request: proto: HTTP/1.1 @@ -2071,8 +2071,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -2082,13 +2082,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 367.089084ms + duration: 287.86925ms - id: 58 request: proto: HTTP/1.1 @@ -2107,8 +2107,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2118,13 +2118,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_mqNWICASGv8ApKru","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_YdILkmHbPlVw9JvO","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 221.883417ms + duration: 330.188667ms - id: 59 request: proto: HTTP/1.1 @@ -2143,8 +2143,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2152,15 +2152,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 247.106125ms + duration: 297.4705ms - id: 60 request: proto: HTTP/1.1 @@ -2179,8 +2179,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections/con_jHyITBwLmg3Ym74z method: GET response: proto: HTTP/2.0 @@ -2190,13 +2190,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_kSmtGDoqQZJnQXwY","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.32775ms + duration: 353.713958ms - id: 61 request: proto: HTTP/1.1 @@ -2215,8 +2215,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections/con_mqNWICASGv8ApKru + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections/con_YdILkmHbPlVw9JvO method: GET response: proto: HTTP/2.0 @@ -2226,13 +2226,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_mqNWICASGv8ApKru","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_YdILkmHbPlVw9JvO","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 813.483125ms + duration: 357.412792ms - id: 62 request: proto: HTTP/1.1 @@ -2251,8 +2251,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_jHyITBwLmg3Ym74z method: GET response: proto: HTTP/2.0 @@ -2262,13 +2262,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"id":"con_jHyITBwLmg3Ym74z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 827.535708ms + duration: 353.716084ms - id: 63 request: proto: HTTP/1.1 @@ -2287,8 +2287,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mqNWICASGv8ApKru + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YdILkmHbPlVw9JvO method: GET response: proto: HTTP/2.0 @@ -2298,13 +2298,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mqNWICASGv8ApKru","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_YdILkmHbPlVw9JvO","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 604.301958ms + duration: 316.404ms - id: 64 request: proto: HTTP/1.1 @@ -2323,8 +2323,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -2334,13 +2334,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 376.576916ms + duration: 704.30375ms - id: 65 request: proto: HTTP/1.1 @@ -2359,8 +2359,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -2370,13 +2370,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 199.755583ms + duration: 416.017459ms - id: 66 request: proto: HTTP/1.1 @@ -2395,8 +2395,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2406,13 +2406,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_mqNWICASGv8ApKru","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_YdILkmHbPlVw9JvO","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.773167ms + duration: 288.424708ms - id: 67 request: proto: HTTP/1.1 @@ -2431,8 +2431,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2440,15 +2440,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 224.241459ms + duration: 306.886375ms - id: 68 request: proto: HTTP/1.1 @@ -2466,8 +2466,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections/con_mqNWICASGv8ApKru + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections/con_YdILkmHbPlVw9JvO method: DELETE response: proto: HTTP/2.0 @@ -2483,7 +2483,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 213.038291ms + duration: 314.99825ms - id: 69 request: proto: HTTP/1.1 @@ -2501,8 +2501,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections/con_jHyITBwLmg3Ym74z method: DELETE response: proto: HTTP/2.0 @@ -2518,7 +2518,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 279.676583ms + duration: 308.042667ms - id: 70 request: proto: HTTP/1.1 @@ -2537,8 +2537,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -2548,13 +2548,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 251.919167ms + duration: 273.821125ms - id: 71 request: proto: HTTP/1.1 @@ -2573,8 +2573,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2590,7 +2590,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.327708ms + duration: 335.790708ms - id: 72 request: proto: HTTP/1.1 @@ -2609,8 +2609,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2618,15 +2618,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 492.295291ms + duration: 317.117709ms - id: 73 request: proto: HTTP/1.1 @@ -2645,8 +2645,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_jHyITBwLmg3Ym74z method: GET response: proto: HTTP/2.0 @@ -2656,13 +2656,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_kSmtGDoqQZJnQXwY","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_jHyITBwLmg3Ym74z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.015468291s + duration: 314.154334ms - id: 74 request: proto: HTTP/1.1 @@ -2681,8 +2681,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mqNWICASGv8ApKru + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YdILkmHbPlVw9JvO method: GET response: proto: HTTP/2.0 @@ -2692,13 +2692,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mqNWICASGv8ApKru","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_YdILkmHbPlVw9JvO","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 346.357417ms + duration: 314.670333ms - id: 75 request: proto: HTTP/1.1 @@ -2717,8 +2717,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -2728,13 +2728,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 224.992833ms + duration: 278.623292ms - id: 76 request: proto: HTTP/1.1 @@ -2753,8 +2753,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -2764,13 +2764,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 271.764083ms + duration: 273.143792ms - id: 77 request: proto: HTTP/1.1 @@ -2789,8 +2789,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2806,7 +2806,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.259667ms + duration: 304.830292ms - id: 78 request: proto: HTTP/1.1 @@ -2825,8 +2825,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2834,15 +2834,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.874042ms + duration: 351.397291ms - id: 79 request: proto: HTTP/1.1 @@ -2861,8 +2861,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_jHyITBwLmg3Ym74z method: GET response: proto: HTTP/2.0 @@ -2872,13 +2872,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_kSmtGDoqQZJnQXwY","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_jHyITBwLmg3Ym74z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 269.622709ms + duration: 304.002958ms - id: 80 request: proto: HTTP/1.1 @@ -2897,8 +2897,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mqNWICASGv8ApKru + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YdILkmHbPlVw9JvO method: GET response: proto: HTTP/2.0 @@ -2908,13 +2908,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mqNWICASGv8ApKru","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_YdILkmHbPlVw9JvO","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 479.021333ms + duration: 269.432917ms - id: 81 request: proto: HTTP/1.1 @@ -2933,8 +2933,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -2944,13 +2944,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 424.291375ms + duration: 270.077959ms - id: 82 request: proto: HTTP/1.1 @@ -2969,8 +2969,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -2980,13 +2980,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 240.549042ms + duration: 277.223375ms - id: 83 request: proto: HTTP/1.1 @@ -3005,8 +3005,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3022,7 +3022,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.8305ms + duration: 288.139542ms - id: 84 request: proto: HTTP/1.1 @@ -3041,8 +3041,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3050,15 +3050,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 525.145667ms + duration: 288.278083ms - id: 85 request: proto: HTTP/1.1 @@ -3077,8 +3077,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_jHyITBwLmg3Ym74z method: GET response: proto: HTTP/2.0 @@ -3088,13 +3088,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_kSmtGDoqQZJnQXwY","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_jHyITBwLmg3Ym74z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.253292ms + duration: 302.326208ms - id: 86 request: proto: HTTP/1.1 @@ -3113,8 +3113,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mqNWICASGv8ApKru + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YdILkmHbPlVw9JvO method: GET response: proto: HTTP/2.0 @@ -3124,13 +3124,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mqNWICASGv8ApKru","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_YdILkmHbPlVw9JvO","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 250.967791ms + duration: 282.153292ms - id: 87 request: proto: HTTP/1.1 @@ -3149,8 +3149,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -3160,13 +3160,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.939291ms + duration: 300.943125ms - id: 88 request: proto: HTTP/1.1 @@ -3185,8 +3185,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -3196,13 +3196,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.0775ms + duration: 309.56375ms - id: 89 request: proto: HTTP/1.1 @@ -3221,8 +3221,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3238,7 +3238,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 500.539334ms + duration: 313.416542ms - id: 90 request: proto: HTTP/1.1 @@ -3257,8 +3257,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3266,15 +3266,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 443.502042ms + duration: 302.651834ms - id: 91 request: proto: HTTP/1.1 @@ -3293,8 +3293,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_jHyITBwLmg3Ym74z method: GET response: proto: HTTP/2.0 @@ -3304,13 +3304,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_kSmtGDoqQZJnQXwY","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_jHyITBwLmg3Ym74z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 348.392458ms + duration: 290.8535ms - id: 92 request: proto: HTTP/1.1 @@ -3329,8 +3329,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mqNWICASGv8ApKru + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YdILkmHbPlVw9JvO method: GET response: proto: HTTP/2.0 @@ -3340,13 +3340,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mqNWICASGv8ApKru","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_YdILkmHbPlVw9JvO","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 429.47125ms + duration: 378.693542ms - id: 93 request: proto: HTTP/1.1 @@ -3365,8 +3365,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -3376,13 +3376,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 382.116834ms + duration: 291.453458ms - id: 94 request: proto: HTTP/1.1 @@ -3401,8 +3401,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3418,7 +3418,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 238.509333ms + duration: 335.5345ms - id: 95 request: proto: HTTP/1.1 @@ -3431,14 +3431,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true} + {"connection_id":"con_YdILkmHbPlVw9JvO","assign_membership_on_login":true} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections method: POST response: proto: HTTP/2.0 @@ -3446,15 +3446,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 176 + content_length: 198 uncompressed: false - body: '{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_YdILkmHbPlVw9JvO","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 233.112ms + duration: 354.049334ms - id: 96 request: proto: HTTP/1.1 @@ -3467,14 +3467,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_mqNWICASGv8ApKru","assign_membership_on_login":true} + {"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections method: POST response: proto: HTTP/2.0 @@ -3482,15 +3482,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 176 + content_length: 198 uncompressed: false - body: '{"connection_id":"con_mqNWICASGv8ApKru","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 251.6905ms + duration: 353.07ms - id: 97 request: proto: HTTP/1.1 @@ -3509,8 +3509,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3520,13 +3520,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_mqNWICASGv8ApKru","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_YdILkmHbPlVw9JvO","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 323.656959ms + duration: 330.304ms - id: 98 request: proto: HTTP/1.1 @@ -3545,8 +3545,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_jHyITBwLmg3Ym74z method: GET response: proto: HTTP/2.0 @@ -3556,13 +3556,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_kSmtGDoqQZJnQXwY","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_jHyITBwLmg3Ym74z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 240.350792ms + duration: 418.658958ms - id: 99 request: proto: HTTP/1.1 @@ -3581,8 +3581,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mqNWICASGv8ApKru + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YdILkmHbPlVw9JvO method: GET response: proto: HTTP/2.0 @@ -3592,13 +3592,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mqNWICASGv8ApKru","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_YdILkmHbPlVw9JvO","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 272.457042ms + duration: 295.711167ms - id: 100 request: proto: HTTP/1.1 @@ -3617,8 +3617,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -3628,13 +3628,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.311666ms + duration: 301.892792ms - id: 101 request: proto: HTTP/1.1 @@ -3653,8 +3653,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3664,13 +3664,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_mqNWICASGv8ApKru","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_YdILkmHbPlVw9JvO","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 317.562084ms + duration: 311.7535ms - id: 102 request: proto: HTTP/1.1 @@ -3689,8 +3689,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections/con_jHyITBwLmg3Ym74z method: GET response: proto: HTTP/2.0 @@ -3700,13 +3700,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 252.682291ms + duration: 302.809041ms - id: 103 request: proto: HTTP/1.1 @@ -3725,8 +3725,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -3736,13 +3736,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 506.678666ms + duration: 287.615875ms - id: 104 request: proto: HTTP/1.1 @@ -3761,8 +3761,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3772,13 +3772,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_mqNWICASGv8ApKru","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_YdILkmHbPlVw9JvO","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 426.344ms + duration: 286.021875ms - id: 105 request: proto: HTTP/1.1 @@ -3797,8 +3797,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3806,15 +3806,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 220.25ms + duration: 315.165833ms - id: 106 request: proto: HTTP/1.1 @@ -3833,8 +3833,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections/con_mqNWICASGv8ApKru + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections/con_YdILkmHbPlVw9JvO method: GET response: proto: HTTP/2.0 @@ -3844,13 +3844,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_mqNWICASGv8ApKru","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_YdILkmHbPlVw9JvO","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.103959ms + duration: 303.6935ms - id: 107 request: proto: HTTP/1.1 @@ -3869,8 +3869,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -3880,13 +3880,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 270.535167ms + duration: 281.525917ms - id: 108 request: proto: HTTP/1.1 @@ -3905,8 +3905,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3916,13 +3916,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_mqNWICASGv8ApKru","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_YdILkmHbPlVw9JvO","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 318.123292ms + duration: 317.50825ms - id: 109 request: proto: HTTP/1.1 @@ -3941,8 +3941,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3950,15 +3950,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 264.9625ms + duration: 310.411333ms - id: 110 request: proto: HTTP/1.1 @@ -3977,8 +3977,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_jHyITBwLmg3Ym74z method: GET response: proto: HTTP/2.0 @@ -3988,13 +3988,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_kSmtGDoqQZJnQXwY","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_jHyITBwLmg3Ym74z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 275.000584ms + duration: 317.7805ms - id: 111 request: proto: HTTP/1.1 @@ -4013,8 +4013,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mqNWICASGv8ApKru + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YdILkmHbPlVw9JvO method: GET response: proto: HTTP/2.0 @@ -4024,13 +4024,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mqNWICASGv8ApKru","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_YdILkmHbPlVw9JvO","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 212.357083ms + duration: 289.41975ms - id: 112 request: proto: HTTP/1.1 @@ -4049,8 +4049,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -4060,13 +4060,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 217.537125ms + duration: 284.071041ms - id: 113 request: proto: HTTP/1.1 @@ -4085,8 +4085,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4096,13 +4096,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_mqNWICASGv8ApKru","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_YdILkmHbPlVw9JvO","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.633959ms + duration: 297.970875ms - id: 114 request: proto: HTTP/1.1 @@ -4121,8 +4121,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections/con_jHyITBwLmg3Ym74z method: GET response: proto: HTTP/2.0 @@ -4132,13 +4132,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 320.281792ms + duration: 289.9355ms - id: 115 request: proto: HTTP/1.1 @@ -4157,8 +4157,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections/con_mqNWICASGv8ApKru + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections/con_YdILkmHbPlVw9JvO method: GET response: proto: HTTP/2.0 @@ -4168,13 +4168,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_mqNWICASGv8ApKru","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_YdILkmHbPlVw9JvO","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 289.261708ms + duration: 295.114ms - id: 116 request: proto: HTTP/1.1 @@ -4193,8 +4193,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -4204,13 +4204,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 274.787875ms + duration: 290.013583ms - id: 117 request: proto: HTTP/1.1 @@ -4229,8 +4229,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4240,13 +4240,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_mqNWICASGv8ApKru","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_YdILkmHbPlVw9JvO","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 602.659459ms + duration: 289.912333ms - id: 118 request: proto: HTTP/1.1 @@ -4265,8 +4265,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4274,15 +4274,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 199.9775ms + duration: 305.860083ms - id: 119 request: proto: HTTP/1.1 @@ -4301,8 +4301,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -4312,13 +4312,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 162.626375ms + duration: 298.166875ms - id: 120 request: proto: HTTP/1.1 @@ -4337,8 +4337,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4348,13 +4348,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_mqNWICASGv8ApKru","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_YdILkmHbPlVw9JvO","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 243.136625ms + duration: 281.687542ms - id: 121 request: proto: HTTP/1.1 @@ -4373,8 +4373,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4382,15 +4382,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 245.851541ms + duration: 299.944583ms - id: 122 request: proto: HTTP/1.1 @@ -4409,8 +4409,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_jHyITBwLmg3Ym74z method: GET response: proto: HTTP/2.0 @@ -4420,13 +4420,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_kSmtGDoqQZJnQXwY","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_jHyITBwLmg3Ym74z","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 252.919917ms + duration: 307.793ms - id: 123 request: proto: HTTP/1.1 @@ -4445,8 +4445,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mqNWICASGv8ApKru + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YdILkmHbPlVw9JvO method: GET response: proto: HTTP/2.0 @@ -4456,13 +4456,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_mqNWICASGv8ApKru","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_YdILkmHbPlVw9JvO","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.301667ms + duration: 287.889125ms - id: 124 request: proto: HTTP/1.1 @@ -4481,8 +4481,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -4492,13 +4492,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 424.033792ms + duration: 305.506834ms - id: 125 request: proto: HTTP/1.1 @@ -4517,8 +4517,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4528,13 +4528,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_mqNWICASGv8ApKru","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_YdILkmHbPlVw9JvO","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 236.010417ms + duration: 312.576625ms - id: 126 request: proto: HTTP/1.1 @@ -4553,8 +4553,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections/con_jHyITBwLmg3Ym74z method: GET response: proto: HTTP/2.0 @@ -4564,13 +4564,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 237.347875ms + duration: 318.248416ms - id: 127 request: proto: HTTP/1.1 @@ -4589,8 +4589,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections/con_mqNWICASGv8ApKru + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections/con_YdILkmHbPlVw9JvO method: GET response: proto: HTTP/2.0 @@ -4600,13 +4600,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_mqNWICASGv8ApKru","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_YdILkmHbPlVw9JvO","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 263.776833ms + duration: 313.095666ms - id: 128 request: proto: HTTP/1.1 @@ -4625,8 +4625,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: GET response: proto: HTTP/2.0 @@ -4636,13 +4636,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_RMHyUPzcaccyanue","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_z8fIfNpjh9QO3DiP","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.130708ms + duration: 303.355125ms - id: 129 request: proto: HTTP/1.1 @@ -4661,8 +4661,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4672,13 +4672,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_kSmtGDoqQZJnQXwY","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_mqNWICASGv8ApKru","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_jHyITBwLmg3Ym74z","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_YdILkmHbPlVw9JvO","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 317.354166ms + duration: 400.503041ms - id: 130 request: proto: HTTP/1.1 @@ -4697,8 +4697,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4706,15 +4706,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 455.145375ms + duration: 341.444083ms - id: 131 request: proto: HTTP/1.1 @@ -4732,8 +4732,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections/con_mqNWICASGv8ApKru + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections/con_YdILkmHbPlVw9JvO method: DELETE response: proto: HTTP/2.0 @@ -4749,7 +4749,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 272.416208ms + duration: 332.485125ms - id: 132 request: proto: HTTP/1.1 @@ -4767,8 +4767,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections/con_jHyITBwLmg3Ym74z method: DELETE response: proto: HTTP/2.0 @@ -4784,7 +4784,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 190.247584ms + duration: 344.865584ms - id: 133 request: proto: HTTP/1.1 @@ -4802,8 +4802,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections/con_YdILkmHbPlVw9JvO method: DELETE response: proto: HTTP/2.0 @@ -4819,7 +4819,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 215.181292ms + duration: 342.665708ms - id: 134 request: proto: HTTP/1.1 @@ -4837,8 +4837,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue/enabled_connections/con_mqNWICASGv8ApKru + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP/enabled_connections/con_jHyITBwLmg3Ym74z method: DELETE response: proto: HTTP/2.0 @@ -4854,7 +4854,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 279.079ms + duration: 423.167542ms - id: 135 request: proto: HTTP/1.1 @@ -4872,8 +4872,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_RMHyUPzcaccyanue + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_z8fIfNpjh9QO3DiP method: DELETE response: proto: HTTP/2.0 @@ -4889,7 +4889,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 279.559417ms + duration: 347.009958ms - id: 136 request: proto: HTTP/1.1 @@ -4907,8 +4907,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_mqNWICASGv8ApKru + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_YdILkmHbPlVw9JvO method: DELETE response: proto: HTTP/2.0 @@ -4918,13 +4918,13 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2023-12-19T13:50:21.020Z"}' + body: '{"deleted_at":"2024-05-27T09:40:19.202Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 285.649584ms + duration: 292.83ms - id: 137 request: proto: HTTP/1.1 @@ -4942,8 +4942,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_kSmtGDoqQZJnQXwY + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_jHyITBwLmg3Ym74z method: DELETE response: proto: HTTP/2.0 @@ -4953,10 +4953,10 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2023-12-19T13:50:21.348Z"}' + body: '{"deleted_at":"2024-05-27T09:40:19.544Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 310.433209ms + duration: 328.65775ms diff --git a/test/data/recordings/TestAccOrganizationConnections.yaml b/test/data/recordings/TestAccOrganizationConnections.yaml index efc8130f4..6eefac011 100644 --- a/test/data/recordings/TestAccOrganizationConnections.yaml +++ b/test/data/recordings/TestAccOrganizationConnections.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.4.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections method: POST response: @@ -30,13 +30,13 @@ interactions: trailer: {} content_length: 574 uncompressed: false - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 526.098458ms + duration: 336.77175ms - id: 1 request: proto: HTTP/1.1 @@ -55,8 +55,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -66,13 +66,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 343.621333ms + duration: 309.177208ms - id: 2 request: proto: HTTP/1.1 @@ -91,7 +91,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.4.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections method: POST response: @@ -102,13 +102,13 @@ interactions: trailer: {} content_length: 574 uncompressed: false - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 234.187291ms + duration: 306.510375ms - id: 3 request: proto: HTTP/1.1 @@ -127,8 +127,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -138,13 +138,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 268.014083ms + duration: 274.417875ms - id: 4 request: proto: HTTP/1.1 @@ -163,7 +163,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.4.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations method: POST response: @@ -174,13 +174,13 @@ interactions: trailer: {} content_length: 126 uncompressed: false - body: '{"name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections","id":"org_mQ4KWlSOf8pe6Jc5"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","display_name":"testaccorganizationconnections","name":"some-org-testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 295.650416ms + duration: 462.735375ms - id: 5 request: proto: HTTP/1.1 @@ -199,8 +199,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -210,13 +210,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.362417ms + duration: 290.02775ms - id: 6 request: proto: HTTP/1.1 @@ -229,14 +229,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false} + {"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections method: POST response: proto: HTTP/2.0 @@ -244,15 +244,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 178 + content_length: 200 uncompressed: false - body: '{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 319.520625ms + duration: 303.938625ms - id: 7 request: proto: HTTP/1.1 @@ -271,8 +271,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -282,13 +282,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.294417ms + duration: 290.690042ms - id: 8 request: proto: HTTP/1.1 @@ -307,8 +307,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -318,13 +318,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.375958ms + duration: 280.344333ms - id: 9 request: proto: HTTP/1.1 @@ -343,8 +343,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -354,13 +354,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 267.129833ms + duration: 282.8085ms - id: 10 request: proto: HTTP/1.1 @@ -379,8 +379,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -390,13 +390,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.763417ms + duration: 338.935083ms - id: 11 request: proto: HTTP/1.1 @@ -415,8 +415,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -426,13 +426,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 445.654542ms + duration: 287.650334ms - id: 12 request: proto: HTTP/1.1 @@ -451,8 +451,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -462,13 +462,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 451.501792ms + duration: 285.344833ms - id: 13 request: proto: HTTP/1.1 @@ -487,8 +487,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -498,13 +498,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 192.267916ms + duration: 279.966375ms - id: 14 request: proto: HTTP/1.1 @@ -523,8 +523,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -534,13 +534,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 384.255125ms + duration: 296.378584ms - id: 15 request: proto: HTTP/1.1 @@ -559,8 +559,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -568,15 +568,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.720875ms + duration: 304.172375ms - id: 16 request: proto: HTTP/1.1 @@ -594,8 +594,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections/con_SmIJmENhimuTbsoF method: DELETE response: proto: HTTP/2.0 @@ -611,7 +611,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 305.401209ms + duration: 314.738958ms - id: 17 request: proto: HTTP/1.1 @@ -630,8 +630,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -641,13 +641,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 249.983583ms + duration: 318.688417ms - id: 18 request: proto: HTTP/1.1 @@ -666,8 +666,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -683,7 +683,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.343458ms + duration: 311.453833ms - id: 19 request: proto: HTTP/1.1 @@ -702,8 +702,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -711,15 +711,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 256.178958ms + duration: 287.411667ms - id: 20 request: proto: HTTP/1.1 @@ -738,8 +738,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -749,13 +749,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 193.698ms + duration: 282.119167ms - id: 21 request: proto: HTTP/1.1 @@ -774,8 +774,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -785,13 +785,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 237.897833ms + duration: 302.080334ms - id: 22 request: proto: HTTP/1.1 @@ -810,8 +810,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -821,13 +821,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 267.291416ms + duration: 304.134917ms - id: 23 request: proto: HTTP/1.1 @@ -846,8 +846,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -857,13 +857,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.014833ms + duration: 296.579ms - id: 24 request: proto: HTTP/1.1 @@ -882,8 +882,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -899,7 +899,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 315.446709ms + duration: 471.070333ms - id: 25 request: proto: HTTP/1.1 @@ -918,8 +918,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -927,15 +927,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 264.944625ms + duration: 355.020459ms - id: 26 request: proto: HTTP/1.1 @@ -954,8 +954,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -965,13 +965,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.996459ms + duration: 334.603125ms - id: 27 request: proto: HTTP/1.1 @@ -990,8 +990,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -1001,13 +1001,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 425.238833ms + duration: 341.733459ms - id: 28 request: proto: HTTP/1.1 @@ -1026,8 +1026,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -1037,13 +1037,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 237.549042ms + duration: 335.78575ms - id: 29 request: proto: HTTP/1.1 @@ -1062,8 +1062,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1079,7 +1079,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 275.592292ms + duration: 303.568083ms - id: 30 request: proto: HTTP/1.1 @@ -1092,14 +1092,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_WbLx5mfTf6jSZnlF"} + {"connection_id":"con_SmIJmENhimuTbsoF"} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections method: POST response: proto: HTTP/2.0 @@ -1107,15 +1107,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 178 + content_length: 200 uncompressed: false - body: '{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 469.447208ms + duration: 313.31775ms - id: 31 request: proto: HTTP/1.1 @@ -1134,8 +1134,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1145,13 +1145,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 349.384666ms + duration: 294.964667ms - id: 32 request: proto: HTTP/1.1 @@ -1170,8 +1170,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -1181,13 +1181,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 245.603417ms + duration: 286.536333ms - id: 33 request: proto: HTTP/1.1 @@ -1206,8 +1206,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1217,13 +1217,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 274.698292ms + duration: 296.551417ms - id: 34 request: proto: HTTP/1.1 @@ -1242,8 +1242,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1251,15 +1251,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 692.85225ms + duration: 282.139875ms - id: 35 request: proto: HTTP/1.1 @@ -1278,8 +1278,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -1289,13 +1289,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 393.48ms + duration: 284.421083ms - id: 36 request: proto: HTTP/1.1 @@ -1314,8 +1314,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1325,13 +1325,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.688042ms + duration: 319.424958ms - id: 37 request: proto: HTTP/1.1 @@ -1350,8 +1350,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1359,15 +1359,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 319.645417ms + duration: 289.034584ms - id: 38 request: proto: HTTP/1.1 @@ -1386,8 +1386,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -1397,13 +1397,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 271.757083ms + duration: 282.740667ms - id: 39 request: proto: HTTP/1.1 @@ -1422,8 +1422,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -1433,13 +1433,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 213.400458ms + duration: 294.808292ms - id: 40 request: proto: HTTP/1.1 @@ -1458,8 +1458,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -1469,13 +1469,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 213.27875ms + duration: 313.129917ms - id: 41 request: proto: HTTP/1.1 @@ -1494,8 +1494,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1505,13 +1505,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 238.372042ms + duration: 291.442583ms - id: 42 request: proto: HTTP/1.1 @@ -1530,8 +1530,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -1541,13 +1541,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 190.848625ms + duration: 309.180791ms - id: 43 request: proto: HTTP/1.1 @@ -1566,8 +1566,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1577,13 +1577,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 236.53075ms + duration: 291.277208ms - id: 44 request: proto: HTTP/1.1 @@ -1602,8 +1602,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1611,15 +1611,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 241.116459ms + duration: 295.502917ms - id: 45 request: proto: HTTP/1.1 @@ -1638,8 +1638,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -1649,13 +1649,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 221.328375ms + duration: 293.00725ms - id: 46 request: proto: HTTP/1.1 @@ -1674,8 +1674,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -1685,13 +1685,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 314.069042ms + duration: 276.953875ms - id: 47 request: proto: HTTP/1.1 @@ -1710,8 +1710,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -1721,13 +1721,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 259.077167ms + duration: 280.423292ms - id: 48 request: proto: HTTP/1.1 @@ -1746,8 +1746,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1757,13 +1757,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 270.4655ms + duration: 309.976834ms - id: 49 request: proto: HTTP/1.1 @@ -1782,8 +1782,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -1793,13 +1793,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.443ms + duration: 292.094458ms - id: 50 request: proto: HTTP/1.1 @@ -1818,8 +1818,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1829,13 +1829,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 324.223666ms + duration: 287.11475ms - id: 51 request: proto: HTTP/1.1 @@ -1854,8 +1854,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1863,15 +1863,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 216.56625ms + duration: 283.966792ms - id: 52 request: proto: HTTP/1.1 @@ -1890,8 +1890,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -1901,13 +1901,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 232.671166ms + duration: 283.895625ms - id: 53 request: proto: HTTP/1.1 @@ -1926,8 +1926,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -1937,13 +1937,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.453833ms + duration: 310.100292ms - id: 54 request: proto: HTTP/1.1 @@ -1962,8 +1962,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -1973,13 +1973,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 472.197375ms + duration: 286.116708ms - id: 55 request: proto: HTTP/1.1 @@ -1998,8 +1998,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2009,13 +2009,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 474.902625ms + duration: 320.762167ms - id: 56 request: proto: HTTP/1.1 @@ -2034,8 +2034,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -2045,13 +2045,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 266.732333ms + duration: 303.119583ms - id: 57 request: proto: HTTP/1.1 @@ -2070,8 +2070,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2081,13 +2081,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.459291ms + duration: 676.107ms - id: 58 request: proto: HTTP/1.1 @@ -2106,8 +2106,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2115,15 +2115,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 537.375583ms + duration: 317.012833ms - id: 59 request: proto: HTTP/1.1 @@ -2142,8 +2142,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -2153,13 +2153,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 253.097166ms + duration: 312.9875ms - id: 60 request: proto: HTTP/1.1 @@ -2178,8 +2178,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -2189,13 +2189,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.006709ms + duration: 324.542292ms - id: 61 request: proto: HTTP/1.1 @@ -2214,8 +2214,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -2225,13 +2225,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 318.395166ms + duration: 345.372042ms - id: 62 request: proto: HTTP/1.1 @@ -2250,8 +2250,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2261,13 +2261,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 246.295208ms + duration: 335.588708ms - id: 63 request: proto: HTTP/1.1 @@ -2280,14 +2280,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":false} + {"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":false} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections method: POST response: proto: HTTP/2.0 @@ -2295,15 +2295,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 178 + content_length: 200 uncompressed: false - body: '{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 184.726875ms + duration: 354.319542ms - id: 64 request: proto: HTTP/1.1 @@ -2322,8 +2322,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2333,13 +2333,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 251.705291ms + duration: 420.60225ms - id: 65 request: proto: HTTP/1.1 @@ -2358,8 +2358,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -2369,13 +2369,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 262.522792ms + duration: 307.567666ms - id: 66 request: proto: HTTP/1.1 @@ -2394,8 +2394,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2405,13 +2405,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 380.82625ms + duration: 305.230417ms - id: 67 request: proto: HTTP/1.1 @@ -2430,8 +2430,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2439,15 +2439,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 233.530416ms + duration: 307.75875ms - id: 68 request: proto: HTTP/1.1 @@ -2466,8 +2466,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -2477,13 +2477,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 255.292708ms + duration: 283.076042ms - id: 69 request: proto: HTTP/1.1 @@ -2502,8 +2502,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2513,13 +2513,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 526.133708ms + duration: 284.850792ms - id: 70 request: proto: HTTP/1.1 @@ -2538,8 +2538,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2547,15 +2547,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 361.242083ms + duration: 282.233459ms - id: 71 request: proto: HTTP/1.1 @@ -2574,8 +2574,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -2585,13 +2585,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 251.430291ms + duration: 311.704833ms - id: 72 request: proto: HTTP/1.1 @@ -2610,8 +2610,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -2621,13 +2621,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 493.666ms + duration: 304.306958ms - id: 73 request: proto: HTTP/1.1 @@ -2646,8 +2646,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -2657,13 +2657,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 443.918292ms + duration: 287.6745ms - id: 74 request: proto: HTTP/1.1 @@ -2682,8 +2682,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2693,13 +2693,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 500.471542ms + duration: 295.174125ms - id: 75 request: proto: HTTP/1.1 @@ -2718,8 +2718,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -2729,13 +2729,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 685.241291ms + duration: 285.863ms - id: 76 request: proto: HTTP/1.1 @@ -2754,8 +2754,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2765,13 +2765,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 413.692167ms + duration: 323.031834ms - id: 77 request: proto: HTTP/1.1 @@ -2790,8 +2790,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2799,15 +2799,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.243208ms + duration: 317.604625ms - id: 78 request: proto: HTTP/1.1 @@ -2826,8 +2826,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -2837,13 +2837,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 602.097667ms + duration: 303.710958ms - id: 79 request: proto: HTTP/1.1 @@ -2862,8 +2862,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -2873,13 +2873,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 181.020917ms + duration: 305.491458ms - id: 80 request: proto: HTTP/1.1 @@ -2898,8 +2898,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -2909,13 +2909,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.944208ms + duration: 322.156167ms - id: 81 request: proto: HTTP/1.1 @@ -2934,8 +2934,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2945,13 +2945,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 225.287334ms + duration: 291.778416ms - id: 82 request: proto: HTTP/1.1 @@ -2970,8 +2970,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -2981,13 +2981,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 238.774042ms + duration: 302.128917ms - id: 83 request: proto: HTTP/1.1 @@ -3006,8 +3006,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3017,13 +3017,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 358.86225ms + duration: 313.449667ms - id: 84 request: proto: HTTP/1.1 @@ -3042,8 +3042,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3051,15 +3051,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 196.676292ms + duration: 323.23675ms - id: 85 request: proto: HTTP/1.1 @@ -3078,8 +3078,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -3089,13 +3089,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 200.775875ms + duration: 296.3295ms - id: 86 request: proto: HTTP/1.1 @@ -3114,8 +3114,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -3125,13 +3125,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 243.284541ms + duration: 303.254959ms - id: 87 request: proto: HTTP/1.1 @@ -3150,8 +3150,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -3161,13 +3161,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.886583ms + duration: 307.792875ms - id: 88 request: proto: HTTP/1.1 @@ -3186,8 +3186,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3197,13 +3197,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.632708ms + duration: 324.809ms - id: 89 request: proto: HTTP/1.1 @@ -3222,8 +3222,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -3233,13 +3233,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.106875ms + duration: 300.964666ms - id: 90 request: proto: HTTP/1.1 @@ -3258,8 +3258,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3269,13 +3269,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 451.585333ms + duration: 326.944916ms - id: 91 request: proto: HTTP/1.1 @@ -3294,8 +3294,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3303,15 +3303,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 218.8255ms + duration: 294.237ms - id: 92 request: proto: HTTP/1.1 @@ -3330,8 +3330,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -3341,13 +3341,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.129833ms + duration: 293.805334ms - id: 93 request: proto: HTTP/1.1 @@ -3366,8 +3366,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -3377,13 +3377,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 507.877292ms + duration: 349.13025ms - id: 94 request: proto: HTTP/1.1 @@ -3402,8 +3402,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -3413,13 +3413,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 662.013417ms + duration: 298.646833ms - id: 95 request: proto: HTTP/1.1 @@ -3438,8 +3438,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3449,13 +3449,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":false,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 523.444458ms + duration: 353.874292ms - id: 96 request: proto: HTTP/1.1 @@ -3473,8 +3473,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections/con_nAEHqsphtqmZMm5d method: DELETE response: proto: HTTP/2.0 @@ -3490,7 +3490,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 276.363333ms + duration: 352.414042ms - id: 97 request: proto: HTTP/1.1 @@ -3508,8 +3508,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections/con_SmIJmENhimuTbsoF method: DELETE response: proto: HTTP/2.0 @@ -3525,7 +3525,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 816.081167ms + duration: 331.171291ms - id: 98 request: proto: HTTP/1.1 @@ -3538,14 +3538,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true} + {"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":true} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections method: POST response: proto: HTTP/2.0 @@ -3553,15 +3553,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 177 + content_length: 199 uncompressed: false - body: '{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 435.186584ms + duration: 352.419458ms - id: 99 request: proto: HTTP/1.1 @@ -3574,14 +3574,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":true} + {"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections method: POST response: proto: HTTP/2.0 @@ -3589,15 +3589,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 177 + content_length: 199 uncompressed: false - body: '{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 230.872ms + duration: 357.236458ms - id: 100 request: proto: HTTP/1.1 @@ -3616,8 +3616,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3627,13 +3627,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 271.975875ms + duration: 418.702167ms - id: 101 request: proto: HTTP/1.1 @@ -3652,8 +3652,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -3663,13 +3663,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 249.71775ms + duration: 281.844ms - id: 102 request: proto: HTTP/1.1 @@ -3688,8 +3688,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3699,13 +3699,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.886125ms + duration: 283.003417ms - id: 103 request: proto: HTTP/1.1 @@ -3724,8 +3724,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3733,15 +3733,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.911709ms + duration: 300.084042ms - id: 104 request: proto: HTTP/1.1 @@ -3760,8 +3760,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -3771,13 +3771,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 199.066ms + duration: 296.801875ms - id: 105 request: proto: HTTP/1.1 @@ -3796,8 +3796,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3807,13 +3807,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 257.321833ms + duration: 292.208083ms - id: 106 request: proto: HTTP/1.1 @@ -3832,8 +3832,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3841,15 +3841,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 387.612083ms + duration: 277.6035ms - id: 107 request: proto: HTTP/1.1 @@ -3868,8 +3868,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -3879,13 +3879,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.293291ms + duration: 293.154417ms - id: 108 request: proto: HTTP/1.1 @@ -3904,8 +3904,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -3915,13 +3915,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 497.409708ms + duration: 290.384ms - id: 109 request: proto: HTTP/1.1 @@ -3940,8 +3940,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -3951,13 +3951,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 375.433459ms + duration: 300.259542ms - id: 110 request: proto: HTTP/1.1 @@ -3976,8 +3976,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3987,13 +3987,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 266.604833ms + duration: 311.40625ms - id: 111 request: proto: HTTP/1.1 @@ -4012,8 +4012,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -4023,13 +4023,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.63775ms + duration: 308.453667ms - id: 112 request: proto: HTTP/1.1 @@ -4048,8 +4048,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4059,13 +4059,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 463.091458ms + duration: 304.342917ms - id: 113 request: proto: HTTP/1.1 @@ -4084,8 +4084,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4093,15 +4093,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 271.637917ms + duration: 313.447042ms - id: 114 request: proto: HTTP/1.1 @@ -4120,8 +4120,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -4131,13 +4131,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.898167ms + duration: 283.330333ms - id: 115 request: proto: HTTP/1.1 @@ -4156,8 +4156,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -4167,13 +4167,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 500.096875ms + duration: 320.555709ms - id: 116 request: proto: HTTP/1.1 @@ -4192,8 +4192,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -4203,13 +4203,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 453.196083ms + duration: 301.224209ms - id: 117 request: proto: HTTP/1.1 @@ -4228,8 +4228,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4239,13 +4239,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 319.597083ms + duration: 303.944083ms - id: 118 request: proto: HTTP/1.1 @@ -4264,8 +4264,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -4275,13 +4275,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.291833ms + duration: 278.573833ms - id: 119 request: proto: HTTP/1.1 @@ -4300,8 +4300,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4311,13 +4311,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 209.879708ms + duration: 317.697542ms - id: 120 request: proto: HTTP/1.1 @@ -4336,8 +4336,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4345,15 +4345,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 241.051083ms + duration: 302.152209ms - id: 121 request: proto: HTTP/1.1 @@ -4372,8 +4372,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -4383,13 +4383,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 231.880666ms + duration: 312.105709ms - id: 122 request: proto: HTTP/1.1 @@ -4408,8 +4408,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -4419,13 +4419,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.087875ms + duration: 311.638125ms - id: 123 request: proto: HTTP/1.1 @@ -4444,8 +4444,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -4455,13 +4455,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 427.082875ms + duration: 312.0705ms - id: 124 request: proto: HTTP/1.1 @@ -4480,8 +4480,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4491,13 +4491,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 498.81175ms + duration: 394.917875ms - id: 125 request: proto: HTTP/1.1 @@ -4516,8 +4516,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -4527,13 +4527,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 414.681083ms + duration: 277.615709ms - id: 126 request: proto: HTTP/1.1 @@ -4552,8 +4552,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4563,13 +4563,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 319.652583ms + duration: 289.082375ms - id: 127 request: proto: HTTP/1.1 @@ -4588,8 +4588,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4597,15 +4597,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.512542ms + duration: 270.954542ms - id: 128 request: proto: HTTP/1.1 @@ -4624,8 +4624,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -4635,13 +4635,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.488708ms + duration: 286.069958ms - id: 129 request: proto: HTTP/1.1 @@ -4660,8 +4660,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -4671,13 +4671,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 269.237708ms + duration: 281.29425ms - id: 130 request: proto: HTTP/1.1 @@ -4696,8 +4696,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -4707,13 +4707,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 487.778209ms + duration: 274.386125ms - id: 131 request: proto: HTTP/1.1 @@ -4732,8 +4732,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4743,13 +4743,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 471.795333ms + duration: 310.336875ms - id: 132 request: proto: HTTP/1.1 @@ -4767,8 +4767,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections/con_SmIJmENhimuTbsoF method: DELETE response: proto: HTTP/2.0 @@ -4784,7 +4784,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 249.850125ms + duration: 351.786625ms - id: 133 request: proto: HTTP/1.1 @@ -4803,8 +4803,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4814,13 +4814,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 229.473542ms + duration: 352.955875ms - id: 134 request: proto: HTTP/1.1 @@ -4839,8 +4839,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -4850,13 +4850,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 219.162042ms + duration: 329.500625ms - id: 135 request: proto: HTTP/1.1 @@ -4875,8 +4875,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4886,13 +4886,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 247.843041ms + duration: 348.440708ms - id: 136 request: proto: HTTP/1.1 @@ -4911,8 +4911,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4920,15 +4920,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 258.999958ms + duration: 351.638834ms - id: 137 request: proto: HTTP/1.1 @@ -4947,8 +4947,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -4958,13 +4958,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 239.78475ms + duration: 313.25675ms - id: 138 request: proto: HTTP/1.1 @@ -4983,8 +4983,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4994,13 +4994,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.23825ms + duration: 287.374875ms - id: 139 request: proto: HTTP/1.1 @@ -5019,8 +5019,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5028,15 +5028,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.633ms + duration: 284.548666ms - id: 140 request: proto: HTTP/1.1 @@ -5055,8 +5055,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -5066,13 +5066,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 336.893042ms + duration: 290.028375ms - id: 141 request: proto: HTTP/1.1 @@ -5091,8 +5091,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -5102,13 +5102,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 496.949792ms + duration: 325.132708ms - id: 142 request: proto: HTTP/1.1 @@ -5127,8 +5127,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -5138,13 +5138,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 471.086125ms + duration: 315.610833ms - id: 143 request: proto: HTTP/1.1 @@ -5163,8 +5163,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5174,13 +5174,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 866.405ms + duration: 309.456417ms - id: 144 request: proto: HTTP/1.1 @@ -5199,8 +5199,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -5210,13 +5210,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 841.073ms + duration: 283.6315ms - id: 145 request: proto: HTTP/1.1 @@ -5235,8 +5235,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5246,13 +5246,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 337.00675ms + duration: 316.121791ms - id: 146 request: proto: HTTP/1.1 @@ -5271,8 +5271,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5280,15 +5280,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 264.381ms + duration: 303.718959ms - id: 147 request: proto: HTTP/1.1 @@ -5307,8 +5307,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -5318,13 +5318,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 235.234792ms + duration: 311.57ms - id: 148 request: proto: HTTP/1.1 @@ -5343,8 +5343,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -5354,13 +5354,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 487.84725ms + duration: 467.574417ms - id: 149 request: proto: HTTP/1.1 @@ -5379,8 +5379,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -5390,13 +5390,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 446.4955ms + duration: 312.028416ms - id: 150 request: proto: HTTP/1.1 @@ -5415,8 +5415,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5426,13 +5426,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 333.39575ms + duration: 295.973125ms - id: 151 request: proto: HTTP/1.1 @@ -5451,8 +5451,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -5462,13 +5462,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 341.428833ms + duration: 291.297875ms - id: 152 request: proto: HTTP/1.1 @@ -5487,8 +5487,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5498,13 +5498,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 267.6745ms + duration: 289.977709ms - id: 153 request: proto: HTTP/1.1 @@ -5523,8 +5523,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5532,15 +5532,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 225.812958ms + duration: 323.617625ms - id: 154 request: proto: HTTP/1.1 @@ -5559,8 +5559,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -5570,13 +5570,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 257.064292ms + duration: 322.205333ms - id: 155 request: proto: HTTP/1.1 @@ -5595,8 +5595,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -5606,13 +5606,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 518.141917ms + duration: 277.894042ms - id: 156 request: proto: HTTP/1.1 @@ -5631,8 +5631,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -5642,13 +5642,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 413.793166ms + duration: 301.998ms - id: 157 request: proto: HTTP/1.1 @@ -5667,8 +5667,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5678,13 +5678,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 211.181167ms + duration: 306.21725ms - id: 158 request: proto: HTTP/1.1 @@ -5703,8 +5703,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -5714,13 +5714,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 217.067708ms + duration: 452.509542ms - id: 159 request: proto: HTTP/1.1 @@ -5739,8 +5739,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5750,13 +5750,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 259.343792ms + duration: 319.234083ms - id: 160 request: proto: HTTP/1.1 @@ -5775,8 +5775,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5784,15 +5784,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.383958ms + duration: 303.1615ms - id: 161 request: proto: HTTP/1.1 @@ -5811,8 +5811,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -5822,13 +5822,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 262.905583ms + duration: 288.092916ms - id: 162 request: proto: HTTP/1.1 @@ -5847,8 +5847,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5858,13 +5858,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.856709ms + duration: 332.322458ms - id: 163 request: proto: HTTP/1.1 @@ -5883,8 +5883,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -5894,13 +5894,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 501.918416ms + duration: 286.407791ms - id: 164 request: proto: HTTP/1.1 @@ -5919,8 +5919,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -5930,13 +5930,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.376875ms + duration: 303.768542ms - id: 165 request: proto: HTTP/1.1 @@ -5955,8 +5955,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -5966,13 +5966,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 193.583ms + duration: 286.190375ms - id: 166 request: proto: HTTP/1.1 @@ -5991,8 +5991,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -6002,13 +6002,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 226.241ms + duration: 287.967916ms - id: 167 request: proto: HTTP/1.1 @@ -6027,8 +6027,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6036,15 +6036,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 297.716791ms + duration: 286.904833ms - id: 168 request: proto: HTTP/1.1 @@ -6062,8 +6062,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections/con_nAEHqsphtqmZMm5d method: DELETE response: proto: HTTP/2.0 @@ -6079,7 +6079,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 310.389417ms + duration: 350.444417ms - id: 169 request: proto: HTTP/1.1 @@ -6098,8 +6098,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -6109,13 +6109,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 271.128292ms + duration: 328.503959ms - id: 170 request: proto: HTTP/1.1 @@ -6134,8 +6134,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -6151,7 +6151,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.100292ms + duration: 351.953125ms - id: 171 request: proto: HTTP/1.1 @@ -6170,8 +6170,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6179,15 +6179,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.832916ms + duration: 354.0735ms - id: 172 request: proto: HTTP/1.1 @@ -6206,8 +6206,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -6217,13 +6217,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 237.907041ms + duration: 299.114ms - id: 173 request: proto: HTTP/1.1 @@ -6242,8 +6242,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -6253,13 +6253,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 272.446375ms + duration: 310.433625ms - id: 174 request: proto: HTTP/1.1 @@ -6278,8 +6278,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -6289,13 +6289,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 496.361375ms + duration: 303.655625ms - id: 175 request: proto: HTTP/1.1 @@ -6314,8 +6314,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -6325,13 +6325,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 393.585ms + duration: 315.811875ms - id: 176 request: proto: HTTP/1.1 @@ -6350,8 +6350,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -6367,7 +6367,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.74325ms + duration: 326.023375ms - id: 177 request: proto: HTTP/1.1 @@ -6386,8 +6386,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6395,15 +6395,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.872792ms + duration: 288.06475ms - id: 178 request: proto: HTTP/1.1 @@ -6422,8 +6422,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -6433,13 +6433,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 265.748125ms + duration: 285.948208ms - id: 179 request: proto: HTTP/1.1 @@ -6458,8 +6458,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -6469,13 +6469,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 463.022083ms + duration: 313.247792ms - id: 180 request: proto: HTTP/1.1 @@ -6494,8 +6494,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -6505,13 +6505,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 316.20075ms + duration: 306.786708ms - id: 181 request: proto: HTTP/1.1 @@ -6530,8 +6530,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -6541,13 +6541,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 252.338584ms + duration: 312.584208ms - id: 182 request: proto: HTTP/1.1 @@ -6566,8 +6566,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -6583,7 +6583,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.157298084s + duration: 289.380125ms - id: 183 request: proto: HTTP/1.1 @@ -6602,8 +6602,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6611,15 +6611,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 580.183958ms + duration: 291.405291ms - id: 184 request: proto: HTTP/1.1 @@ -6638,8 +6638,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -6649,13 +6649,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 249.761375ms + duration: 355.857ms - id: 185 request: proto: HTTP/1.1 @@ -6674,8 +6674,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -6685,13 +6685,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.384416ms + duration: 277.85625ms - id: 186 request: proto: HTTP/1.1 @@ -6710,8 +6710,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -6721,13 +6721,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 171.8625ms + duration: 272.491875ms - id: 187 request: proto: HTTP/1.1 @@ -6746,8 +6746,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -6757,13 +6757,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 260.183417ms + duration: 296.017708ms - id: 188 request: proto: HTTP/1.1 @@ -6782,8 +6782,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -6799,7 +6799,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 263.682333ms + duration: 270.852417ms - id: 189 request: proto: HTTP/1.1 @@ -6818,8 +6818,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6827,15 +6827,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 447.909917ms + duration: 303.092667ms - id: 190 request: proto: HTTP/1.1 @@ -6854,8 +6854,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -6865,13 +6865,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 273.545541ms + duration: 292.854666ms - id: 191 request: proto: HTTP/1.1 @@ -6890,8 +6890,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -6901,13 +6901,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.174208ms + duration: 279.28275ms - id: 192 request: proto: HTTP/1.1 @@ -6926,8 +6926,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -6937,13 +6937,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.043333ms + duration: 345.066125ms - id: 193 request: proto: HTTP/1.1 @@ -6956,14 +6956,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":true} + {"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":true} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections method: POST response: proto: HTTP/2.0 @@ -6971,15 +6971,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 177 + content_length: 199 uncompressed: false - body: '{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 289.881125ms + duration: 319.269417ms - id: 194 request: proto: HTTP/1.1 @@ -6998,8 +6998,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -7009,13 +7009,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 214.73825ms + duration: 288.727375ms - id: 195 request: proto: HTTP/1.1 @@ -7028,14 +7028,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true} + {"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections method: POST response: proto: HTTP/2.0 @@ -7043,15 +7043,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 177 + content_length: 199 uncompressed: false - body: '{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 214.405458ms + duration: 339.833083ms - id: 196 request: proto: HTTP/1.1 @@ -7070,8 +7070,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -7081,13 +7081,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.241523333s + duration: 301.271542ms - id: 197 request: proto: HTTP/1.1 @@ -7106,8 +7106,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -7117,13 +7117,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 275.490208ms + duration: 297.002416ms - id: 198 request: proto: HTTP/1.1 @@ -7142,8 +7142,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -7153,13 +7153,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 510.203667ms + duration: 323.320833ms - id: 199 request: proto: HTTP/1.1 @@ -7178,8 +7178,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -7189,13 +7189,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 345.747458ms + duration: 293.518375ms - id: 200 request: proto: HTTP/1.1 @@ -7214,8 +7214,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -7225,13 +7225,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 205.9565ms + duration: 351.304209ms - id: 201 request: proto: HTTP/1.1 @@ -7250,8 +7250,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -7261,13 +7261,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.203416ms + duration: 409.165375ms - id: 202 request: proto: HTTP/1.1 @@ -7286,8 +7286,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -7297,13 +7297,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 207.953708ms + duration: 328.900542ms - id: 203 request: proto: HTTP/1.1 @@ -7322,8 +7322,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -7333,13 +7333,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 251.362083ms + duration: 349.011125ms - id: 204 request: proto: HTTP/1.1 @@ -7358,8 +7358,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -7369,13 +7369,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 265.661458ms + duration: 353.362667ms - id: 205 request: proto: HTTP/1.1 @@ -7394,8 +7394,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -7403,15 +7403,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 231.18925ms + duration: 421.193125ms - id: 206 request: proto: HTTP/1.1 @@ -7430,8 +7430,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -7441,13 +7441,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 260.168292ms + duration: 312.296167ms - id: 207 request: proto: HTTP/1.1 @@ -7466,8 +7466,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -7477,13 +7477,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 497.753459ms + duration: 303.618333ms - id: 208 request: proto: HTTP/1.1 @@ -7502,8 +7502,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -7513,13 +7513,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 604.426208ms + duration: 282.698042ms - id: 209 request: proto: HTTP/1.1 @@ -7538,8 +7538,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -7549,13 +7549,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 444.217584ms + duration: 287.839708ms - id: 210 request: proto: HTTP/1.1 @@ -7574,8 +7574,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -7585,13 +7585,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 558.127209ms + duration: 304.90775ms - id: 211 request: proto: HTTP/1.1 @@ -7610,8 +7610,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -7621,13 +7621,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 179.435584ms + duration: 277.368292ms - id: 212 request: proto: HTTP/1.1 @@ -7646,8 +7646,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -7657,13 +7657,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 226.268959ms + duration: 301.529708ms - id: 213 request: proto: HTTP/1.1 @@ -7682,8 +7682,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -7693,13 +7693,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.915041ms + duration: 311.606292ms - id: 214 request: proto: HTTP/1.1 @@ -7718,8 +7718,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -7727,15 +7727,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 211.659667ms + duration: 304.575541ms - id: 215 request: proto: HTTP/1.1 @@ -7754,8 +7754,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -7765,13 +7765,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 200.085916ms + duration: 312.085459ms - id: 216 request: proto: HTTP/1.1 @@ -7790,8 +7790,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -7801,13 +7801,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 251.816292ms + duration: 281.772833ms - id: 217 request: proto: HTTP/1.1 @@ -7826,8 +7826,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -7835,15 +7835,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 266.1485ms + duration: 280.510584ms - id: 218 request: proto: HTTP/1.1 @@ -7862,8 +7862,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -7873,13 +7873,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_WbLx5mfTf6jSZnlF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_SmIJmENhimuTbsoF","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 233.533875ms + duration: 725.135292ms - id: 219 request: proto: HTTP/1.1 @@ -7898,8 +7898,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -7909,13 +7909,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_Gr2rajErE6aulUtd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_nAEHqsphtqmZMm5d","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 496.360375ms + duration: 287.80975ms - id: 220 request: proto: HTTP/1.1 @@ -7934,8 +7934,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -7945,13 +7945,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 370.022167ms + duration: 302.934708ms - id: 221 request: proto: HTTP/1.1 @@ -7970,8 +7970,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -7981,13 +7981,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.815583ms + duration: 288.857209ms - id: 222 request: proto: HTTP/1.1 @@ -8006,8 +8006,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections/con_SmIJmENhimuTbsoF method: GET response: proto: HTTP/2.0 @@ -8017,13 +8017,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 470.792709ms + duration: 327.291875ms - id: 223 request: proto: HTTP/1.1 @@ -8042,8 +8042,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: GET response: proto: HTTP/2.0 @@ -8053,13 +8053,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"id":"org_IPuPgllFxtjaKHaf","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 669.627333ms + duration: 284.003834ms - id: 224 request: proto: HTTP/1.1 @@ -8078,8 +8078,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections/con_nAEHqsphtqmZMm5d method: GET response: proto: HTTP/2.0 @@ -8089,13 +8089,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mQ4KWlSOf8pe6Jc5","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 531.843584ms + duration: 290.485666ms - id: 225 request: proto: HTTP/1.1 @@ -8114,8 +8114,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -8125,13 +8125,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_Gr2rajErE6aulUtd","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_WbLx5mfTf6jSZnlF","assign_membership_on_login":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_nAEHqsphtqmZMm5d","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_SmIJmENhimuTbsoF","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 380.711708ms + duration: 307.597125ms - id: 226 request: proto: HTTP/1.1 @@ -8150,8 +8150,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -8159,15 +8159,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.756875ms + duration: 313.9155ms - id: 227 request: proto: HTTP/1.1 @@ -8185,8 +8185,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections/con_SmIJmENhimuTbsoF method: DELETE response: proto: HTTP/2.0 @@ -8202,7 +8202,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 278.552375ms + duration: 280.695916ms - id: 228 request: proto: HTTP/1.1 @@ -8220,8 +8220,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections/con_nAEHqsphtqmZMm5d method: DELETE response: proto: HTTP/2.0 @@ -8237,7 +8237,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 309.869667ms + duration: 311.430083ms - id: 229 request: proto: HTTP/1.1 @@ -8255,8 +8255,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections/con_nAEHqsphtqmZMm5d method: DELETE response: proto: HTTP/2.0 @@ -8272,7 +8272,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 498.0545ms + duration: 284.722ms - id: 230 request: proto: HTTP/1.1 @@ -8290,8 +8290,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5/enabled_connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf/enabled_connections/con_SmIJmENhimuTbsoF method: DELETE response: proto: HTTP/2.0 @@ -8307,7 +8307,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 538.979625ms + duration: 304.758292ms - id: 231 request: proto: HTTP/1.1 @@ -8325,8 +8325,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mQ4KWlSOf8pe6Jc5 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_IPuPgllFxtjaKHaf method: DELETE response: proto: HTTP/2.0 @@ -8342,7 +8342,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 584.84125ms + duration: 320.639416ms - id: 232 request: proto: HTTP/1.1 @@ -8360,8 +8360,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_Gr2rajErE6aulUtd + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_nAEHqsphtqmZMm5d method: DELETE response: proto: HTTP/2.0 @@ -8371,13 +8371,13 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2023-12-19T13:52:03.867Z"}' + body: '{"deleted_at":"2024-05-27T09:40:56.452Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 351.864791ms + duration: 279.589208ms - id: 233 request: proto: HTTP/1.1 @@ -8395,8 +8395,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_WbLx5mfTf6jSZnlF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SmIJmENhimuTbsoF method: DELETE response: proto: HTTP/2.0 @@ -8406,10 +8406,10 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2023-12-19T13:52:04.102Z"}' + body: '{"deleted_at":"2024-05-27T09:40:56.789Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 216.340458ms + duration: 325.414834ms diff --git a/test/data/recordings/TestAccOrganizationMember.yaml b/test/data/recordings/TestAccOrganizationMember.yaml index b09fa7e95..ff5c21273 100644 --- a/test/data/recordings/TestAccOrganizationMember.yaml +++ b/test/data/recordings/TestAccOrganizationMember.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.4.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users method: POST response: @@ -30,13 +30,13 @@ interactions: trailer: {} content_length: 594 uncompressed: false - body: '{"created_at":"2023-12-19T13:46:17.282Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ea97a6c4fd1e42ff496","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:46:17.282Z","user_id":"auth0|65819ea97a6c4fd1e42ff496","username":"testaccorganizationmember11"}' + body: '{"created_at":"2024-05-27T09:37:36.357Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460f4306b7b1fa333bf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.357Z","user_id":"auth0|66545460f4306b7b1fa333bf","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 461.736834ms + duration: 460.8915ms - id: 1 request: proto: HTTP/1.1 @@ -55,8 +55,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ea97a6c4fd1e42ff496 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460f4306b7b1fa333bf method: GET response: proto: HTTP/2.0 @@ -66,13 +66,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:46:17.282Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ea97a6c4fd1e42ff496","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:46:17.282Z","user_id":"auth0|65819ea97a6c4fd1e42ff496","username":"testaccorganizationmember11"}' + body: '{"created_at":"2024-05-27T09:37:36.357Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460f4306b7b1fa333bf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.357Z","user_id":"auth0|66545460f4306b7b1fa333bf","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 214.220584ms + duration: 284.716125ms - id: 2 request: proto: HTTP/1.1 @@ -91,7 +91,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.4.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users method: POST response: @@ -102,13 +102,13 @@ interactions: trailer: {} content_length: 594 uncompressed: false - body: '{"created_at":"2023-12-19T13:46:18.524Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819eaacd2007f806899da1","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:46:18.524Z","user_id":"auth0|65819eaacd2007f806899da1","username":"testaccorganizationmember22"}' + body: '{"created_at":"2024-05-27T09:37:37.080Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545461e957844eac7ce91b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.080Z","user_id":"auth0|66545461e957844eac7ce91b","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 1.020766125s + duration: 435.564542ms - id: 3 request: proto: HTTP/1.1 @@ -127,8 +127,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819eaacd2007f806899da1 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545461e957844eac7ce91b method: GET response: proto: HTTP/2.0 @@ -138,13 +138,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:46:18.524Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819eaacd2007f806899da1","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:46:18.524Z","user_id":"auth0|65819eaacd2007f806899da1","username":"testaccorganizationmember22"}' + body: '{"created_at":"2024-05-27T09:37:37.080Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545461e957844eac7ce91b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.080Z","user_id":"auth0|66545461e957844eac7ce91b","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 460.447084ms + duration: 1.041027917s - id: 4 request: proto: HTTP/1.1 @@ -163,7 +163,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.4.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations method: POST response: @@ -174,13 +174,13 @@ interactions: trailer: {} content_length: 116 uncompressed: false - body: '{"name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember","id":"org_WBuaXdp7NRn9jBli"}' + body: '{"id":"org_G2o1nV1mHGSHCqk5","display_name":"testaccorganizationmember","name":"some-org-testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 217.855583ms + duration: 322.573792ms - id: 5 request: proto: HTTP/1.1 @@ -199,8 +199,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 method: GET response: proto: HTTP/2.0 @@ -210,13 +210,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 312.357ms + duration: 556.814ms - id: 6 request: proto: HTTP/1.1 @@ -229,14 +229,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|65819ea97a6c4fd1e42ff496"]} + {"members":["auth0|66545460f4306b7b1fa333bf"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members method: POST response: proto: HTTP/2.0 @@ -252,7 +252,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 248.302542ms + duration: 556.917ms - id: 7 request: proto: HTTP/1.1 @@ -271,8 +271,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -282,13 +282,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|66545460f4306b7b1fa333bf","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 314.13625ms + duration: 331.232875ms - id: 8 request: proto: HTTP/1.1 @@ -307,8 +307,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 method: GET response: proto: HTTP/2.0 @@ -318,13 +318,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 441.120375ms + duration: 313.693291ms - id: 9 request: proto: HTTP/1.1 @@ -343,8 +343,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -360,7 +360,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 325.02975ms + duration: 301.354291ms - id: 10 request: proto: HTTP/1.1 @@ -379,8 +379,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -390,13 +390,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|66545460f4306b7b1fa333bf"}],"next":"MjAyNC0wNS0yNyAwOTozNzozOS40NjgwMDBVVEMsYXV0aDB8NjY1NDU0NjBmNDMwNmI3YjFmYTMzM2Jm"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 366.161083ms + duration: 322.459292ms - id: 11 request: proto: HTTP/1.1 @@ -415,8 +415,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozNzozOS40NjgwMDBVVEMsYXV0aDB8NjY1NDU0NjBmNDMwNmI3YjFmYTMzM2Jm&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -424,15 +424,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 158.044666ms + duration: 314.154167ms - id: 12 request: proto: HTTP/1.1 @@ -451,8 +451,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 method: GET response: proto: HTTP/2.0 @@ -462,13 +462,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 255.858333ms + duration: 296.548958ms - id: 13 request: proto: HTTP/1.1 @@ -487,8 +487,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -498,13 +498,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.969125ms + duration: 332.563208ms - id: 14 request: proto: HTTP/1.1 @@ -523,8 +523,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ea97a6c4fd1e42ff496 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -534,13 +534,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:46:17.282Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ea97a6c4fd1e42ff496","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:46:17.282Z","user_id":"auth0|65819ea97a6c4fd1e42ff496","username":"testaccorganizationmember11"}' + body: '{"members":[{"user_id":"auth0|66545460f4306b7b1fa333bf"}],"next":"MjAyNC0wNS0yNyAwOTozNzozOS40NjgwMDBVVEMsYXV0aDB8NjY1NDU0NjBmNDMwNmI3YjFmYTMzM2Jm"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.693833ms + duration: 316.551875ms - id: 15 request: proto: HTTP/1.1 @@ -559,8 +559,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819eaacd2007f806899da1 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozNzozOS40NjgwMDBVVEMsYXV0aDB8NjY1NDU0NjBmNDMwNmI3YjFmYTMzM2Jm&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -568,15 +568,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2023-12-19T13:46:18.524Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819eaacd2007f806899da1","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:46:18.524Z","user_id":"auth0|65819eaacd2007f806899da1","username":"testaccorganizationmember22"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.575583ms + duration: 326.593083ms - id: 16 request: proto: HTTP/1.1 @@ -595,8 +595,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460f4306b7b1fa333bf method: GET response: proto: HTTP/2.0 @@ -606,13 +606,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"created_at":"2024-05-27T09:37:36.357Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460f4306b7b1fa333bf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.357Z","user_id":"auth0|66545460f4306b7b1fa333bf","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.920375ms + duration: 324.805667ms - id: 17 request: proto: HTTP/1.1 @@ -631,8 +631,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545461e957844eac7ce91b method: GET response: proto: HTTP/2.0 @@ -642,13 +642,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"created_at":"2024-05-27T09:37:37.080Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545461e957844eac7ce91b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.080Z","user_id":"auth0|66545461e957844eac7ce91b","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 444.43ms + duration: 302.399333ms - id: 18 request: proto: HTTP/1.1 @@ -667,8 +667,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 method: GET response: proto: HTTP/2.0 @@ -678,13 +678,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 239.55475ms + duration: 303.905708ms - id: 19 request: proto: HTTP/1.1 @@ -703,8 +703,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -714,13 +714,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"members":[{"user_id":"auth0|66545460f4306b7b1fa333bf","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 217.5635ms + duration: 309.517833ms - id: 20 request: proto: HTTP/1.1 @@ -739,8 +739,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 method: GET response: proto: HTTP/2.0 @@ -750,13 +750,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.541ms + duration: 277.7125ms - id: 21 request: proto: HTTP/1.1 @@ -775,8 +775,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ea97a6c4fd1e42ff496 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -786,13 +786,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:46:17.282Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ea97a6c4fd1e42ff496","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:46:17.282Z","user_id":"auth0|65819ea97a6c4fd1e42ff496","username":"testaccorganizationmember11"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 266.002083ms + duration: 306.438583ms - id: 22 request: proto: HTTP/1.1 @@ -811,8 +811,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819eaacd2007f806899da1 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -822,13 +822,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:46:18.524Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819eaacd2007f806899da1","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:46:18.524Z","user_id":"auth0|65819eaacd2007f806899da1","username":"testaccorganizationmember22"}' + body: '{"members":[{"user_id":"auth0|66545460f4306b7b1fa333bf"}],"next":"MjAyNC0wNS0yNyAwOTozNzozOS40NjgwMDBVVEMsYXV0aDB8NjY1NDU0NjBmNDMwNmI3YjFmYTMzM2Jm"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 504.041792ms + duration: 306.9025ms - id: 23 request: proto: HTTP/1.1 @@ -847,8 +847,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozNzozOS40NjgwMDBVVEMsYXV0aDB8NjY1NDU0NjBmNDMwNmI3YjFmYTMzM2Jm&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -856,15 +856,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 402.235708ms + duration: 285.592625ms - id: 24 request: proto: HTTP/1.1 @@ -883,8 +883,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460f4306b7b1fa333bf method: GET response: proto: HTTP/2.0 @@ -894,49 +894,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"created_at":"2024-05-27T09:37:36.357Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460f4306b7b1fa333bf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.357Z","user_id":"auth0|66545460f4306b7b1fa333bf","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.108292ms + duration: 325.559916ms - id: 25 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|65819eaacd2007f806899da1"]} + null form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members - method: POST + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545461e957844eac7ce91b + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-05-27T09:37:37.080Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545461e957844eac7ce91b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.080Z","user_id":"auth0|66545461e957844eac7ce91b","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 263.966125ms + status: 200 OK + code: 200 + duration: 300.019709ms - id: 26 request: proto: HTTP/1.1 @@ -955,8 +955,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 method: GET response: proto: HTTP/2.0 @@ -966,13 +966,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819eaacd2007f806899da1","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":2}' + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.913458ms + duration: 282.17575ms - id: 27 request: proto: HTTP/1.1 @@ -991,8 +991,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1002,49 +1002,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"members":[{"user_id":"auth0|66545460f4306b7b1fa333bf","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 447.889ms + duration: 295.486084ms - id: 28 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 47 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"members":["auth0|66545461e957844eac7ce91b"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/enabled_connections?include_totals=true&page=0&per_page=100 - method: GET + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 491.126625ms + status: 204 No Content + code: 204 + duration: 312.306459ms - id: 29 request: proto: HTTP/1.1 @@ -1063,8 +1063,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1074,13 +1074,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819eaacd2007f806899da1","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|66545461e957844eac7ce91b","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|66545460f4306b7b1fa333bf","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 637.007042ms + duration: 317.404166ms - id: 30 request: proto: HTTP/1.1 @@ -1099,8 +1099,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 method: GET response: proto: HTTP/2.0 @@ -1110,13 +1110,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 422.310833ms + duration: 279.666042ms - id: 31 request: proto: HTTP/1.1 @@ -1135,8 +1135,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1152,7 +1152,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 525.993666ms + duration: 301.698541ms - id: 32 request: proto: HTTP/1.1 @@ -1171,8 +1171,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1182,13 +1182,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819eaacd2007f806899da1","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|66545461e957844eac7ce91b"},{"user_id":"auth0|66545460f4306b7b1fa333bf"}],"next":"MjAyNC0wNS0yNyAwOTozNzo0OC4zODYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 430.188667ms + duration: 302.861709ms - id: 33 request: proto: HTTP/1.1 @@ -1207,8 +1207,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ea97a6c4fd1e42ff496 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozNzo0OC4zODYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1216,15 +1216,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2023-12-19T13:46:17.282Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ea97a6c4fd1e42ff496","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:46:17.282Z","user_id":"auth0|65819ea97a6c4fd1e42ff496","username":"testaccorganizationmember11"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 172.391208ms + duration: 287.575375ms - id: 34 request: proto: HTTP/1.1 @@ -1243,8 +1243,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819eaacd2007f806899da1 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 method: GET response: proto: HTTP/2.0 @@ -1254,13 +1254,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:46:18.524Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819eaacd2007f806899da1","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:46:18.524Z","user_id":"auth0|65819eaacd2007f806899da1","username":"testaccorganizationmember22"}' + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 211.753584ms + duration: 278.7445ms - id: 35 request: proto: HTTP/1.1 @@ -1279,8 +1279,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1290,13 +1290,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 451.987792ms + duration: 311.959333ms - id: 36 request: proto: HTTP/1.1 @@ -1315,8 +1315,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1326,13 +1326,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819eaacd2007f806899da1","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":2}' + body: '{"members":[{"user_id":"auth0|66545461e957844eac7ce91b"},{"user_id":"auth0|66545460f4306b7b1fa333bf"}],"next":"MjAyNC0wNS0yNyAwOTozNzo0OC4zODYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 450.509667ms + duration: 367.581625ms - id: 37 request: proto: HTTP/1.1 @@ -1351,8 +1351,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozNzo0OC4zODYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1360,15 +1360,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|65819eaacd2007f806899da1","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":2}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 203.393125ms + duration: 386.530958ms - id: 38 request: proto: HTTP/1.1 @@ -1387,8 +1387,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460f4306b7b1fa333bf method: GET response: proto: HTTP/2.0 @@ -1398,13 +1398,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"created_at":"2024-05-27T09:37:36.357Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460f4306b7b1fa333bf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.357Z","user_id":"auth0|66545460f4306b7b1fa333bf","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 256.061583ms + duration: 318.571ms - id: 39 request: proto: HTTP/1.1 @@ -1423,8 +1423,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545461e957844eac7ce91b method: GET response: proto: HTTP/2.0 @@ -1434,13 +1434,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"created_at":"2024-05-27T09:37:37.080Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545461e957844eac7ce91b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.080Z","user_id":"auth0|66545461e957844eac7ce91b","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 365.912542ms + duration: 328.557958ms - id: 40 request: proto: HTTP/1.1 @@ -1459,8 +1459,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 method: GET response: proto: HTTP/2.0 @@ -1470,13 +1470,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819eaacd2007f806899da1","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 260.73225ms + duration: 351.146708ms - id: 41 request: proto: HTTP/1.1 @@ -1495,8 +1495,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1506,13 +1506,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819eaacd2007f806899da1","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":2}' + body: '{"members":[{"user_id":"auth0|66545461e957844eac7ce91b","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|66545460f4306b7b1fa333bf","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 289.423042ms + duration: 348.516459ms - id: 42 request: proto: HTTP/1.1 @@ -1531,8 +1531,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1542,13 +1542,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819eaacd2007f806899da1","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":2}' + body: '{"members":[{"user_id":"auth0|66545461e957844eac7ce91b","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|66545460f4306b7b1fa333bf","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 486.462125ms + duration: 413.308334ms - id: 43 request: proto: HTTP/1.1 @@ -1567,8 +1567,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ea97a6c4fd1e42ff496 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 method: GET response: proto: HTTP/2.0 @@ -1578,13 +1578,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:46:17.282Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ea97a6c4fd1e42ff496","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:46:17.282Z","user_id":"auth0|65819ea97a6c4fd1e42ff496","username":"testaccorganizationmember11"}' + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 682.476458ms + duration: 279.681208ms - id: 44 request: proto: HTTP/1.1 @@ -1603,8 +1603,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819eaacd2007f806899da1 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1614,13 +1614,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:46:18.524Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819eaacd2007f806899da1","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:46:18.524Z","user_id":"auth0|65819eaacd2007f806899da1","username":"testaccorganizationmember22"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 495.700417ms + duration: 289.79825ms - id: 45 request: proto: HTTP/1.1 @@ -1639,8 +1639,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1650,13 +1650,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"members":[{"user_id":"auth0|66545461e957844eac7ce91b"},{"user_id":"auth0|66545460f4306b7b1fa333bf"}],"next":"MjAyNC0wNS0yNyAwOTozNzo0OC4zODYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 508.128625ms + duration: 289.030875ms - id: 46 request: proto: HTTP/1.1 @@ -1675,8 +1675,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozNzo0OC4zODYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1684,15 +1684,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 408.864416ms + duration: 281.514791ms - id: 47 request: proto: HTTP/1.1 @@ -1711,8 +1711,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460f4306b7b1fa333bf method: GET response: proto: HTTP/2.0 @@ -1722,13 +1722,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"created_at":"2024-05-27T09:37:36.357Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460f4306b7b1fa333bf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.357Z","user_id":"auth0|66545460f4306b7b1fa333bf","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 274.136833ms + duration: 291.640542ms - id: 48 request: proto: HTTP/1.1 @@ -1747,8 +1747,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1758,85 +1758,85 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819eaacd2007f806899da1","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|66545461e957844eac7ce91b","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|66545460f4306b7b1fa333bf","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.714875ms + duration: 291.666417ms - id: 49 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|65819eaacd2007f806899da1"]} + null form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members - method: DELETE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?include_totals=true&per_page=50 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|66545461e957844eac7ce91b","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|66545460f4306b7b1fa333bf","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":2}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 156.751125ms + status: 200 OK + code: 200 + duration: 310.175792ms - id: 50 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|65819ea97a6c4fd1e42ff496"]} + null form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members - method: DELETE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545461e957844eac7ce91b + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-05-27T09:37:37.080Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545461e957844eac7ce91b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.080Z","user_id":"auth0|66545461e957844eac7ce91b","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 202.546375ms + status: 200 OK + code: 200 + duration: 278.785584ms - id: 51 request: proto: HTTP/1.1 @@ -1855,8 +1855,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 method: GET response: proto: HTTP/2.0 @@ -1866,13 +1866,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 189.59125ms + duration: 313.883417ms - id: 52 request: proto: HTTP/1.1 @@ -1891,8 +1891,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 method: GET response: proto: HTTP/2.0 @@ -1902,13 +1902,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 226.750583ms + duration: 303.244416ms - id: 53 request: proto: HTTP/1.1 @@ -1927,8 +1927,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1936,15 +1936,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 - uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 237.349583ms + duration: 286.665084ms - id: 54 request: proto: HTTP/1.1 @@ -1963,8 +1963,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ea97a6c4fd1e42ff496 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1974,13 +1974,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:46:17.282Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ea97a6c4fd1e42ff496","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:46:17.282Z","user_id":"auth0|65819ea97a6c4fd1e42ff496","username":"testaccorganizationmember11"}' + body: '{"members":[{"user_id":"auth0|66545461e957844eac7ce91b"},{"user_id":"auth0|66545460f4306b7b1fa333bf"}],"next":"MjAyNC0wNS0yNyAwOTozNzo0OC4zODYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 269.089292ms + duration: 299.632458ms - id: 55 request: proto: HTTP/1.1 @@ -1999,8 +1999,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819eaacd2007f806899da1 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozNzo0OC4zODYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2008,87 +2008,87 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2023-12-19T13:46:18.524Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819eaacd2007f806899da1","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:46:18.524Z","user_id":"auth0|65819eaacd2007f806899da1","username":"testaccorganizationmember22"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 313.56575ms + duration: 280.417417ms - id: 56 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 47 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"members":["auth0|66545461e957844eac7ce91b"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli - method: GET + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 290.347458ms + status: 204 No Content + code: 204 + duration: 284.505792ms - id: 57 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 47 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"members":["auth0|66545460f4306b7b1fa333bf"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli - method: GET + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 306.225209ms + status: 204 No Content + code: 204 + duration: 292.161292ms - id: 58 request: proto: HTTP/1.1 @@ -2107,8 +2107,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 method: GET response: proto: HTTP/2.0 @@ -2118,13 +2118,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.897084ms + duration: 289.909375ms - id: 59 request: proto: HTTP/1.1 @@ -2143,8 +2143,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2152,15 +2152,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 - uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.775583ms + duration: 306.712416ms - id: 60 request: proto: HTTP/1.1 @@ -2179,8 +2179,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ea97a6c4fd1e42ff496 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2188,15 +2188,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2023-12-19T13:46:17.282Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ea97a6c4fd1e42ff496","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:46:17.282Z","user_id":"auth0|65819ea97a6c4fd1e42ff496","username":"testaccorganizationmember11"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 204.816708ms + duration: 326.24925ms - id: 61 request: proto: HTTP/1.1 @@ -2215,8 +2215,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819eaacd2007f806899da1 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460f4306b7b1fa333bf method: GET response: proto: HTTP/2.0 @@ -2226,13 +2226,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:46:18.524Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819eaacd2007f806899da1","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:46:18.524Z","user_id":"auth0|65819eaacd2007f806899da1","username":"testaccorganizationmember22"}' + body: '{"created_at":"2024-05-27T09:37:36.357Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460f4306b7b1fa333bf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.357Z","user_id":"auth0|66545460f4306b7b1fa333bf","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 256.518125ms + duration: 310.026333ms - id: 62 request: proto: HTTP/1.1 @@ -2251,8 +2251,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545461e957844eac7ce91b method: GET response: proto: HTTP/2.0 @@ -2262,13 +2262,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"created_at":"2024-05-27T09:37:37.080Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545461e957844eac7ce91b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.080Z","user_id":"auth0|66545461e957844eac7ce91b","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 262.794916ms + duration: 298.257917ms - id: 63 request: proto: HTTP/1.1 @@ -2287,8 +2287,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 method: GET response: proto: HTTP/2.0 @@ -2298,13 +2298,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.131375ms + duration: 299.824333ms - id: 64 request: proto: HTTP/1.1 @@ -2323,8 +2323,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 method: GET response: proto: HTTP/2.0 @@ -2334,13 +2334,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.19375ms + duration: 281.979542ms - id: 65 request: proto: HTTP/1.1 @@ -2359,8 +2359,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2368,15 +2368,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 - uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 253.442792ms + duration: 315.64075ms - id: 66 request: proto: HTTP/1.1 @@ -2395,8 +2395,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ea97a6c4fd1e42ff496 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2404,15 +2404,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2023-12-19T13:46:17.282Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ea97a6c4fd1e42ff496","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:46:17.282Z","user_id":"auth0|65819ea97a6c4fd1e42ff496","username":"testaccorganizationmember11"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.635084ms + duration: 311.827458ms - id: 67 request: proto: HTTP/1.1 @@ -2431,8 +2431,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819eaacd2007f806899da1 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460f4306b7b1fa333bf method: GET response: proto: HTTP/2.0 @@ -2442,13 +2442,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:46:18.524Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819eaacd2007f806899da1","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:46:18.524Z","user_id":"auth0|65819eaacd2007f806899da1","username":"testaccorganizationmember22"}' + body: '{"created_at":"2024-05-27T09:37:36.357Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460f4306b7b1fa333bf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.357Z","user_id":"auth0|66545460f4306b7b1fa333bf","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 319.240667ms + duration: 461.520458ms - id: 68 request: proto: HTTP/1.1 @@ -2467,8 +2467,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545461e957844eac7ce91b method: GET response: proto: HTTP/2.0 @@ -2478,13 +2478,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"created_at":"2024-05-27T09:37:37.080Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545461e957844eac7ce91b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.080Z","user_id":"auth0|66545461e957844eac7ce91b","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 314.605458ms + duration: 283.722792ms - id: 69 request: proto: HTTP/1.1 @@ -2503,8 +2503,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 method: GET response: proto: HTTP/2.0 @@ -2514,13 +2514,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 223.395958ms + duration: 297.368708ms - id: 70 request: proto: HTTP/1.1 @@ -2539,8 +2539,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 method: GET response: proto: HTTP/2.0 @@ -2550,13 +2550,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 324.881375ms + duration: 277.719458ms - id: 71 request: proto: HTTP/1.1 @@ -2575,8 +2575,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2584,15 +2584,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 - uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 193.0675ms + duration: 294.785542ms - id: 72 request: proto: HTTP/1.1 @@ -2611,8 +2611,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ea97a6c4fd1e42ff496 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2620,15 +2620,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2023-12-19T13:46:17.282Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ea97a6c4fd1e42ff496","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:46:17.282Z","user_id":"auth0|65819ea97a6c4fd1e42ff496","username":"testaccorganizationmember11"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 511.128125ms + duration: 283.84325ms - id: 73 request: proto: HTTP/1.1 @@ -2647,8 +2647,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819eaacd2007f806899da1 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460f4306b7b1fa333bf method: GET response: proto: HTTP/2.0 @@ -2658,13 +2658,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:46:18.524Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819eaacd2007f806899da1","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:46:18.524Z","user_id":"auth0|65819eaacd2007f806899da1","username":"testaccorganizationmember22"}' + body: '{"created_at":"2024-05-27T09:37:36.357Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460f4306b7b1fa333bf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.357Z","user_id":"auth0|66545460f4306b7b1fa333bf","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 412.171125ms + duration: 299.824708ms - id: 74 request: proto: HTTP/1.1 @@ -2683,8 +2683,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545461e957844eac7ce91b method: GET response: proto: HTTP/2.0 @@ -2694,13 +2694,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"created_at":"2024-05-27T09:37:37.080Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545461e957844eac7ce91b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.080Z","user_id":"auth0|66545461e957844eac7ce91b","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 255.662708ms + duration: 339.852375ms - id: 75 request: proto: HTTP/1.1 @@ -2719,8 +2719,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 method: GET response: proto: HTTP/2.0 @@ -2728,51 +2728,51 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 - uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + content_length: -1 + uncompressed: true + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 239.039792ms + duration: 290.163917ms - id: 76 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 80 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|65819ea97a6c4fd1e42ff496","auth0|65819eaacd2007f806899da1"]} + null form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members - method: POST + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 332.608625ms + status: 200 OK + code: 200 + duration: 280.496167ms - id: 77 request: proto: HTTP/1.1 @@ -2791,8 +2791,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2802,13 +2802,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819eaacd2007f806899da1","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.640709ms + duration: 306.841583ms - id: 78 request: proto: HTTP/1.1 @@ -2827,8 +2827,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ea97a6c4fd1e42ff496 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2836,15 +2836,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2023-12-19T13:46:17.282Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ea97a6c4fd1e42ff496","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:46:17.282Z","user_id":"auth0|65819ea97a6c4fd1e42ff496","username":"testaccorganizationmember11"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 262.555416ms + duration: 301.468083ms - id: 79 request: proto: HTTP/1.1 @@ -2863,8 +2863,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819eaacd2007f806899da1 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460f4306b7b1fa333bf method: GET response: proto: HTTP/2.0 @@ -2874,13 +2874,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:46:18.524Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819eaacd2007f806899da1","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:46:18.524Z","user_id":"auth0|65819eaacd2007f806899da1","username":"testaccorganizationmember22"}' + body: '{"created_at":"2024-05-27T09:37:36.357Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460f4306b7b1fa333bf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.357Z","user_id":"auth0|66545460f4306b7b1fa333bf","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 316.0245ms + duration: 272.214084ms - id: 80 request: proto: HTTP/1.1 @@ -2899,8 +2899,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545461e957844eac7ce91b method: GET response: proto: HTTP/2.0 @@ -2910,13 +2910,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"created_at":"2024-05-27T09:37:37.080Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545461e957844eac7ce91b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.080Z","user_id":"auth0|66545461e957844eac7ce91b","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.361042ms + duration: 298.000708ms - id: 81 request: proto: HTTP/1.1 @@ -2935,8 +2935,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 method: GET response: proto: HTTP/2.0 @@ -2946,13 +2946,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819eaacd2007f806899da1","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 260.706833ms + duration: 301.984292ms - id: 82 request: proto: HTTP/1.1 @@ -2971,8 +2971,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2980,51 +2980,51 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|65819eaacd2007f806899da1","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":2}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 273.114ms + duration: 276.181875ms - id: 83 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 80 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"members":["auth0|66545460f4306b7b1fa333bf","auth0|66545461e957844eac7ce91b"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli - method: GET + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 173.382959ms + status: 204 No Content + code: 204 + duration: 474.556834ms - id: 84 request: proto: HTTP/1.1 @@ -3043,8 +3043,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3054,13 +3054,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"members":[{"user_id":"auth0|66545461e957844eac7ce91b"},{"user_id":"auth0|66545460f4306b7b1fa333bf"}],"next":"MjAyNC0wNS0yNyAwOTozODoxNC42NzYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 228.504625ms + duration: 315.208334ms - id: 85 request: proto: HTTP/1.1 @@ -3079,8 +3079,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoxNC42NzYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3088,15 +3088,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|65819eaacd2007f806899da1","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 251.867667ms + duration: 317.107333ms - id: 86 request: proto: HTTP/1.1 @@ -3115,8 +3115,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460f4306b7b1fa333bf method: GET response: proto: HTTP/2.0 @@ -3126,13 +3126,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819eaacd2007f806899da1","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":2}' + body: '{"created_at":"2024-05-27T09:37:36.357Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460f4306b7b1fa333bf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.357Z","user_id":"auth0|66545460f4306b7b1fa333bf","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.009459ms + duration: 308.004375ms - id: 87 request: proto: HTTP/1.1 @@ -3151,8 +3151,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545461e957844eac7ce91b method: GET response: proto: HTTP/2.0 @@ -3162,13 +3162,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"created_at":"2024-05-27T09:37:37.080Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545461e957844eac7ce91b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.080Z","user_id":"auth0|66545461e957844eac7ce91b","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 503.870292ms + duration: 277.186625ms - id: 88 request: proto: HTTP/1.1 @@ -3187,8 +3187,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 method: GET response: proto: HTTP/2.0 @@ -3198,13 +3198,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 410.546667ms + duration: 305.29575ms - id: 89 request: proto: HTTP/1.1 @@ -3223,8 +3223,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3234,13 +3234,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819eaacd2007f806899da1","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|66545461e957844eac7ce91b"},{"user_id":"auth0|66545460f4306b7b1fa333bf"}],"next":"MjAyNC0wNS0yNyAwOTozODoxNC42NzYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 238.057166ms + duration: 326.460292ms - id: 90 request: proto: HTTP/1.1 @@ -3259,8 +3259,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ea97a6c4fd1e42ff496 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoxNC42NzYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3268,15 +3268,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2023-12-19T13:46:17.282Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ea97a6c4fd1e42ff496","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:46:17.282Z","user_id":"auth0|65819ea97a6c4fd1e42ff496","username":"testaccorganizationmember11"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.244625ms + duration: 296.007125ms - id: 91 request: proto: HTTP/1.1 @@ -3295,8 +3295,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819eaacd2007f806899da1 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -3306,13 +3306,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:46:18.524Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819eaacd2007f806899da1","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:46:18.524Z","user_id":"auth0|65819eaacd2007f806899da1","username":"testaccorganizationmember22"}' + body: '{"members":[{"user_id":"auth0|66545461e957844eac7ce91b","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|66545460f4306b7b1fa333bf","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 463.234666ms + duration: 287.105417ms - id: 92 request: proto: HTTP/1.1 @@ -3331,8 +3331,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 method: GET response: proto: HTTP/2.0 @@ -3342,13 +3342,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 327.605708ms + duration: 300.146916ms - id: 93 request: proto: HTTP/1.1 @@ -3367,8 +3367,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3378,13 +3378,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819eaacd2007f806899da1","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 228.365625ms + duration: 279.511125ms - id: 94 request: proto: HTTP/1.1 @@ -3403,8 +3403,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3414,13 +3414,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819eaacd2007f806899da1","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":2}' + body: '{"members":[{"user_id":"auth0|66545461e957844eac7ce91b"},{"user_id":"auth0|66545460f4306b7b1fa333bf"}],"next":"MjAyNC0wNS0yNyAwOTozODoxNC42NzYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 254.950542ms + duration: 288.477ms - id: 95 request: proto: HTTP/1.1 @@ -3439,8 +3439,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoxNC42NzYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3448,15 +3448,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|65819eaacd2007f806899da1","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":2}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 242.503416ms + duration: 283.816459ms - id: 96 request: proto: HTTP/1.1 @@ -3475,8 +3475,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 method: GET response: proto: HTTP/2.0 @@ -3486,13 +3486,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.200792ms + duration: 310.023542ms - id: 97 request: proto: HTTP/1.1 @@ -3511,8 +3511,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -3522,13 +3522,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"members":[{"user_id":"auth0|66545461e957844eac7ce91b","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|66545460f4306b7b1fa333bf","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 297.047542ms + duration: 325.45975ms - id: 98 request: proto: HTTP/1.1 @@ -3547,8 +3547,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3558,13 +3558,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819eaacd2007f806899da1","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 228.199958ms + duration: 410.678916ms - id: 99 request: proto: HTTP/1.1 @@ -3583,8 +3583,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3594,13 +3594,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"members":[{"user_id":"auth0|66545461e957844eac7ce91b"},{"user_id":"auth0|66545460f4306b7b1fa333bf"}],"next":"MjAyNC0wNS0yNyAwOTozODoxNC42NzYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 323.664125ms + duration: 335.276875ms - id: 100 request: proto: HTTP/1.1 @@ -3619,8 +3619,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoxNC42NzYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3628,15 +3628,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 319.9555ms + duration: 350.2755ms - id: 101 request: proto: HTTP/1.1 @@ -3655,8 +3655,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460f4306b7b1fa333bf method: GET response: proto: HTTP/2.0 @@ -3666,13 +3666,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819eaacd2007f806899da1","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"created_at":"2024-05-27T09:37:36.357Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460f4306b7b1fa333bf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.357Z","user_id":"auth0|66545460f4306b7b1fa333bf","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 376.47175ms + duration: 525.722041ms - id: 102 request: proto: HTTP/1.1 @@ -3691,8 +3691,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ea97a6c4fd1e42ff496 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545461e957844eac7ce91b method: GET response: proto: HTTP/2.0 @@ -3702,13 +3702,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:46:17.282Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ea97a6c4fd1e42ff496","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:46:17.282Z","user_id":"auth0|65819ea97a6c4fd1e42ff496","username":"testaccorganizationmember11"}' + body: '{"created_at":"2024-05-27T09:37:37.080Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545461e957844eac7ce91b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.080Z","user_id":"auth0|66545461e957844eac7ce91b","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 222.740333ms + duration: 423.000375ms - id: 103 request: proto: HTTP/1.1 @@ -3727,8 +3727,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819eaacd2007f806899da1 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 method: GET response: proto: HTTP/2.0 @@ -3738,13 +3738,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:46:18.524Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819eaacd2007f806899da1","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:46:18.524Z","user_id":"auth0|65819eaacd2007f806899da1","username":"testaccorganizationmember22"}' + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 147.851375ms + duration: 346.54225ms - id: 104 request: proto: HTTP/1.1 @@ -3763,8 +3763,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3774,13 +3774,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"members":[{"user_id":"auth0|66545461e957844eac7ce91b"},{"user_id":"auth0|66545460f4306b7b1fa333bf"}],"next":"MjAyNC0wNS0yNyAwOTozODoxNC42NzYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 197.802792ms + duration: 314.440584ms - id: 105 request: proto: HTTP/1.1 @@ -3799,8 +3799,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoxNC42NzYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3808,15 +3808,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|65819eaacd2007f806899da1","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 253.816792ms + duration: 290.4565ms - id: 106 request: proto: HTTP/1.1 @@ -3835,8 +3835,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -3846,13 +3846,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819eaacd2007f806899da1","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":2}' + body: '{"members":[{"user_id":"auth0|66545461e957844eac7ce91b","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|66545460f4306b7b1fa333bf","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 313.312083ms + duration: 327.903375ms - id: 107 request: proto: HTTP/1.1 @@ -3871,8 +3871,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -3882,13 +3882,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_WBuaXdp7NRn9jBli","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"members":[{"user_id":"auth0|66545461e957844eac7ce91b","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|66545460f4306b7b1fa333bf","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.519375ms + duration: 319.828875ms - id: 108 request: proto: HTTP/1.1 @@ -3907,8 +3907,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 method: GET response: proto: HTTP/2.0 @@ -3918,13 +3918,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819eaacd2007f806899da1","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":2}' + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.090915167s + duration: 327.930167ms - id: 109 request: proto: HTTP/1.1 @@ -3943,8 +3943,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3960,7 +3960,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 923.658833ms + duration: 313.106584ms - id: 110 request: proto: HTTP/1.1 @@ -3979,8 +3979,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3990,175 +3990,681 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819eaacd2007f806899da1","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|65819ea97a6c4fd1e42ff496","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|66545461e957844eac7ce91b"},{"user_id":"auth0|66545460f4306b7b1fa333bf"}],"next":"MjAyNC0wNS0yNyAwOTozODoxNC42NzYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 237.422292ms + duration: 287.371125ms - id: 111 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|65819eaacd2007f806899da1"]} + null form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members - method: DELETE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoxNC42NzYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 14 uncompressed: false - body: "" + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 378.170958ms + status: 200 OK + code: 200 + duration: 279.701583ms - id: 112 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|65819ea97a6c4fd1e42ff496"]} + null form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members - method: DELETE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 465.707083ms + status: 200 OK + code: 200 + duration: 288.018167ms - id: 113 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 80 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|65819ea97a6c4fd1e42ff496","auth0|65819eaacd2007f806899da1"]} + null form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli/members - method: DELETE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 497.352875ms + status: 200 OK + code: 200 + duration: 317.653083ms - id: 114 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + null form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_WBuaXdp7NRn9jBli - method: DELETE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|66545461e957844eac7ce91b"},{"user_id":"auth0|66545460f4306b7b1fa333bf"}],"next":"MjAyNC0wNS0yNyAwOTozODoxNC42NzYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 327.520708ms + status: 200 OK + code: 200 + duration: 309.115875ms - id: 115 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoxNC42NzYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 298.29075ms + - id: 116 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460f4306b7b1fa333bf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-05-27T09:37:36.357Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460f4306b7b1fa333bf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.357Z","user_id":"auth0|66545460f4306b7b1fa333bf","username":"testaccorganizationmember11"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 318.97425ms + - id: 117 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545461e957844eac7ce91b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-05-27T09:37:37.080Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545461e957844eac7ce91b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.080Z","user_id":"auth0|66545461e957844eac7ce91b","username":"testaccorganizationmember22"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 302.194167ms + - id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 317.692ms + - id: 119 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|66545461e957844eac7ce91b"},{"user_id":"auth0|66545460f4306b7b1fa333bf"}],"next":"MjAyNC0wNS0yNyAwOTozODoxNC42NzYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 290.785709ms + - id: 120 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoxNC42NzYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 351.715875ms + - id: 121 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|66545461e957844eac7ce91b","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|66545460f4306b7b1fa333bf","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 305.564708ms + - id: 122 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 301.368875ms + - id: 123 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|66545461e957844eac7ce91b","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|66545460f4306b7b1fa333bf","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 317.199292ms + - id: 124 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 307.457833ms + - id: 125 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|66545461e957844eac7ce91b"},{"user_id":"auth0|66545460f4306b7b1fa333bf"}],"next":"MjAyNC0wNS0yNyAwOTozODoxNC42NzYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 289.526875ms + - id: 126 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoxNC42NzYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 292.369083ms + - id: 127 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 47 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"members":["auth0|66545461e957844eac7ce91b"]} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 313.389083ms + - id: 128 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 47 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" + body: | + {"members":["auth0|66545460f4306b7b1fa333bf"]} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 298.538208ms + - id: 129 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 80 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"members":["auth0|66545460f4306b7b1fa333bf","auth0|66545461e957844eac7ce91b"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819eaacd2007f806899da1 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members method: DELETE response: proto: HTTP/2.0 @@ -4174,8 +4680,78 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 451.134166ms - - id: 116 + duration: 283.693958ms + - id: 130 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 305.2415ms + - id: 131 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545461e957844eac7ce91b + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 359.694542ms + - id: 132 request: proto: HTTP/1.1 proto_major: 1 @@ -4192,8 +4768,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ea97a6c4fd1e42ff496 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460f4306b7b1fa333bf method: DELETE response: proto: HTTP/2.0 @@ -4209,4 +4785,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 393.165667ms + duration: 387.844667ms diff --git a/test/data/recordings/TestAccOrganizationMemberRole.yaml b/test/data/recordings/TestAccOrganizationMemberRole.yaml index 6bab76ad0..3e894b51d 100644 --- a/test/data/recordings/TestAccOrganizationMemberRole.yaml +++ b/test/data/recordings/TestAccOrganizationMemberRole.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 + - Go-Auth0/1.4.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles method: POST response: @@ -30,13 +30,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 221.130959ms + duration: 811.623584ms - id: 1 request: proto: HTTP/1.1 @@ -55,8 +55,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_o52GudjrCMuX8tTu + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_60uuuh6AzMOvNeEc method: GET response: proto: HTTP/2.0 @@ -66,13 +66,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 99.706792ms + duration: 396.037334ms - id: 2 request: proto: HTTP/1.1 @@ -91,7 +91,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 + - Go-Auth0/1.4.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles method: POST response: @@ -102,13 +102,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 178.931292ms + duration: 325.779125ms - id: 3 request: proto: HTTP/1.1 @@ -127,8 +127,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LGbn31cI1MxGdxLF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_Yx7kSH1zslVmylQO method: GET response: proto: HTTP/2.0 @@ -138,13 +138,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 94.976458ms + duration: 305.023584ms - id: 4 request: proto: HTTP/1.1 @@ -163,7 +163,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 + - Go-Auth0/1.4.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users method: POST response: @@ -174,13 +174,13 @@ interactions: trailer: {} content_length: 605 uncompressed: false - body: '{"created_at":"2023-09-02T14:46:12.828Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64f34ab4a6e3590c7d1c9451","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-09-02T14:46:12.828Z","user_id":"auth0|64f34ab4a6e3590c7d1c9451","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-05-27T09:37:44.210Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545468e539b35aea9551f3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:44.210Z","user_id":"auth0|66545468e539b35aea9551f3","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 278.433667ms + duration: 441.516292ms - id: 5 request: proto: HTTP/1.1 @@ -199,8 +199,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64f34ab4a6e3590c7d1c9451 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545468e539b35aea9551f3 method: GET response: proto: HTTP/2.0 @@ -210,13 +210,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:46:12.828Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64f34ab4a6e3590c7d1c9451","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-09-02T14:46:12.828Z","user_id":"auth0|64f34ab4a6e3590c7d1c9451","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-05-27T09:37:44.210Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545468e539b35aea9551f3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:44.210Z","user_id":"auth0|66545468e539b35aea9551f3","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 104.357625ms + duration: 304.866667ms - id: 6 request: proto: HTTP/1.1 @@ -235,7 +235,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 + - Go-Auth0/1.4.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations method: POST response: @@ -246,13 +246,13 @@ interactions: trailer: {} content_length: 124 uncompressed: false - body: '{"name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole","id":"org_lMBvFcD6i9qoL3P2"}' + body: '{"id":"org_7LG73xnvjDFIaESb","display_name":"testaccorganizationmemberrole","name":"some-org-testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 102.044833ms + duration: 311.497083ms - id: 7 request: proto: HTTP/1.1 @@ -271,8 +271,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb method: GET response: proto: HTTP/2.0 @@ -282,13 +282,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_lMBvFcD6i9qoL3P2","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_7LG73xnvjDFIaESb","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 94.697583ms + duration: 298.653583ms - id: 8 request: proto: HTTP/1.1 @@ -301,14 +301,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|64f34ab4a6e3590c7d1c9451"]} + {"members":["auth0|66545468e539b35aea9551f3"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members method: POST response: proto: HTTP/2.0 @@ -324,7 +324,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 117.012708ms + duration: 316.664042ms - id: 9 request: proto: HTTP/1.1 @@ -343,8 +343,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -354,13 +354,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64f34ab4a6e3590c7d1c9451","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|66545468e539b35aea9551f3","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.946209ms + duration: 320.688458ms - id: 10 request: proto: HTTP/1.1 @@ -373,14 +373,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_o52GudjrCMuX8tTu"]} + {"roles":["rol_60uuuh6AzMOvNeEc"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles method: POST response: proto: HTTP/2.0 @@ -396,7 +396,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 108.217958ms + duration: 293.177875ms - id: 11 request: proto: HTTP/1.1 @@ -415,8 +415,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -426,13 +426,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 124.788542ms + duration: 323.552792ms - id: 12 request: proto: HTTP/1.1 @@ -451,8 +451,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_o52GudjrCMuX8tTu + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_60uuuh6AzMOvNeEc method: GET response: proto: HTTP/2.0 @@ -462,13 +462,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 106.350583ms + duration: 302.921875ms - id: 13 request: proto: HTTP/1.1 @@ -487,8 +487,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LGbn31cI1MxGdxLF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_Yx7kSH1zslVmylQO method: GET response: proto: HTTP/2.0 @@ -498,13 +498,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 229.945125ms + duration: 280.294791ms - id: 14 request: proto: HTTP/1.1 @@ -523,8 +523,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64f34ab4a6e3590c7d1c9451 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545468e539b35aea9551f3 method: GET response: proto: HTTP/2.0 @@ -534,13 +534,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:46:12.828Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64f34ab4a6e3590c7d1c9451","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-09-02T14:46:12.828Z","user_id":"auth0|64f34ab4a6e3590c7d1c9451","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-05-27T09:37:44.210Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545468e539b35aea9551f3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:44.210Z","user_id":"auth0|66545468e539b35aea9551f3","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.462708ms + duration: 297.972958ms - id: 15 request: proto: HTTP/1.1 @@ -559,8 +559,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb method: GET response: proto: HTTP/2.0 @@ -570,13 +570,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_lMBvFcD6i9qoL3P2","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_7LG73xnvjDFIaESb","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 104.418375ms + duration: 309.027666ms - id: 16 request: proto: HTTP/1.1 @@ -595,8 +595,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -606,13 +606,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64f34ab4a6e3590c7d1c9451","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|66545468e539b35aea9551f3","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 186.734292ms + duration: 292.226ms - id: 17 request: proto: HTTP/1.1 @@ -631,8 +631,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -642,13 +642,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 163.480416ms + duration: 284.855458ms - id: 18 request: proto: HTTP/1.1 @@ -667,8 +667,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_o52GudjrCMuX8tTu + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_60uuuh6AzMOvNeEc method: GET response: proto: HTTP/2.0 @@ -678,13 +678,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 94.047958ms + duration: 325.577583ms - id: 19 request: proto: HTTP/1.1 @@ -703,8 +703,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LGbn31cI1MxGdxLF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_Yx7kSH1zslVmylQO method: GET response: proto: HTTP/2.0 @@ -714,13 +714,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 96.868125ms + duration: 288.542541ms - id: 20 request: proto: HTTP/1.1 @@ -739,8 +739,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64f34ab4a6e3590c7d1c9451 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545468e539b35aea9551f3 method: GET response: proto: HTTP/2.0 @@ -750,13 +750,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:46:12.828Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64f34ab4a6e3590c7d1c9451","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-09-02T14:46:12.828Z","user_id":"auth0|64f34ab4a6e3590c7d1c9451","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-05-27T09:37:44.210Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545468e539b35aea9551f3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:44.210Z","user_id":"auth0|66545468e539b35aea9551f3","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.066417ms + duration: 284.173375ms - id: 21 request: proto: HTTP/1.1 @@ -775,8 +775,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb method: GET response: proto: HTTP/2.0 @@ -786,13 +786,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_lMBvFcD6i9qoL3P2","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_7LG73xnvjDFIaESb","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 99.335ms + duration: 281.356042ms - id: 22 request: proto: HTTP/1.1 @@ -811,8 +811,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -822,13 +822,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64f34ab4a6e3590c7d1c9451","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|66545468e539b35aea9551f3","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 127.901833ms + duration: 307.795541ms - id: 23 request: proto: HTTP/1.1 @@ -847,8 +847,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -858,13 +858,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 101.910042ms + duration: 299.229792ms - id: 24 request: proto: HTTP/1.1 @@ -877,14 +877,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_LGbn31cI1MxGdxLF"]} + {"roles":["rol_Yx7kSH1zslVmylQO"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles method: POST response: proto: HTTP/2.0 @@ -900,7 +900,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 108.732667ms + duration: 509.34825ms - id: 25 request: proto: HTTP/1.1 @@ -919,8 +919,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -930,13 +930,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 106.802792ms + duration: 302.906083ms - id: 26 request: proto: HTTP/1.1 @@ -955,8 +955,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_o52GudjrCMuX8tTu + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_60uuuh6AzMOvNeEc method: GET response: proto: HTTP/2.0 @@ -966,13 +966,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.811958ms + duration: 347.881333ms - id: 27 request: proto: HTTP/1.1 @@ -991,8 +991,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LGbn31cI1MxGdxLF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_Yx7kSH1zslVmylQO method: GET response: proto: HTTP/2.0 @@ -1002,13 +1002,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 93.026416ms + duration: 412.217583ms - id: 28 request: proto: HTTP/1.1 @@ -1027,8 +1027,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64f34ab4a6e3590c7d1c9451 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545468e539b35aea9551f3 method: GET response: proto: HTTP/2.0 @@ -1038,13 +1038,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:46:12.828Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64f34ab4a6e3590c7d1c9451","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-09-02T14:46:12.828Z","user_id":"auth0|64f34ab4a6e3590c7d1c9451","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-05-27T09:37:44.210Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545468e539b35aea9551f3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:44.210Z","user_id":"auth0|66545468e539b35aea9551f3","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 99.085416ms + duration: 347.516834ms - id: 29 request: proto: HTTP/1.1 @@ -1063,8 +1063,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb method: GET response: proto: HTTP/2.0 @@ -1074,13 +1074,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_lMBvFcD6i9qoL3P2","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_7LG73xnvjDFIaESb","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.135375ms + duration: 312.817792ms - id: 30 request: proto: HTTP/1.1 @@ -1099,8 +1099,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1110,13 +1110,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64f34ab4a6e3590c7d1c9451","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|66545468e539b35aea9551f3","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 93.895458ms + duration: 483.170667ms - id: 31 request: proto: HTTP/1.1 @@ -1135,8 +1135,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1146,13 +1146,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.976167ms + duration: 318.848375ms - id: 32 request: proto: HTTP/1.1 @@ -1171,8 +1171,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1182,13 +1182,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.824666ms + duration: 313.579959ms - id: 33 request: proto: HTTP/1.1 @@ -1207,8 +1207,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1218,13 +1218,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.789417ms + duration: 314.420167ms - id: 34 request: proto: HTTP/1.1 @@ -1243,8 +1243,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_o52GudjrCMuX8tTu + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1254,13 +1254,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"roles":[{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.635083ms + duration: 336.647042ms - id: 35 request: proto: HTTP/1.1 @@ -1279,8 +1279,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_60uuuh6AzMOvNeEc method: GET response: proto: HTTP/2.0 @@ -1290,13 +1290,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 134.534708ms + duration: 274.625459ms - id: 36 request: proto: HTTP/1.1 @@ -1315,8 +1315,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LGbn31cI1MxGdxLF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_Yx7kSH1zslVmylQO method: GET response: proto: HTTP/2.0 @@ -1326,13 +1326,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.737958ms + duration: 305.356959ms - id: 37 request: proto: HTTP/1.1 @@ -1351,8 +1351,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64f34ab4a6e3590c7d1c9451 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545468e539b35aea9551f3 method: GET response: proto: HTTP/2.0 @@ -1362,13 +1362,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:46:12.828Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64f34ab4a6e3590c7d1c9451","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-09-02T14:46:12.828Z","user_id":"auth0|64f34ab4a6e3590c7d1c9451","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-05-27T09:37:44.210Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545468e539b35aea9551f3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:44.210Z","user_id":"auth0|66545468e539b35aea9551f3","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.953209ms + duration: 304.875416ms - id: 38 request: proto: HTTP/1.1 @@ -1387,8 +1387,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb method: GET response: proto: HTTP/2.0 @@ -1398,13 +1398,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_lMBvFcD6i9qoL3P2","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_7LG73xnvjDFIaESb","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 95.378417ms + duration: 295.274458ms - id: 39 request: proto: HTTP/1.1 @@ -1423,8 +1423,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1434,13 +1434,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64f34ab4a6e3590c7d1c9451","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|66545468e539b35aea9551f3","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.950125ms + duration: 309.706833ms - id: 40 request: proto: HTTP/1.1 @@ -1453,14 +1453,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_LGbn31cI1MxGdxLF"]} + {"roles":["rol_Yx7kSH1zslVmylQO"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles method: DELETE response: proto: HTTP/2.0 @@ -1476,7 +1476,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 137.966833ms + duration: 289.396958ms - id: 41 request: proto: HTTP/1.1 @@ -1489,14 +1489,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_o52GudjrCMuX8tTu"]} + {"roles":["rol_60uuuh6AzMOvNeEc"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles method: DELETE response: proto: HTTP/2.0 @@ -1512,7 +1512,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 105.823666ms + duration: 334.397542ms - id: 42 request: proto: HTTP/1.1 @@ -1531,8 +1531,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_o52GudjrCMuX8tTu + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_60uuuh6AzMOvNeEc method: GET response: proto: HTTP/2.0 @@ -1542,13 +1542,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 123.742666ms + duration: 302.177166ms - id: 43 request: proto: HTTP/1.1 @@ -1567,8 +1567,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LGbn31cI1MxGdxLF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_Yx7kSH1zslVmylQO method: GET response: proto: HTTP/2.0 @@ -1578,13 +1578,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 87.221666ms + duration: 470.413833ms - id: 44 request: proto: HTTP/1.1 @@ -1603,8 +1603,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64f34ab4a6e3590c7d1c9451 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545468e539b35aea9551f3 method: GET response: proto: HTTP/2.0 @@ -1614,13 +1614,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:46:12.828Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64f34ab4a6e3590c7d1c9451","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-09-02T14:46:12.828Z","user_id":"auth0|64f34ab4a6e3590c7d1c9451","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-05-27T09:37:44.210Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545468e539b35aea9551f3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:44.210Z","user_id":"auth0|66545468e539b35aea9551f3","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.2495ms + duration: 347.437834ms - id: 45 request: proto: HTTP/1.1 @@ -1639,8 +1639,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb method: GET response: proto: HTTP/2.0 @@ -1650,13 +1650,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_lMBvFcD6i9qoL3P2","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_7LG73xnvjDFIaESb","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 88.901458ms + duration: 346.873291ms - id: 46 request: proto: HTTP/1.1 @@ -1675,8 +1675,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1686,13 +1686,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64f34ab4a6e3590c7d1c9451","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|66545468e539b35aea9551f3","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.84975ms + duration: 335.242458ms - id: 47 request: proto: HTTP/1.1 @@ -1711,8 +1711,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1728,7 +1728,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.1235ms + duration: 422.235375ms - id: 48 request: proto: HTTP/1.1 @@ -1747,8 +1747,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_o52GudjrCMuX8tTu + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_60uuuh6AzMOvNeEc method: GET response: proto: HTTP/2.0 @@ -1758,13 +1758,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 130.451333ms + duration: 302.178791ms - id: 49 request: proto: HTTP/1.1 @@ -1783,8 +1783,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LGbn31cI1MxGdxLF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_Yx7kSH1zslVmylQO method: GET response: proto: HTTP/2.0 @@ -1794,13 +1794,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.443792ms + duration: 287.51825ms - id: 50 request: proto: HTTP/1.1 @@ -1819,8 +1819,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64f34ab4a6e3590c7d1c9451 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545468e539b35aea9551f3 method: GET response: proto: HTTP/2.0 @@ -1830,13 +1830,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:46:12.828Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64f34ab4a6e3590c7d1c9451","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-09-02T14:46:12.828Z","user_id":"auth0|64f34ab4a6e3590c7d1c9451","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-05-27T09:37:44.210Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545468e539b35aea9551f3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:44.210Z","user_id":"auth0|66545468e539b35aea9551f3","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 99.597792ms + duration: 298.029459ms - id: 51 request: proto: HTTP/1.1 @@ -1855,8 +1855,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb method: GET response: proto: HTTP/2.0 @@ -1866,13 +1866,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_lMBvFcD6i9qoL3P2","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_7LG73xnvjDFIaESb","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.033583ms + duration: 283.854834ms - id: 52 request: proto: HTTP/1.1 @@ -1891,8 +1891,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1902,13 +1902,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64f34ab4a6e3590c7d1c9451","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|66545468e539b35aea9551f3","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 115.074875ms + duration: 289.729958ms - id: 53 request: proto: HTTP/1.1 @@ -1927,8 +1927,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1944,7 +1944,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.770375ms + duration: 306.83975ms - id: 54 request: proto: HTTP/1.1 @@ -1963,8 +1963,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_o52GudjrCMuX8tTu + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_60uuuh6AzMOvNeEc method: GET response: proto: HTTP/2.0 @@ -1974,13 +1974,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.021583ms + duration: 277.720833ms - id: 55 request: proto: HTTP/1.1 @@ -1999,8 +1999,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LGbn31cI1MxGdxLF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_Yx7kSH1zslVmylQO method: GET response: proto: HTTP/2.0 @@ -2010,13 +2010,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 97.471625ms + duration: 276.647542ms - id: 56 request: proto: HTTP/1.1 @@ -2035,8 +2035,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64f34ab4a6e3590c7d1c9451 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545468e539b35aea9551f3 method: GET response: proto: HTTP/2.0 @@ -2046,13 +2046,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:46:12.828Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64f34ab4a6e3590c7d1c9451","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-09-02T14:46:12.828Z","user_id":"auth0|64f34ab4a6e3590c7d1c9451","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-05-27T09:37:44.210Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545468e539b35aea9551f3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:44.210Z","user_id":"auth0|66545468e539b35aea9551f3","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 94.8045ms + duration: 281.51ms - id: 57 request: proto: HTTP/1.1 @@ -2071,8 +2071,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb method: GET response: proto: HTTP/2.0 @@ -2082,13 +2082,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_lMBvFcD6i9qoL3P2","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_7LG73xnvjDFIaESb","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 93.623958ms + duration: 303.446541ms - id: 58 request: proto: HTTP/1.1 @@ -2107,8 +2107,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2118,13 +2118,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64f34ab4a6e3590c7d1c9451","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|66545468e539b35aea9551f3","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 116.359791ms + duration: 291.278041ms - id: 59 request: proto: HTTP/1.1 @@ -2143,8 +2143,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2160,7 +2160,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.884584ms + duration: 447.327042ms - id: 60 request: proto: HTTP/1.1 @@ -2179,8 +2179,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_o52GudjrCMuX8tTu + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_60uuuh6AzMOvNeEc method: GET response: proto: HTTP/2.0 @@ -2190,13 +2190,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.043916ms + duration: 381.033292ms - id: 61 request: proto: HTTP/1.1 @@ -2215,8 +2215,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LGbn31cI1MxGdxLF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_Yx7kSH1zslVmylQO method: GET response: proto: HTTP/2.0 @@ -2226,13 +2226,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.26375ms + duration: 326.40175ms - id: 62 request: proto: HTTP/1.1 @@ -2251,8 +2251,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64f34ab4a6e3590c7d1c9451 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545468e539b35aea9551f3 method: GET response: proto: HTTP/2.0 @@ -2262,13 +2262,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:46:12.828Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64f34ab4a6e3590c7d1c9451","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-09-02T14:46:12.828Z","user_id":"auth0|64f34ab4a6e3590c7d1c9451","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-05-27T09:37:44.210Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545468e539b35aea9551f3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:44.210Z","user_id":"auth0|66545468e539b35aea9551f3","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 97.926083ms + duration: 350.593084ms - id: 63 request: proto: HTTP/1.1 @@ -2287,8 +2287,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb method: GET response: proto: HTTP/2.0 @@ -2298,13 +2298,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_lMBvFcD6i9qoL3P2","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_7LG73xnvjDFIaESb","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 95.522292ms + duration: 345.74425ms - id: 64 request: proto: HTTP/1.1 @@ -2323,8 +2323,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2334,13 +2334,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64f34ab4a6e3590c7d1c9451","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|66545468e539b35aea9551f3","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.877416ms + duration: 338.631208ms - id: 65 request: proto: HTTP/1.1 @@ -2359,8 +2359,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2376,7 +2376,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.180416ms + duration: 353.6125ms - id: 66 request: proto: HTTP/1.1 @@ -2389,14 +2389,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_o52GudjrCMuX8tTu","rol_LGbn31cI1MxGdxLF"]} + {"roles":["rol_60uuuh6AzMOvNeEc","rol_Yx7kSH1zslVmylQO"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles method: POST response: proto: HTTP/2.0 @@ -2412,7 +2412,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 145.216ms + duration: 353.082083ms - id: 67 request: proto: HTTP/1.1 @@ -2431,8 +2431,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2442,13 +2442,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 105.277292ms + duration: 346.400083ms - id: 68 request: proto: HTTP/1.1 @@ -2467,8 +2467,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_o52GudjrCMuX8tTu + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_60uuuh6AzMOvNeEc method: GET response: proto: HTTP/2.0 @@ -2478,13 +2478,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 122.016875ms + duration: 306.930666ms - id: 69 request: proto: HTTP/1.1 @@ -2503,8 +2503,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LGbn31cI1MxGdxLF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_Yx7kSH1zslVmylQO method: GET response: proto: HTTP/2.0 @@ -2514,13 +2514,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 90.009333ms + duration: 349.855917ms - id: 70 request: proto: HTTP/1.1 @@ -2539,8 +2539,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64f34ab4a6e3590c7d1c9451 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545468e539b35aea9551f3 method: GET response: proto: HTTP/2.0 @@ -2550,13 +2550,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:46:12.828Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64f34ab4a6e3590c7d1c9451","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-09-02T14:46:12.828Z","user_id":"auth0|64f34ab4a6e3590c7d1c9451","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-05-27T09:37:44.210Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545468e539b35aea9551f3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:44.210Z","user_id":"auth0|66545468e539b35aea9551f3","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 127.857291ms + duration: 282.310292ms - id: 71 request: proto: HTTP/1.1 @@ -2575,8 +2575,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb method: GET response: proto: HTTP/2.0 @@ -2586,13 +2586,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_lMBvFcD6i9qoL3P2","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_7LG73xnvjDFIaESb","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 101.812625ms + duration: 275.07ms - id: 72 request: proto: HTTP/1.1 @@ -2611,8 +2611,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2622,13 +2622,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64f34ab4a6e3590c7d1c9451","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|66545468e539b35aea9551f3","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.167125ms + duration: 341.765208ms - id: 73 request: proto: HTTP/1.1 @@ -2647,8 +2647,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2658,13 +2658,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.594709ms + duration: 323.137666ms - id: 74 request: proto: HTTP/1.1 @@ -2683,8 +2683,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2694,13 +2694,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 104.69425ms + duration: 321.129042ms - id: 75 request: proto: HTTP/1.1 @@ -2719,8 +2719,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2730,13 +2730,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.778375ms + duration: 295.160209ms - id: 76 request: proto: HTTP/1.1 @@ -2755,8 +2755,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_o52GudjrCMuX8tTu + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_60uuuh6AzMOvNeEc method: GET response: proto: HTTP/2.0 @@ -2766,13 +2766,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 92.006083ms + duration: 300.417584ms - id: 77 request: proto: HTTP/1.1 @@ -2791,8 +2791,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LGbn31cI1MxGdxLF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_Yx7kSH1zslVmylQO method: GET response: proto: HTTP/2.0 @@ -2802,13 +2802,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 96.195542ms + duration: 289.33875ms - id: 78 request: proto: HTTP/1.1 @@ -2827,8 +2827,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64f34ab4a6e3590c7d1c9451 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545468e539b35aea9551f3 method: GET response: proto: HTTP/2.0 @@ -2838,13 +2838,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:46:12.828Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64f34ab4a6e3590c7d1c9451","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-09-02T14:46:12.828Z","user_id":"auth0|64f34ab4a6e3590c7d1c9451","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-05-27T09:37:44.210Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545468e539b35aea9551f3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:44.210Z","user_id":"auth0|66545468e539b35aea9551f3","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.39175ms + duration: 468.654625ms - id: 79 request: proto: HTTP/1.1 @@ -2863,8 +2863,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb method: GET response: proto: HTTP/2.0 @@ -2874,13 +2874,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_lMBvFcD6i9qoL3P2","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_7LG73xnvjDFIaESb","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 136.117875ms + duration: 345.08875ms - id: 80 request: proto: HTTP/1.1 @@ -2899,8 +2899,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2910,13 +2910,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64f34ab4a6e3590c7d1c9451","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|66545468e539b35aea9551f3","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 143.250667ms + duration: 351.759542ms - id: 81 request: proto: HTTP/1.1 @@ -2935,8 +2935,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2946,13 +2946,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 136.625291ms + duration: 324.91775ms - id: 82 request: proto: HTTP/1.1 @@ -2971,8 +2971,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2982,13 +2982,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.43525ms + duration: 346.484041ms - id: 83 request: proto: HTTP/1.1 @@ -3007,8 +3007,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3018,13 +3018,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 136.26075ms + duration: 352.468708ms - id: 84 request: proto: HTTP/1.1 @@ -3043,8 +3043,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_o52GudjrCMuX8tTu + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_60uuuh6AzMOvNeEc method: GET response: proto: HTTP/2.0 @@ -3054,13 +3054,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.449584ms + duration: 282.494875ms - id: 85 request: proto: HTTP/1.1 @@ -3079,8 +3079,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LGbn31cI1MxGdxLF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_Yx7kSH1zslVmylQO method: GET response: proto: HTTP/2.0 @@ -3090,13 +3090,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.093334ms + duration: 285.129834ms - id: 86 request: proto: HTTP/1.1 @@ -3115,8 +3115,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64f34ab4a6e3590c7d1c9451 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545468e539b35aea9551f3 method: GET response: proto: HTTP/2.0 @@ -3126,13 +3126,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:46:12.828Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64f34ab4a6e3590c7d1c9451","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-09-02T14:46:12.828Z","user_id":"auth0|64f34ab4a6e3590c7d1c9451","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-05-27T09:37:44.210Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545468e539b35aea9551f3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:44.210Z","user_id":"auth0|66545468e539b35aea9551f3","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 100.0755ms + duration: 309.093666ms - id: 87 request: proto: HTTP/1.1 @@ -3151,8 +3151,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb method: GET response: proto: HTTP/2.0 @@ -3162,13 +3162,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_lMBvFcD6i9qoL3P2","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_7LG73xnvjDFIaESb","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 100.688458ms + duration: 647.687583ms - id: 88 request: proto: HTTP/1.1 @@ -3187,8 +3187,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -3198,13 +3198,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64f34ab4a6e3590c7d1c9451","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|66545468e539b35aea9551f3","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.72425ms + duration: 308.540709ms - id: 89 request: proto: HTTP/1.1 @@ -3223,8 +3223,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3234,13 +3234,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 172.083792ms + duration: 317.773667ms - id: 90 request: proto: HTTP/1.1 @@ -3259,8 +3259,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3270,13 +3270,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 117.127ms + duration: 324.89275ms - id: 91 request: proto: HTTP/1.1 @@ -3295,8 +3295,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3306,13 +3306,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_o52GudjrCMuX8tTu","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_LGbn31cI1MxGdxLF","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_60uuuh6AzMOvNeEc","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_Yx7kSH1zslVmylQO","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 105.638958ms + duration: 320.989333ms - id: 92 request: proto: HTTP/1.1 @@ -3325,14 +3325,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_LGbn31cI1MxGdxLF"]} + {"roles":["rol_Yx7kSH1zslVmylQO"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles method: DELETE response: proto: HTTP/2.0 @@ -3348,7 +3348,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 112.187416ms + duration: 331.868583ms - id: 93 request: proto: HTTP/1.1 @@ -3361,14 +3361,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_o52GudjrCMuX8tTu"]} + {"roles":["rol_60uuuh6AzMOvNeEc"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles method: DELETE response: proto: HTTP/2.0 @@ -3384,7 +3384,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 158.30075ms + duration: 317.360834ms - id: 94 request: proto: HTTP/1.1 @@ -3397,14 +3397,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_o52GudjrCMuX8tTu","rol_LGbn31cI1MxGdxLF"]} + {"roles":["rol_60uuuh6AzMOvNeEc","rol_Yx7kSH1zslVmylQO"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members/auth0%7C64f34ab4a6e3590c7d1c9451/roles + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members/auth0%7C66545468e539b35aea9551f3/roles method: DELETE response: proto: HTTP/2.0 @@ -3420,7 +3420,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 109.904959ms + duration: 304.637791ms - id: 95 request: proto: HTTP/1.1 @@ -3433,14 +3433,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|64f34ab4a6e3590c7d1c9451"]} + {"members":["auth0|66545468e539b35aea9551f3"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2/members + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb/members method: DELETE response: proto: HTTP/2.0 @@ -3456,7 +3456,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 108.873625ms + duration: 290.14475ms - id: 96 request: proto: HTTP/1.1 @@ -3474,8 +3474,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_lMBvFcD6i9qoL3P2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_7LG73xnvjDFIaESb method: DELETE response: proto: HTTP/2.0 @@ -3491,7 +3491,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 102.725666ms + duration: 292.631125ms - id: 97 request: proto: HTTP/1.1 @@ -3509,8 +3509,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64f34ab4a6e3590c7d1c9451 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545468e539b35aea9551f3 method: DELETE response: proto: HTTP/2.0 @@ -3526,7 +3526,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 217.583333ms + duration: 325.4705ms - id: 98 request: proto: HTTP/1.1 @@ -3545,8 +3545,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_LGbn31cI1MxGdxLF + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_Yx7kSH1zslVmylQO method: DELETE response: proto: HTTP/2.0 @@ -3562,7 +3562,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 105.932167ms + duration: 321.321459ms - id: 99 request: proto: HTTP/1.1 @@ -3581,8 +3581,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_o52GudjrCMuX8tTu + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_60uuuh6AzMOvNeEc method: DELETE response: proto: HTTP/2.0 @@ -3598,4 +3598,4 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 99.9785ms + duration: 305.425709ms diff --git a/test/data/recordings/TestAccOrganizationMemberRoles.yaml b/test/data/recordings/TestAccOrganizationMemberRoles.yaml index 848d49e1d..e7634cd3f 100644 --- a/test/data/recordings/TestAccOrganizationMemberRoles.yaml +++ b/test/data/recordings/TestAccOrganizationMemberRoles.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 + - Go-Auth0/1.4.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles method: POST response: @@ -30,13 +30,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 110.695291ms + duration: 301.445666ms - id: 1 request: proto: HTTP/1.1 @@ -55,8 +55,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bxVfkV6If1SjclYV + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7KOxrda9mWG9HrWe method: GET response: proto: HTTP/2.0 @@ -66,13 +66,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.957625ms + duration: 290.912084ms - id: 2 request: proto: HTTP/1.1 @@ -91,7 +91,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 + - Go-Auth0/1.4.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles method: POST response: @@ -102,13 +102,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.846583ms + duration: 342.326916ms - id: 3 request: proto: HTTP/1.1 @@ -127,8 +127,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_M03E6IqxSJdjKsoz + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tOjlqPCjgodE1ZzQ method: GET response: proto: HTTP/2.0 @@ -138,13 +138,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 95.979833ms + duration: 294.900708ms - id: 4 request: proto: HTTP/1.1 @@ -163,7 +163,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 + - Go-Auth0/1.4.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users method: POST response: @@ -174,13 +174,13 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"created_at":"2023-09-02T14:46:42.868Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64f34ad2a6e3590c7d1c945f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-09-02T14:46:42.868Z","user_id":"auth0|64f34ad2a6e3590c7d1c945f","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-05-27T09:37:43.003Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665454663d0a9374995d8a6c","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:43.003Z","user_id":"auth0|665454663d0a9374995d8a6c","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 264.091375ms + duration: 463.797208ms - id: 5 request: proto: HTTP/1.1 @@ -199,8 +199,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64f34ad2a6e3590c7d1c945f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665454663d0a9374995d8a6c method: GET response: proto: HTTP/2.0 @@ -210,13 +210,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:46:42.868Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64f34ad2a6e3590c7d1c945f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-09-02T14:46:42.868Z","user_id":"auth0|64f34ad2a6e3590c7d1c945f","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-05-27T09:37:43.003Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665454663d0a9374995d8a6c","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:43.003Z","user_id":"auth0|665454663d0a9374995d8a6c","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 102.942083ms + duration: 302.495708ms - id: 6 request: proto: HTTP/1.1 @@ -235,7 +235,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 + - Go-Auth0/1.4.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations method: POST response: @@ -246,13 +246,13 @@ interactions: trailer: {} content_length: 126 uncompressed: false - body: '{"name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles","id":"org_98UwPAW6Hpg0jBpE"}' + body: '{"id":"org_66fgsZFQtoYRb1t0","display_name":"testaccorganizationmemberroles","name":"some-org-testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 114.58225ms + duration: 315.431167ms - id: 7 request: proto: HTTP/1.1 @@ -271,8 +271,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0 method: GET response: proto: HTTP/2.0 @@ -282,13 +282,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_98UwPAW6Hpg0jBpE","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"org_66fgsZFQtoYRb1t0","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 101.285416ms + duration: 325.133042ms - id: 8 request: proto: HTTP/1.1 @@ -301,14 +301,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|64f34ad2a6e3590c7d1c945f"]} + {"members":["auth0|665454663d0a9374995d8a6c"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members method: POST response: proto: HTTP/2.0 @@ -324,7 +324,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 117.215333ms + duration: 320.785542ms - id: 9 request: proto: HTTP/1.1 @@ -343,8 +343,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -354,13 +354,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64f34ad2a6e3590c7d1c945f","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|665454663d0a9374995d8a6c","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.125791ms + duration: 320.029125ms - id: 10 request: proto: HTTP/1.1 @@ -373,14 +373,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_bxVfkV6If1SjclYV"]} + {"roles":["rol_7KOxrda9mWG9HrWe"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles method: POST response: proto: HTTP/2.0 @@ -396,7 +396,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 121.429125ms + duration: 296.236792ms - id: 11 request: proto: HTTP/1.1 @@ -415,8 +415,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -426,13 +426,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.803833ms + duration: 308.8505ms - id: 12 request: proto: HTTP/1.1 @@ -451,8 +451,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bxVfkV6If1SjclYV + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7KOxrda9mWG9HrWe method: GET response: proto: HTTP/2.0 @@ -462,13 +462,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 98.1655ms + duration: 310.781ms - id: 13 request: proto: HTTP/1.1 @@ -487,8 +487,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_M03E6IqxSJdjKsoz + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tOjlqPCjgodE1ZzQ method: GET response: proto: HTTP/2.0 @@ -498,13 +498,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 90.630417ms + duration: 308.618167ms - id: 14 request: proto: HTTP/1.1 @@ -523,8 +523,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64f34ad2a6e3590c7d1c945f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665454663d0a9374995d8a6c method: GET response: proto: HTTP/2.0 @@ -534,13 +534,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:46:42.868Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64f34ad2a6e3590c7d1c945f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-09-02T14:46:42.868Z","user_id":"auth0|64f34ad2a6e3590c7d1c945f","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-05-27T09:37:43.003Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665454663d0a9374995d8a6c","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:43.003Z","user_id":"auth0|665454663d0a9374995d8a6c","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 93.020333ms + duration: 302.277542ms - id: 15 request: proto: HTTP/1.1 @@ -559,8 +559,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0 method: GET response: proto: HTTP/2.0 @@ -570,13 +570,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_98UwPAW6Hpg0jBpE","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"org_66fgsZFQtoYRb1t0","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.03575ms + duration: 286.46275ms - id: 16 request: proto: HTTP/1.1 @@ -595,8 +595,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -606,13 +606,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64f34ad2a6e3590c7d1c945f","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|665454663d0a9374995d8a6c","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 113.24525ms + duration: 291.233792ms - id: 17 request: proto: HTTP/1.1 @@ -631,8 +631,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -642,13 +642,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 120.134667ms + duration: 307.209042ms - id: 18 request: proto: HTTP/1.1 @@ -667,8 +667,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bxVfkV6If1SjclYV + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7KOxrda9mWG9HrWe method: GET response: proto: HTTP/2.0 @@ -678,13 +678,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 98.906875ms + duration: 301.698ms - id: 19 request: proto: HTTP/1.1 @@ -703,8 +703,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_M03E6IqxSJdjKsoz + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tOjlqPCjgodE1ZzQ method: GET response: proto: HTTP/2.0 @@ -714,13 +714,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 97.795708ms + duration: 284.704208ms - id: 20 request: proto: HTTP/1.1 @@ -739,8 +739,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64f34ad2a6e3590c7d1c945f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665454663d0a9374995d8a6c method: GET response: proto: HTTP/2.0 @@ -750,13 +750,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:46:42.868Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64f34ad2a6e3590c7d1c945f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-09-02T14:46:42.868Z","user_id":"auth0|64f34ad2a6e3590c7d1c945f","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-05-27T09:37:43.003Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665454663d0a9374995d8a6c","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:43.003Z","user_id":"auth0|665454663d0a9374995d8a6c","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.286875ms + duration: 308.850125ms - id: 21 request: proto: HTTP/1.1 @@ -775,8 +775,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0 method: GET response: proto: HTTP/2.0 @@ -786,13 +786,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_98UwPAW6Hpg0jBpE","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"org_66fgsZFQtoYRb1t0","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 92.01525ms + duration: 300.241041ms - id: 22 request: proto: HTTP/1.1 @@ -811,8 +811,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -822,13 +822,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64f34ad2a6e3590c7d1c945f","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|665454663d0a9374995d8a6c","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.924625ms + duration: 378.683042ms - id: 23 request: proto: HTTP/1.1 @@ -847,8 +847,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -858,13 +858,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 106.691416ms + duration: 320.452ms - id: 24 request: proto: HTTP/1.1 @@ -877,14 +877,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_M03E6IqxSJdjKsoz"]} + {"roles":["rol_tOjlqPCjgodE1ZzQ"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles method: POST response: proto: HTTP/2.0 @@ -900,7 +900,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 114.064208ms + duration: 325.640542ms - id: 25 request: proto: HTTP/1.1 @@ -919,8 +919,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -930,13 +930,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.373542ms + duration: 804.983792ms - id: 26 request: proto: HTTP/1.1 @@ -955,8 +955,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bxVfkV6If1SjclYV + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7KOxrda9mWG9HrWe method: GET response: proto: HTTP/2.0 @@ -966,13 +966,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 118.278292ms + duration: 303.410334ms - id: 27 request: proto: HTTP/1.1 @@ -991,8 +991,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_M03E6IqxSJdjKsoz + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tOjlqPCjgodE1ZzQ method: GET response: proto: HTTP/2.0 @@ -1002,13 +1002,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 89.999792ms + duration: 325.324042ms - id: 28 request: proto: HTTP/1.1 @@ -1027,8 +1027,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64f34ad2a6e3590c7d1c945f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665454663d0a9374995d8a6c method: GET response: proto: HTTP/2.0 @@ -1038,13 +1038,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:46:42.868Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64f34ad2a6e3590c7d1c945f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-09-02T14:46:42.868Z","user_id":"auth0|64f34ad2a6e3590c7d1c945f","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-05-27T09:37:43.003Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665454663d0a9374995d8a6c","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:43.003Z","user_id":"auth0|665454663d0a9374995d8a6c","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 127.272583ms + duration: 294.169792ms - id: 29 request: proto: HTTP/1.1 @@ -1063,8 +1063,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0 method: GET response: proto: HTTP/2.0 @@ -1074,13 +1074,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_98UwPAW6Hpg0jBpE","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"org_66fgsZFQtoYRb1t0","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 98.782083ms + duration: 332.170833ms - id: 30 request: proto: HTTP/1.1 @@ -1099,8 +1099,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1110,13 +1110,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64f34ad2a6e3590c7d1c945f","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|665454663d0a9374995d8a6c","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 136.819667ms + duration: 305.600084ms - id: 31 request: proto: HTTP/1.1 @@ -1135,8 +1135,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1146,13 +1146,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.988916ms + duration: 318.814917ms - id: 32 request: proto: HTTP/1.1 @@ -1171,8 +1171,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bxVfkV6If1SjclYV + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7KOxrda9mWG9HrWe method: GET response: proto: HTTP/2.0 @@ -1182,13 +1182,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 100.840083ms + duration: 278.490625ms - id: 33 request: proto: HTTP/1.1 @@ -1207,8 +1207,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_M03E6IqxSJdjKsoz + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tOjlqPCjgodE1ZzQ method: GET response: proto: HTTP/2.0 @@ -1218,13 +1218,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.709375ms + duration: 790.851416ms - id: 34 request: proto: HTTP/1.1 @@ -1243,8 +1243,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64f34ad2a6e3590c7d1c945f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665454663d0a9374995d8a6c method: GET response: proto: HTTP/2.0 @@ -1254,13 +1254,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:46:42.868Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64f34ad2a6e3590c7d1c945f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-09-02T14:46:42.868Z","user_id":"auth0|64f34ad2a6e3590c7d1c945f","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-05-27T09:37:43.003Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665454663d0a9374995d8a6c","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:43.003Z","user_id":"auth0|665454663d0a9374995d8a6c","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 97.243041ms + duration: 326.814125ms - id: 35 request: proto: HTTP/1.1 @@ -1279,8 +1279,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0 method: GET response: proto: HTTP/2.0 @@ -1290,13 +1290,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_98UwPAW6Hpg0jBpE","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"org_66fgsZFQtoYRb1t0","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 101.218375ms + duration: 303.992959ms - id: 36 request: proto: HTTP/1.1 @@ -1315,8 +1315,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1326,13 +1326,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64f34ad2a6e3590c7d1c945f","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|665454663d0a9374995d8a6c","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 157.186042ms + duration: 312.775792ms - id: 37 request: proto: HTTP/1.1 @@ -1351,8 +1351,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1362,13 +1362,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.688542ms + duration: 316.656084ms - id: 38 request: proto: HTTP/1.1 @@ -1381,14 +1381,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_bxVfkV6If1SjclYV"]} + {"roles":["rol_7KOxrda9mWG9HrWe"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles method: DELETE response: proto: HTTP/2.0 @@ -1404,7 +1404,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 109.180541ms + duration: 292.955458ms - id: 39 request: proto: HTTP/1.1 @@ -1423,8 +1423,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1434,13 +1434,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 114.554167ms + duration: 302.897375ms - id: 40 request: proto: HTTP/1.1 @@ -1459,8 +1459,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bxVfkV6If1SjclYV + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7KOxrda9mWG9HrWe method: GET response: proto: HTTP/2.0 @@ -1470,13 +1470,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.3385ms + duration: 281.809584ms - id: 41 request: proto: HTTP/1.1 @@ -1495,8 +1495,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_M03E6IqxSJdjKsoz + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tOjlqPCjgodE1ZzQ method: GET response: proto: HTTP/2.0 @@ -1506,13 +1506,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 96.599833ms + duration: 313.929ms - id: 42 request: proto: HTTP/1.1 @@ -1531,8 +1531,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64f34ad2a6e3590c7d1c945f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665454663d0a9374995d8a6c method: GET response: proto: HTTP/2.0 @@ -1542,13 +1542,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:46:42.868Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64f34ad2a6e3590c7d1c945f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-09-02T14:46:42.868Z","user_id":"auth0|64f34ad2a6e3590c7d1c945f","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-05-27T09:37:43.003Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665454663d0a9374995d8a6c","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:43.003Z","user_id":"auth0|665454663d0a9374995d8a6c","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 99.233209ms + duration: 344.411209ms - id: 43 request: proto: HTTP/1.1 @@ -1567,8 +1567,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0 method: GET response: proto: HTTP/2.0 @@ -1578,13 +1578,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_98UwPAW6Hpg0jBpE","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"org_66fgsZFQtoYRb1t0","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 100.050958ms + duration: 381.342375ms - id: 44 request: proto: HTTP/1.1 @@ -1603,8 +1603,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1614,13 +1614,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64f34ad2a6e3590c7d1c945f","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|665454663d0a9374995d8a6c","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 156.579958ms + duration: 349.166084ms - id: 45 request: proto: HTTP/1.1 @@ -1639,8 +1639,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1650,13 +1650,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 126.721709ms + duration: 346.713834ms - id: 46 request: proto: HTTP/1.1 @@ -1675,8 +1675,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bxVfkV6If1SjclYV + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7KOxrda9mWG9HrWe method: GET response: proto: HTTP/2.0 @@ -1686,13 +1686,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 98.769334ms + duration: 352.730084ms - id: 47 request: proto: HTTP/1.1 @@ -1711,8 +1711,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_M03E6IqxSJdjKsoz + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tOjlqPCjgodE1ZzQ method: GET response: proto: HTTP/2.0 @@ -1722,13 +1722,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 96.894917ms + duration: 349.81125ms - id: 48 request: proto: HTTP/1.1 @@ -1747,8 +1747,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64f34ad2a6e3590c7d1c945f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665454663d0a9374995d8a6c method: GET response: proto: HTTP/2.0 @@ -1758,13 +1758,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:46:42.868Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64f34ad2a6e3590c7d1c945f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-09-02T14:46:42.868Z","user_id":"auth0|64f34ad2a6e3590c7d1c945f","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-05-27T09:37:43.003Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665454663d0a9374995d8a6c","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:43.003Z","user_id":"auth0|665454663d0a9374995d8a6c","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 85.4335ms + duration: 419.845083ms - id: 49 request: proto: HTTP/1.1 @@ -1783,8 +1783,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0 method: GET response: proto: HTTP/2.0 @@ -1794,13 +1794,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_98UwPAW6Hpg0jBpE","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"org_66fgsZFQtoYRb1t0","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.826625ms + duration: 305.971417ms - id: 50 request: proto: HTTP/1.1 @@ -1819,8 +1819,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -1830,13 +1830,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64f34ad2a6e3590c7d1c945f","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|665454663d0a9374995d8a6c","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.092666ms + duration: 304.774ms - id: 51 request: proto: HTTP/1.1 @@ -1855,8 +1855,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1866,13 +1866,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 157.612209ms + duration: 332.774958ms - id: 52 request: proto: HTTP/1.1 @@ -1885,14 +1885,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_M03E6IqxSJdjKsoz"]} + {"roles":["rol_tOjlqPCjgodE1ZzQ"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles method: DELETE response: proto: HTTP/2.0 @@ -1908,7 +1908,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 118.830833ms + duration: 294.45725ms - id: 53 request: proto: HTTP/1.1 @@ -1927,8 +1927,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1944,7 +1944,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 106.557958ms + duration: 314.459917ms - id: 54 request: proto: HTTP/1.1 @@ -1963,8 +1963,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bxVfkV6If1SjclYV + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7KOxrda9mWG9HrWe method: GET response: proto: HTTP/2.0 @@ -1974,13 +1974,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 83.143708ms + duration: 293.735375ms - id: 55 request: proto: HTTP/1.1 @@ -1999,8 +1999,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_M03E6IqxSJdjKsoz + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tOjlqPCjgodE1ZzQ method: GET response: proto: HTTP/2.0 @@ -2010,13 +2010,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 98.958333ms + duration: 295.222958ms - id: 56 request: proto: HTTP/1.1 @@ -2035,8 +2035,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64f34ad2a6e3590c7d1c945f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665454663d0a9374995d8a6c method: GET response: proto: HTTP/2.0 @@ -2046,13 +2046,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:46:42.868Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64f34ad2a6e3590c7d1c945f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-09-02T14:46:42.868Z","user_id":"auth0|64f34ad2a6e3590c7d1c945f","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-05-27T09:37:43.003Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665454663d0a9374995d8a6c","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:43.003Z","user_id":"auth0|665454663d0a9374995d8a6c","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.096334ms + duration: 296.470625ms - id: 57 request: proto: HTTP/1.1 @@ -2071,8 +2071,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0 method: GET response: proto: HTTP/2.0 @@ -2082,13 +2082,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_98UwPAW6Hpg0jBpE","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"org_66fgsZFQtoYRb1t0","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 100.35575ms + duration: 311.588958ms - id: 58 request: proto: HTTP/1.1 @@ -2107,8 +2107,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2118,13 +2118,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64f34ad2a6e3590c7d1c945f","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|665454663d0a9374995d8a6c","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 94.587625ms + duration: 298.2805ms - id: 59 request: proto: HTTP/1.1 @@ -2143,8 +2143,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2160,7 +2160,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 99.686375ms + duration: 293.869125ms - id: 60 request: proto: HTTP/1.1 @@ -2179,8 +2179,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2196,7 +2196,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.021417ms + duration: 464.662417ms - id: 61 request: proto: HTTP/1.1 @@ -2215,8 +2215,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bxVfkV6If1SjclYV + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7KOxrda9mWG9HrWe method: GET response: proto: HTTP/2.0 @@ -2226,13 +2226,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 151.198292ms + duration: 363.896625ms - id: 62 request: proto: HTTP/1.1 @@ -2251,8 +2251,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_M03E6IqxSJdjKsoz + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tOjlqPCjgodE1ZzQ method: GET response: proto: HTTP/2.0 @@ -2262,13 +2262,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.304916ms + duration: 273.620166ms - id: 63 request: proto: HTTP/1.1 @@ -2287,8 +2287,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64f34ad2a6e3590c7d1c945f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665454663d0a9374995d8a6c method: GET response: proto: HTTP/2.0 @@ -2298,13 +2298,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:46:42.868Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64f34ad2a6e3590c7d1c945f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-09-02T14:46:42.868Z","user_id":"auth0|64f34ad2a6e3590c7d1c945f","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-05-27T09:37:43.003Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665454663d0a9374995d8a6c","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:43.003Z","user_id":"auth0|665454663d0a9374995d8a6c","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 104.521333ms + duration: 288.167667ms - id: 64 request: proto: HTTP/1.1 @@ -2323,8 +2323,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0 method: GET response: proto: HTTP/2.0 @@ -2334,13 +2334,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_98UwPAW6Hpg0jBpE","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"org_66fgsZFQtoYRb1t0","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.933916ms + duration: 276.661542ms - id: 65 request: proto: HTTP/1.1 @@ -2359,8 +2359,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2370,13 +2370,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64f34ad2a6e3590c7d1c945f","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|665454663d0a9374995d8a6c","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 96.801458ms + duration: 286.827708ms - id: 66 request: proto: HTTP/1.1 @@ -2389,14 +2389,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_bxVfkV6If1SjclYV"]} + {"roles":["rol_7KOxrda9mWG9HrWe"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles method: POST response: proto: HTTP/2.0 @@ -2412,7 +2412,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 112.049291ms + duration: 293.465542ms - id: 67 request: proto: HTTP/1.1 @@ -2431,8 +2431,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2442,13 +2442,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 112.796375ms + duration: 305.881625ms - id: 68 request: proto: HTTP/1.1 @@ -2461,14 +2461,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_M03E6IqxSJdjKsoz"]} + {"roles":["rol_tOjlqPCjgodE1ZzQ"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles method: POST response: proto: HTTP/2.0 @@ -2484,7 +2484,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 109.566083ms + duration: 312.768792ms - id: 69 request: proto: HTTP/1.1 @@ -2503,8 +2503,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2514,13 +2514,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 103.432208ms + duration: 315.759625ms - id: 70 request: proto: HTTP/1.1 @@ -2539,8 +2539,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bxVfkV6If1SjclYV + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7KOxrda9mWG9HrWe method: GET response: proto: HTTP/2.0 @@ -2550,13 +2550,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 109.050542ms + duration: 285.697875ms - id: 71 request: proto: HTTP/1.1 @@ -2575,8 +2575,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_M03E6IqxSJdjKsoz + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tOjlqPCjgodE1ZzQ method: GET response: proto: HTTP/2.0 @@ -2586,13 +2586,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 88.542167ms + duration: 311.686125ms - id: 72 request: proto: HTTP/1.1 @@ -2611,8 +2611,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64f34ad2a6e3590c7d1c945f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665454663d0a9374995d8a6c method: GET response: proto: HTTP/2.0 @@ -2622,13 +2622,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:46:42.868Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64f34ad2a6e3590c7d1c945f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-09-02T14:46:42.868Z","user_id":"auth0|64f34ad2a6e3590c7d1c945f","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-05-27T09:37:43.003Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665454663d0a9374995d8a6c","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:43.003Z","user_id":"auth0|665454663d0a9374995d8a6c","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 98.787959ms + duration: 405.283417ms - id: 73 request: proto: HTTP/1.1 @@ -2647,8 +2647,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0 method: GET response: proto: HTTP/2.0 @@ -2658,13 +2658,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_98UwPAW6Hpg0jBpE","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"org_66fgsZFQtoYRb1t0","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 88.921ms + duration: 324.539208ms - id: 74 request: proto: HTTP/1.1 @@ -2683,8 +2683,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2694,13 +2694,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64f34ad2a6e3590c7d1c945f","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|665454663d0a9374995d8a6c","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 99.966042ms + duration: 349.541ms - id: 75 request: proto: HTTP/1.1 @@ -2719,8 +2719,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2730,13 +2730,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.026292ms + duration: 342.9745ms - id: 76 request: proto: HTTP/1.1 @@ -2755,8 +2755,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2766,13 +2766,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 100.706292ms + duration: 424.089917ms - id: 77 request: proto: HTTP/1.1 @@ -2791,8 +2791,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2802,13 +2802,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 174.327459ms + duration: 320.196209ms - id: 78 request: proto: HTTP/1.1 @@ -2827,8 +2827,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bxVfkV6If1SjclYV + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7KOxrda9mWG9HrWe method: GET response: proto: HTTP/2.0 @@ -2838,13 +2838,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.20575ms + duration: 295.574917ms - id: 79 request: proto: HTTP/1.1 @@ -2863,8 +2863,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_M03E6IqxSJdjKsoz + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tOjlqPCjgodE1ZzQ method: GET response: proto: HTTP/2.0 @@ -2874,13 +2874,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.09275ms + duration: 310.415167ms - id: 80 request: proto: HTTP/1.1 @@ -2899,8 +2899,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64f34ad2a6e3590c7d1c945f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665454663d0a9374995d8a6c method: GET response: proto: HTTP/2.0 @@ -2910,13 +2910,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:46:42.868Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64f34ad2a6e3590c7d1c945f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-09-02T14:46:42.868Z","user_id":"auth0|64f34ad2a6e3590c7d1c945f","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-05-27T09:37:43.003Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665454663d0a9374995d8a6c","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:43.003Z","user_id":"auth0|665454663d0a9374995d8a6c","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 154.108458ms + duration: 300.979709ms - id: 81 request: proto: HTTP/1.1 @@ -2935,8 +2935,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0 method: GET response: proto: HTTP/2.0 @@ -2946,13 +2946,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_98UwPAW6Hpg0jBpE","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"org_66fgsZFQtoYRb1t0","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 121.749709ms + duration: 286.275208ms - id: 82 request: proto: HTTP/1.1 @@ -2971,8 +2971,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -2982,13 +2982,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64f34ad2a6e3590c7d1c945f","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|665454663d0a9374995d8a6c","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 135.765084ms + duration: 291.821334ms - id: 83 request: proto: HTTP/1.1 @@ -3007,8 +3007,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3018,13 +3018,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 108.094666ms + duration: 287.338542ms - id: 84 request: proto: HTTP/1.1 @@ -3043,8 +3043,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3054,13 +3054,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 137.806417ms + duration: 323.749917ms - id: 85 request: proto: HTTP/1.1 @@ -3079,8 +3079,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3090,13 +3090,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 173.786833ms + duration: 282.339083ms - id: 86 request: proto: HTTP/1.1 @@ -3115,8 +3115,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bxVfkV6If1SjclYV + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7KOxrda9mWG9HrWe method: GET response: proto: HTTP/2.0 @@ -3126,13 +3126,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 87.916458ms + duration: 304.102875ms - id: 87 request: proto: HTTP/1.1 @@ -3151,8 +3151,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_M03E6IqxSJdjKsoz + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tOjlqPCjgodE1ZzQ method: GET response: proto: HTTP/2.0 @@ -3162,13 +3162,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 122.685667ms + duration: 300.592792ms - id: 88 request: proto: HTTP/1.1 @@ -3187,8 +3187,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64f34ad2a6e3590c7d1c945f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665454663d0a9374995d8a6c method: GET response: proto: HTTP/2.0 @@ -3198,13 +3198,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-09-02T14:46:42.868Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"64f34ad2a6e3590c7d1c945f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-09-02T14:46:42.868Z","user_id":"auth0|64f34ad2a6e3590c7d1c945f","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-05-27T09:37:43.003Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665454663d0a9374995d8a6c","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:43.003Z","user_id":"auth0|665454663d0a9374995d8a6c","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 95.91075ms + duration: 294.360167ms - id: 89 request: proto: HTTP/1.1 @@ -3223,8 +3223,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0 method: GET response: proto: HTTP/2.0 @@ -3234,13 +3234,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_98UwPAW6Hpg0jBpE","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"org_66fgsZFQtoYRb1t0","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 125.35175ms + duration: 288.009ms - id: 90 request: proto: HTTP/1.1 @@ -3259,8 +3259,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -3270,13 +3270,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|64f34ad2a6e3590c7d1c945f","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|665454663d0a9374995d8a6c","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 107.036834ms + duration: 302.170584ms - id: 91 request: proto: HTTP/1.1 @@ -3295,8 +3295,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3306,13 +3306,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 97.745417ms + duration: 288.742792ms - id: 92 request: proto: HTTP/1.1 @@ -3331,8 +3331,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3342,13 +3342,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 106.751834ms + duration: 308.570917ms - id: 93 request: proto: HTTP/1.1 @@ -3367,8 +3367,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3378,13 +3378,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_bxVfkV6If1SjclYV","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_M03E6IqxSJdjKsoz","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_7KOxrda9mWG9HrWe","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_tOjlqPCjgodE1ZzQ","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 111.809042ms + duration: 809.318834ms - id: 94 request: proto: HTTP/1.1 @@ -3397,14 +3397,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_M03E6IqxSJdjKsoz","rol_bxVfkV6If1SjclYV"]} + {"roles":["rol_tOjlqPCjgodE1ZzQ","rol_7KOxrda9mWG9HrWe"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles method: DELETE response: proto: HTTP/2.0 @@ -3420,7 +3420,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 110.1795ms + duration: 333.322833ms - id: 95 request: proto: HTTP/1.1 @@ -3433,14 +3433,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_M03E6IqxSJdjKsoz"]} + {"roles":["rol_tOjlqPCjgodE1ZzQ"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles method: DELETE response: proto: HTTP/2.0 @@ -3456,7 +3456,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 113.964167ms + duration: 327.189542ms - id: 96 request: proto: HTTP/1.1 @@ -3469,14 +3469,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"roles":["rol_bxVfkV6If1SjclYV"]} + {"roles":["rol_7KOxrda9mWG9HrWe"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members/auth0%7C64f34ad2a6e3590c7d1c945f/roles + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members/auth0%7C665454663d0a9374995d8a6c/roles method: DELETE response: proto: HTTP/2.0 @@ -3492,7 +3492,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 125.308459ms + duration: 318.158291ms - id: 97 request: proto: HTTP/1.1 @@ -3505,14 +3505,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|64f34ad2a6e3590c7d1c945f"]} + {"members":["auth0|665454663d0a9374995d8a6c"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE/members + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0/members method: DELETE response: proto: HTTP/2.0 @@ -3528,7 +3528,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 112.923041ms + duration: 291.11325ms - id: 98 request: proto: HTTP/1.1 @@ -3546,8 +3546,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_98UwPAW6Hpg0jBpE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_66fgsZFQtoYRb1t0 method: DELETE response: proto: HTTP/2.0 @@ -3563,7 +3563,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 97.241958ms + duration: 303.62175ms - id: 99 request: proto: HTTP/1.1 @@ -3581,8 +3581,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C64f34ad2a6e3590c7d1c945f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665454663d0a9374995d8a6c method: DELETE response: proto: HTTP/2.0 @@ -3598,7 +3598,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 286.071292ms + duration: 351.870541ms - id: 100 request: proto: HTTP/1.1 @@ -3617,8 +3617,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_M03E6IqxSJdjKsoz + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_tOjlqPCjgodE1ZzQ method: DELETE response: proto: HTTP/2.0 @@ -3634,7 +3634,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 102.24325ms + duration: 331.524083ms - id: 101 request: proto: HTTP/1.1 @@ -3653,8 +3653,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.0.2 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_bxVfkV6If1SjclYV + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7KOxrda9mWG9HrWe method: DELETE response: proto: HTTP/2.0 @@ -3670,4 +3670,4 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 98.656834ms + duration: 324.026833ms diff --git a/test/data/recordings/TestAccOrganizationMembers.yaml b/test/data/recordings/TestAccOrganizationMembers.yaml index e6aaf6f53..84bb301a6 100644 --- a/test/data/recordings/TestAccOrganizationMembers.yaml +++ b/test/data/recordings/TestAccOrganizationMembers.yaml @@ -19,7 +19,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.4.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users method: POST response: @@ -30,13 +30,13 @@ interactions: trailer: {} content_length: 598 uncompressed: false - body: '{"created_at":"2023-12-19T13:47:10.048Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede67699795f502025f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.048Z","user_id":"auth0|65819ede67699795f502025f","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-05-27T09:37:36.327Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460cd5cb856cecf26cf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.327Z","user_id":"auth0|66545460cd5cb856cecf26cf","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 321.258459ms + duration: 455.825083ms - id: 1 request: proto: HTTP/1.1 @@ -55,8 +55,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede67699795f502025f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf method: GET response: proto: HTTP/2.0 @@ -66,13 +66,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.048Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede67699795f502025f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.048Z","user_id":"auth0|65819ede67699795f502025f","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-05-27T09:37:36.327Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460cd5cb856cecf26cf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.327Z","user_id":"auth0|66545460cd5cb856cecf26cf","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 151.135125ms + duration: 315.50925ms - id: 2 request: proto: HTTP/1.1 @@ -91,7 +91,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.4.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users method: POST response: @@ -102,13 +102,13 @@ interactions: trailer: {} content_length: 598 uncompressed: false - body: '{"created_at":"2023-12-19T13:47:10.586Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede855740bf7143fb44","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.587Z","user_id":"auth0|65819ede855740bf7143fb44","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T09:37:37.069Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654546174b4f6b24c122ae5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.069Z","user_id":"auth0|6654546174b4f6b24c122ae5","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 375.394167ms + duration: 415.922541ms - id: 3 request: proto: HTTP/1.1 @@ -127,8 +127,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede855740bf7143fb44 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654546174b4f6b24c122ae5 method: GET response: proto: HTTP/2.0 @@ -138,13 +138,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.586Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede855740bf7143fb44","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.587Z","user_id":"auth0|65819ede855740bf7143fb44","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T09:37:37.069Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654546174b4f6b24c122ae5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.069Z","user_id":"auth0|6654546174b4f6b24c122ae5","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 177.100791ms + duration: 341.267917ms - id: 4 request: proto: HTTP/1.1 @@ -163,7 +163,7 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 + - Go-Auth0/1.4.1 url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations method: POST response: @@ -174,13 +174,13 @@ interactions: trailer: {} content_length: 118 uncompressed: false - body: '{"name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers","id":"org_kYo6bXR0fQ7C8xb2"}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","display_name":"testaccorganizationmembers","name":"some-org-testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 386.858875ms + duration: 353.852458ms - id: 5 request: proto: HTTP/1.1 @@ -199,8 +199,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -210,13 +210,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 261.939208ms + duration: 310.857167ms - id: 6 request: proto: HTTP/1.1 @@ -229,14 +229,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|65819ede67699795f502025f"]} + {"members":["auth0|66545460cd5cb856cecf26cf"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members method: POST response: proto: HTTP/2.0 @@ -252,7 +252,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 457.498333ms + duration: 316.980209ms - id: 7 request: proto: HTTP/1.1 @@ -271,8 +271,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -282,13 +282,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"members":[{"user_id":"auth0|66545460cd5cb856cecf26cf","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 430.758959ms + duration: 290.411042ms - id: 8 request: proto: HTTP/1.1 @@ -307,8 +307,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -318,13 +318,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|66545460cd5cb856cecf26cf"}],"next":"MjAyNC0wNS0yNyAwOTozNzo0NC40NzQwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 525.460583ms + duration: 313.487416ms - id: 9 request: proto: HTTP/1.1 @@ -343,8 +343,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozNzo0NC40NzQwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -352,15 +352,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 442.569208ms + duration: 303.655083ms - id: 10 request: proto: HTTP/1.1 @@ -379,8 +379,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede67699795f502025f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf method: GET response: proto: HTTP/2.0 @@ -390,13 +390,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.048Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede67699795f502025f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.048Z","user_id":"auth0|65819ede67699795f502025f","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-05-27T09:37:36.327Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460cd5cb856cecf26cf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.327Z","user_id":"auth0|66545460cd5cb856cecf26cf","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 639.294917ms + duration: 277.557542ms - id: 11 request: proto: HTTP/1.1 @@ -415,8 +415,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede855740bf7143fb44 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -426,13 +426,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.586Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede855740bf7143fb44","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.587Z","user_id":"auth0|65819ede855740bf7143fb44","username":"testaccorganizationmembers22"}' + body: '{"members":[{"user_id":"auth0|66545460cd5cb856cecf26cf","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 274.387542ms + duration: 311.281209ms - id: 12 request: proto: HTTP/1.1 @@ -451,8 +451,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654546174b4f6b24c122ae5 method: GET response: proto: HTTP/2.0 @@ -462,85 +462,85 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"created_at":"2024-05-27T09:37:37.069Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654546174b4f6b24c122ae5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.069Z","user_id":"auth0|6654546174b4f6b24c122ae5","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 465.038166ms + duration: 301.385666ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|65819ede67699795f502025f"]} + null form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members - method: DELETE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 531.401542ms + status: 200 OK + code: 200 + duration: 323.342166ms - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 47 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"members":["auth0|66545460cd5cb856cecf26cf"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede67699795f502025f - method: GET + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.048Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede67699795f502025f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.048Z","user_id":"auth0|65819ede67699795f502025f","username":"testaccorganizationmembers11"}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 460.591958ms + status: 204 No Content + code: 204 + duration: 313.760625ms - id: 15 request: proto: HTTP/1.1 @@ -559,8 +559,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede855740bf7143fb44 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf method: GET response: proto: HTTP/2.0 @@ -570,13 +570,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.586Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede855740bf7143fb44","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.587Z","user_id":"auth0|65819ede855740bf7143fb44","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T09:37:36.327Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460cd5cb856cecf26cf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.327Z","user_id":"auth0|66545460cd5cb856cecf26cf","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 492.610125ms + duration: 269.803125ms - id: 16 request: proto: HTTP/1.1 @@ -595,8 +595,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654546174b4f6b24c122ae5 method: GET response: proto: HTTP/2.0 @@ -606,13 +606,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"created_at":"2024-05-27T09:37:37.069Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654546174b4f6b24c122ae5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.069Z","user_id":"auth0|6654546174b4f6b24c122ae5","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.318703708s + duration: 299.526667ms - id: 17 request: proto: HTTP/1.1 @@ -631,8 +631,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede67699795f502025f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -642,13 +642,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.048Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede67699795f502025f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.048Z","user_id":"auth0|65819ede67699795f502025f","username":"testaccorganizationmembers11"}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 425.441333ms + duration: 304.212458ms - id: 18 request: proto: HTTP/1.1 @@ -667,8 +667,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede855740bf7143fb44 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf method: GET response: proto: HTTP/2.0 @@ -678,13 +678,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.586Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede855740bf7143fb44","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.587Z","user_id":"auth0|65819ede855740bf7143fb44","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T09:37:36.327Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460cd5cb856cecf26cf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.327Z","user_id":"auth0|66545460cd5cb856cecf26cf","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 197.93175ms + duration: 292.894375ms - id: 19 request: proto: HTTP/1.1 @@ -703,8 +703,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654546174b4f6b24c122ae5 method: GET response: proto: HTTP/2.0 @@ -714,13 +714,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"created_at":"2024-05-27T09:37:37.069Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654546174b4f6b24c122ae5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.069Z","user_id":"auth0|6654546174b4f6b24c122ae5","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 619.952125ms + duration: 304.386833ms - id: 20 request: proto: HTTP/1.1 @@ -739,8 +739,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -748,15 +748,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 - uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + content_length: -1 + uncompressed: true + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 258.678583ms + duration: 302.409208ms - id: 21 request: proto: HTTP/1.1 @@ -775,8 +775,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -784,15 +784,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 953.530875ms + duration: 311.552125ms - id: 22 request: proto: HTTP/1.1 @@ -811,8 +811,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -820,15 +820,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 449.137583ms + duration: 316.595042ms - id: 23 request: proto: HTTP/1.1 @@ -847,8 +847,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -858,13 +858,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 359.966833ms + duration: 289.945083ms - id: 24 request: proto: HTTP/1.1 @@ -883,8 +883,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -892,15 +892,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 - uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 482.62525ms + duration: 320.029542ms - id: 25 request: proto: HTTP/1.1 @@ -919,8 +919,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -928,15 +928,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 336.473417ms + duration: 306.906958ms - id: 26 request: proto: HTTP/1.1 @@ -955,8 +955,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -966,13 +966,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 266.629125ms + duration: 313.980375ms - id: 27 request: proto: HTTP/1.1 @@ -991,8 +991,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1000,15 +1000,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 - uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 447.054542ms + duration: 294.2585ms - id: 28 request: proto: HTTP/1.1 @@ -1027,8 +1027,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede67699795f502025f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1036,15 +1036,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.048Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede67699795f502025f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.048Z","user_id":"auth0|65819ede67699795f502025f","username":"testaccorganizationmembers11"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 157.729625ms + duration: 308.541708ms - id: 29 request: proto: HTTP/1.1 @@ -1063,8 +1063,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede855740bf7143fb44 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf method: GET response: proto: HTTP/2.0 @@ -1074,13 +1074,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.586Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede855740bf7143fb44","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.587Z","user_id":"auth0|65819ede855740bf7143fb44","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T09:37:36.327Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460cd5cb856cecf26cf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.327Z","user_id":"auth0|66545460cd5cb856cecf26cf","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 268.64725ms + duration: 295.304917ms - id: 30 request: proto: HTTP/1.1 @@ -1099,8 +1099,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654546174b4f6b24c122ae5 method: GET response: proto: HTTP/2.0 @@ -1110,13 +1110,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"created_at":"2024-05-27T09:37:37.069Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654546174b4f6b24c122ae5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.069Z","user_id":"auth0|6654546174b4f6b24c122ae5","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 177.017541ms + duration: 298.73875ms - id: 31 request: proto: HTTP/1.1 @@ -1135,8 +1135,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -1144,15 +1144,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 - uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + content_length: -1 + uncompressed: true + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 184.283834ms + duration: 310.911667ms - id: 32 request: proto: HTTP/1.1 @@ -1171,8 +1171,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1180,15 +1180,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 201.616666ms + duration: 300.514041ms - id: 33 request: proto: HTTP/1.1 @@ -1207,8 +1207,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -1218,13 +1218,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 225.540458ms + duration: 283.836ms - id: 34 request: proto: HTTP/1.1 @@ -1243,8 +1243,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1252,15 +1252,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 - uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 275.176083ms + duration: 290.93725ms - id: 35 request: proto: HTTP/1.1 @@ -1279,8 +1279,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede67699795f502025f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1288,15 +1288,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.048Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede67699795f502025f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.048Z","user_id":"auth0|65819ede67699795f502025f","username":"testaccorganizationmembers11"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.032084ms + duration: 325.915541ms - id: 36 request: proto: HTTP/1.1 @@ -1315,8 +1315,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede855740bf7143fb44 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf method: GET response: proto: HTTP/2.0 @@ -1326,13 +1326,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.586Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede855740bf7143fb44","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.587Z","user_id":"auth0|65819ede855740bf7143fb44","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T09:37:36.327Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460cd5cb856cecf26cf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.327Z","user_id":"auth0|66545460cd5cb856cecf26cf","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 476.597333ms + duration: 284.048042ms - id: 37 request: proto: HTTP/1.1 @@ -1351,8 +1351,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654546174b4f6b24c122ae5 method: GET response: proto: HTTP/2.0 @@ -1362,13 +1362,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"created_at":"2024-05-27T09:37:37.069Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654546174b4f6b24c122ae5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.069Z","user_id":"auth0|6654546174b4f6b24c122ae5","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 363.762541ms + duration: 298.509625ms - id: 38 request: proto: HTTP/1.1 @@ -1387,8 +1387,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -1396,87 +1396,87 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 - uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + content_length: -1 + uncompressed: true + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 149.726375ms + duration: 284.937167ms - id: 39 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|65819ede67699795f502025f"]} + null form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members - method: POST + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 14 uncompressed: false - body: "" + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 242.500416ms + status: 200 OK + code: 200 + duration: 291.107667ms - id: 40 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 47 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"members":["auth0|66545460cd5cb856cecf26cf"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 - method: GET + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":1}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 232.872042ms + status: 204 No Content + code: 204 + duration: 312.528916ms - id: 41 request: proto: HTTP/1.1 @@ -1495,8 +1495,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1506,13 +1506,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"members":[{"user_id":"auth0|66545460cd5cb856cecf26cf"}],"next":"MjAyNC0wNS0yNyAwOTozODoxMC44NTAwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.25825ms + duration: 294.234833ms - id: 42 request: proto: HTTP/1.1 @@ -1531,8 +1531,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoxMC44NTAwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1540,15 +1540,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 402.949958ms + duration: 297.705ms - id: 43 request: proto: HTTP/1.1 @@ -1567,8 +1567,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -1578,13 +1578,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 264.218875ms + duration: 287.181916ms - id: 44 request: proto: HTTP/1.1 @@ -1603,8 +1603,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1614,13 +1614,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 320.259083ms + duration: 286.205209ms - id: 45 request: proto: HTTP/1.1 @@ -1639,8 +1639,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1650,13 +1650,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"members":[{"user_id":"auth0|66545460cd5cb856cecf26cf"}],"next":"MjAyNC0wNS0yNyAwOTozODoxMC44NTAwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 795.417375ms + duration: 307.99675ms - id: 46 request: proto: HTTP/1.1 @@ -1675,8 +1675,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoxMC44NTAwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1684,15 +1684,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 453.771ms + duration: 280.481ms - id: 47 request: proto: HTTP/1.1 @@ -1711,8 +1711,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede67699795f502025f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -1722,13 +1722,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.048Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede67699795f502025f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.048Z","user_id":"auth0|65819ede67699795f502025f","username":"testaccorganizationmembers11"}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 328.036542ms + duration: 298.79275ms - id: 48 request: proto: HTTP/1.1 @@ -1747,8 +1747,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede855740bf7143fb44 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1758,13 +1758,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.586Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede855740bf7143fb44","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.587Z","user_id":"auth0|65819ede855740bf7143fb44","username":"testaccorganizationmembers22"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.717666ms + duration: 292.700167ms - id: 49 request: proto: HTTP/1.1 @@ -1783,8 +1783,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1794,13 +1794,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"members":[{"user_id":"auth0|66545460cd5cb856cecf26cf"}],"next":"MjAyNC0wNS0yNyAwOTozODoxMC44NTAwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 399.724958ms + duration: 308.428ms - id: 50 request: proto: HTTP/1.1 @@ -1819,8 +1819,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoxMC44NTAwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1828,15 +1828,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 199.348667ms + duration: 281.529833ms - id: 51 request: proto: HTTP/1.1 @@ -1855,8 +1855,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf method: GET response: proto: HTTP/2.0 @@ -1866,13 +1866,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"created_at":"2024-05-27T09:37:36.327Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460cd5cb856cecf26cf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.327Z","user_id":"auth0|66545460cd5cb856cecf26cf","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 264.779667ms + duration: 309.806083ms - id: 52 request: proto: HTTP/1.1 @@ -1891,8 +1891,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654546174b4f6b24c122ae5 method: GET response: proto: HTTP/2.0 @@ -1902,13 +1902,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"created_at":"2024-05-27T09:37:37.069Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654546174b4f6b24c122ae5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.069Z","user_id":"auth0|6654546174b4f6b24c122ae5","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 464.136167ms + duration: 303.487209ms - id: 53 request: proto: HTTP/1.1 @@ -1927,8 +1927,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -1938,13 +1938,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 268.576583ms + duration: 298.695417ms - id: 54 request: proto: HTTP/1.1 @@ -1963,8 +1963,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede67699795f502025f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1974,13 +1974,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.048Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede67699795f502025f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.048Z","user_id":"auth0|65819ede67699795f502025f","username":"testaccorganizationmembers11"}' + body: '{"members":[{"user_id":"auth0|66545460cd5cb856cecf26cf"}],"next":"MjAyNC0wNS0yNyAwOTozODoxMC44NTAwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 243.095791ms + duration: 302.865916ms - id: 55 request: proto: HTTP/1.1 @@ -1999,8 +1999,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede855740bf7143fb44 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoxMC44NTAwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2008,15 +2008,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.586Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede855740bf7143fb44","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.587Z","user_id":"auth0|65819ede855740bf7143fb44","username":"testaccorganizationmembers22"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 469.351208ms + duration: 294.67475ms - id: 56 request: proto: HTTP/1.1 @@ -2035,8 +2035,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -2046,13 +2046,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 469.572583ms + duration: 289.788458ms - id: 57 request: proto: HTTP/1.1 @@ -2071,8 +2071,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2082,49 +2082,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.206333ms + duration: 295.462083ms - id: 58 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|65819ede855740bf7143fb44"]} + null form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members - method: POST + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|66545460cd5cb856cecf26cf"}],"next":"MjAyNC0wNS0yNyAwOTozODoxMC44NTAwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 454.237916ms + status: 200 OK + code: 200 + duration: 288.043ms - id: 59 request: proto: HTTP/1.1 @@ -2143,8 +2143,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoxMC44NTAwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2152,15 +2152,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede855740bf7143fb44","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.227739917s + duration: 292.351959ms - id: 60 request: proto: HTTP/1.1 @@ -2179,8 +2179,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf method: GET response: proto: HTTP/2.0 @@ -2190,13 +2190,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"created_at":"2024-05-27T09:37:36.327Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460cd5cb856cecf26cf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.327Z","user_id":"auth0|66545460cd5cb856cecf26cf","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 228.63175ms + duration: 305.497334ms - id: 61 request: proto: HTTP/1.1 @@ -2215,8 +2215,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654546174b4f6b24c122ae5 method: GET response: proto: HTTP/2.0 @@ -2226,13 +2226,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"created_at":"2024-05-27T09:37:37.069Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654546174b4f6b24c122ae5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.069Z","user_id":"auth0|6654546174b4f6b24c122ae5","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 505.746417ms + duration: 294.299166ms - id: 62 request: proto: HTTP/1.1 @@ -2251,8 +2251,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -2262,13 +2262,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede855740bf7143fb44","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 400.96ms + duration: 293.351833ms - id: 63 request: proto: HTTP/1.1 @@ -2287,8 +2287,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2298,13 +2298,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"members":[{"user_id":"auth0|66545460cd5cb856cecf26cf"}],"next":"MjAyNC0wNS0yNyAwOTozODoxMC44NTAwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 170.964416ms + duration: 327.76325ms - id: 64 request: proto: HTTP/1.1 @@ -2323,8 +2323,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoxMC44NTAwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2332,51 +2332,51 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 197.876333ms + duration: 287.763208ms - id: 65 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 47 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"members":["auth0|6654546174b4f6b24c122ae5"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 - method: GET + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede855740bf7143fb44","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 250.043625ms + status: 204 No Content + code: 204 + duration: 335.403375ms - id: 66 request: proto: HTTP/1.1 @@ -2395,8 +2395,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede67699795f502025f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2406,13 +2406,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.048Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede67699795f502025f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.048Z","user_id":"auth0|65819ede67699795f502025f","username":"testaccorganizationmembers11"}' + body: '{"members":[{"user_id":"auth0|6654546174b4f6b24c122ae5"},{"user_id":"auth0|66545460cd5cb856cecf26cf"}],"next":"MjAyNC0wNS0yNyAwOTozODoyMC4wMTYwMDBVVEMsYXV0aDB8NjY1NDU0NjE3NGI0ZjZiMjRjMTIyYWU1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.281948334s + duration: 394.28875ms - id: 67 request: proto: HTTP/1.1 @@ -2431,8 +2431,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede855740bf7143fb44 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoyMC4wMTYwMDBVVEMsYXV0aDB8NjY1NDU0NjE3NGI0ZjZiMjRjMTIyYWU1&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2440,15 +2440,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.586Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede855740bf7143fb44","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.587Z","user_id":"auth0|65819ede855740bf7143fb44","username":"testaccorganizationmembers22"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 424.592584ms + duration: 332.045958ms - id: 68 request: proto: HTTP/1.1 @@ -2467,8 +2467,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -2478,13 +2478,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 479.271083ms + duration: 343.90675ms - id: 69 request: proto: HTTP/1.1 @@ -2503,8 +2503,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2514,13 +2514,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede855740bf7143fb44","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 757.817416ms + duration: 351.967083ms - id: 70 request: proto: HTTP/1.1 @@ -2539,8 +2539,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2550,13 +2550,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"members":[{"user_id":"auth0|6654546174b4f6b24c122ae5"},{"user_id":"auth0|66545460cd5cb856cecf26cf"}],"next":"MjAyNC0wNS0yNyAwOTozODoyMC4wMTYwMDBVVEMsYXV0aDB8NjY1NDU0NjE3NGI0ZjZiMjRjMTIyYWU1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 255.23225ms + duration: 341.184708ms - id: 71 request: proto: HTTP/1.1 @@ -2575,8 +2575,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoyMC4wMTYwMDBVVEMsYXV0aDB8NjY1NDU0NjE3NGI0ZjZiMjRjMTIyYWU1&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2584,15 +2584,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.207042ms + duration: 366.484125ms - id: 72 request: proto: HTTP/1.1 @@ -2611,8 +2611,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -2622,13 +2622,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede855740bf7143fb44","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.121944042s + duration: 450.867291ms - id: 73 request: proto: HTTP/1.1 @@ -2647,8 +2647,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede67699795f502025f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2658,13 +2658,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.048Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede67699795f502025f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.048Z","user_id":"auth0|65819ede67699795f502025f","username":"testaccorganizationmembers11"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 620.924084ms + duration: 319.31575ms - id: 74 request: proto: HTTP/1.1 @@ -2683,8 +2683,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede855740bf7143fb44 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2694,13 +2694,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.586Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede855740bf7143fb44","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.587Z","user_id":"auth0|65819ede855740bf7143fb44","username":"testaccorganizationmembers22"}' + body: '{"members":[{"user_id":"auth0|6654546174b4f6b24c122ae5"},{"user_id":"auth0|66545460cd5cb856cecf26cf"}],"next":"MjAyNC0wNS0yNyAwOTozODoyMC4wMTYwMDBVVEMsYXV0aDB8NjY1NDU0NjE3NGI0ZjZiMjRjMTIyYWU1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 168.5015ms + duration: 328.798875ms - id: 75 request: proto: HTTP/1.1 @@ -2719,8 +2719,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoyMC4wMTYwMDBVVEMsYXV0aDB8NjY1NDU0NjE3NGI0ZjZiMjRjMTIyYWU1&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2728,15 +2728,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 273.342958ms + duration: 319.847875ms - id: 76 request: proto: HTTP/1.1 @@ -2755,8 +2755,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf method: GET response: proto: HTTP/2.0 @@ -2766,49 +2766,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede855740bf7143fb44","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"created_at":"2024-05-27T09:37:36.327Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460cd5cb856cecf26cf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.327Z","user_id":"auth0|66545460cd5cb856cecf26cf","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.062084ms + duration: 289.472708ms - id: 77 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|65819ede67699795f502025f"]} + null form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members - method: DELETE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654546174b4f6b24c122ae5 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-05-27T09:37:37.069Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654546174b4f6b24c122ae5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.069Z","user_id":"auth0|6654546174b4f6b24c122ae5","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 479.277792ms + status: 200 OK + code: 200 + duration: 298.832708ms - id: 78 request: proto: HTTP/1.1 @@ -2827,8 +2827,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -2838,13 +2838,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 439.464333ms + duration: 285.537833ms - id: 79 request: proto: HTTP/1.1 @@ -2863,8 +2863,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2874,13 +2874,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"members":[{"user_id":"auth0|6654546174b4f6b24c122ae5"},{"user_id":"auth0|66545460cd5cb856cecf26cf"}],"next":"MjAyNC0wNS0yNyAwOTozODoyMC4wMTYwMDBVVEMsYXV0aDB8NjY1NDU0NjE3NGI0ZjZiMjRjMTIyYWU1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 260.609625ms + duration: 301.097292ms - id: 80 request: proto: HTTP/1.1 @@ -2899,8 +2899,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoyMC4wMTYwMDBVVEMsYXV0aDB8NjY1NDU0NjE3NGI0ZjZiMjRjMTIyYWU1&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2908,15 +2908,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede855740bf7143fb44","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"}],"start":0,"limit":100,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 485.153ms + duration: 292.204875ms - id: 81 request: proto: HTTP/1.1 @@ -2935,8 +2935,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -2946,13 +2946,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 252.15875ms + duration: 276.743584ms - id: 82 request: proto: HTTP/1.1 @@ -2971,8 +2971,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2988,7 +2988,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 423.427292ms + duration: 286.782209ms - id: 83 request: proto: HTTP/1.1 @@ -3007,8 +3007,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3018,13 +3018,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede855740bf7143fb44","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|6654546174b4f6b24c122ae5"},{"user_id":"auth0|66545460cd5cb856cecf26cf"}],"next":"MjAyNC0wNS0yNyAwOTozODoyMC4wMTYwMDBVVEMsYXV0aDB8NjY1NDU0NjE3NGI0ZjZiMjRjMTIyYWU1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.918125ms + duration: 341.329542ms - id: 84 request: proto: HTTP/1.1 @@ -3043,8 +3043,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede67699795f502025f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoyMC4wMTYwMDBVVEMsYXV0aDB8NjY1NDU0NjE3NGI0ZjZiMjRjMTIyYWU1&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3052,15 +3052,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.048Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede67699795f502025f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.048Z","user_id":"auth0|65819ede67699795f502025f","username":"testaccorganizationmembers11"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 493.346167ms + duration: 280.389667ms - id: 85 request: proto: HTTP/1.1 @@ -3079,8 +3079,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede855740bf7143fb44 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf method: GET response: proto: HTTP/2.0 @@ -3090,13 +3090,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.586Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede855740bf7143fb44","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.587Z","user_id":"auth0|65819ede855740bf7143fb44","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T09:37:36.327Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460cd5cb856cecf26cf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.327Z","user_id":"auth0|66545460cd5cb856cecf26cf","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 228.330958ms + duration: 309.41125ms - id: 86 request: proto: HTTP/1.1 @@ -3115,8 +3115,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654546174b4f6b24c122ae5 method: GET response: proto: HTTP/2.0 @@ -3126,13 +3126,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"created_at":"2024-05-27T09:37:37.069Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654546174b4f6b24c122ae5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.069Z","user_id":"auth0|6654546174b4f6b24c122ae5","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 153.987ms + duration: 290.946ms - id: 87 request: proto: HTTP/1.1 @@ -3151,8 +3151,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -3162,13 +3162,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede855740bf7143fb44","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 473.390709ms + duration: 289.144791ms - id: 88 request: proto: HTTP/1.1 @@ -3187,8 +3187,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3198,13 +3198,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"members":[{"user_id":"auth0|6654546174b4f6b24c122ae5"},{"user_id":"auth0|66545460cd5cb856cecf26cf"}],"next":"MjAyNC0wNS0yNyAwOTozODoyMC4wMTYwMDBVVEMsYXV0aDB8NjY1NDU0NjE3NGI0ZjZiMjRjMTIyYWU1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 409.03625ms + duration: 413.265417ms - id: 89 request: proto: HTTP/1.1 @@ -3223,8 +3223,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoyMC4wMTYwMDBVVEMsYXV0aDB8NjY1NDU0NjE3NGI0ZjZiMjRjMTIyYWU1&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3232,51 +3232,51 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 191.978542ms + duration: 401.059208ms - id: 90 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 47 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"members":["auth0|66545460cd5cb856cecf26cf"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 - method: GET + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede855740bf7143fb44","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"}],"start":0,"limit":100,"total":1}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 565.334625ms + status: 204 No Content + code: 204 + duration: 282.58375ms - id: 91 request: proto: HTTP/1.1 @@ -3295,8 +3295,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede67699795f502025f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -3306,13 +3306,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.048Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede67699795f502025f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.048Z","user_id":"auth0|65819ede67699795f502025f","username":"testaccorganizationmembers11"}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 384.692333ms + duration: 285.495ms - id: 92 request: proto: HTTP/1.1 @@ -3331,8 +3331,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede855740bf7143fb44 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3342,13 +3342,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.586Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede855740bf7143fb44","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.587Z","user_id":"auth0|65819ede855740bf7143fb44","username":"testaccorganizationmembers22"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 229.777042ms + duration: 282.083833ms - id: 93 request: proto: HTTP/1.1 @@ -3367,8 +3367,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3378,13 +3378,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"members":[{"user_id":"auth0|6654546174b4f6b24c122ae5"}],"next":"MjAyNC0wNS0yNyAwOTozODoyMC4wMTYwMDBVVEMsYXV0aDB8NjY1NDU0NjE3NGI0ZjZiMjRjMTIyYWU1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 363.011083ms + duration: 306.973167ms - id: 94 request: proto: HTTP/1.1 @@ -3403,8 +3403,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoyMC4wMTYwMDBVVEMsYXV0aDB8NjY1NDU0NjE3NGI0ZjZiMjRjMTIyYWU1&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3412,51 +3412,51 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede855740bf7143fb44","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"}],"start":0,"limit":100,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 217.54425ms + duration: 295.720125ms - id: 95 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|65819ede855740bf7143fb44"]} + null form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members - method: DELETE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 524.845666ms + status: 200 OK + code: 200 + duration: 303.988458ms - id: 96 request: proto: HTTP/1.1 @@ -3475,8 +3475,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3486,13 +3486,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 705.105708ms + duration: 289.377083ms - id: 97 request: proto: HTTP/1.1 @@ -3511,8 +3511,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3522,13 +3522,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"members":[{"user_id":"auth0|6654546174b4f6b24c122ae5"}],"next":"MjAyNC0wNS0yNyAwOTozODoyMC4wMTYwMDBVVEMsYXV0aDB8NjY1NDU0NjE3NGI0ZjZiMjRjMTIyYWU1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 250.101666ms + duration: 287.876041ms - id: 98 request: proto: HTTP/1.1 @@ -3547,8 +3547,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoyMC4wMTYwMDBVVEMsYXV0aDB8NjY1NDU0NjE3NGI0ZjZiMjRjMTIyYWU1&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3556,15 +3556,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 504.7265ms + duration: 311.155292ms - id: 99 request: proto: HTTP/1.1 @@ -3583,8 +3583,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf method: GET response: proto: HTTP/2.0 @@ -3594,13 +3594,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"created_at":"2024-05-27T09:37:36.327Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460cd5cb856cecf26cf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.327Z","user_id":"auth0|66545460cd5cb856cecf26cf","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 604.357375ms + duration: 301.377334ms - id: 100 request: proto: HTTP/1.1 @@ -3619,8 +3619,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654546174b4f6b24c122ae5 method: GET response: proto: HTTP/2.0 @@ -3630,13 +3630,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"created_at":"2024-05-27T09:37:37.069Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654546174b4f6b24c122ae5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.069Z","user_id":"auth0|6654546174b4f6b24c122ae5","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 353.696333ms + duration: 301.357959ms - id: 101 request: proto: HTTP/1.1 @@ -3655,8 +3655,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -3664,15 +3664,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 - uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + content_length: -1 + uncompressed: true + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 499.676958ms + duration: 305.798834ms - id: 102 request: proto: HTTP/1.1 @@ -3691,8 +3691,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede67699795f502025f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3702,13 +3702,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.048Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede67699795f502025f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.048Z","user_id":"auth0|65819ede67699795f502025f","username":"testaccorganizationmembers11"}' + body: '{"members":[{"user_id":"auth0|6654546174b4f6b24c122ae5"}],"next":"MjAyNC0wNS0yNyAwOTozODoyMC4wMTYwMDBVVEMsYXV0aDB8NjY1NDU0NjE3NGI0ZjZiMjRjMTIyYWU1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 537.153334ms + duration: 294.329833ms - id: 103 request: proto: HTTP/1.1 @@ -3727,8 +3727,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede855740bf7143fb44 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoyMC4wMTYwMDBVVEMsYXV0aDB8NjY1NDU0NjE3NGI0ZjZiMjRjMTIyYWU1&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3736,15 +3736,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.586Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede855740bf7143fb44","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.587Z","user_id":"auth0|65819ede855740bf7143fb44","username":"testaccorganizationmembers22"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 211.588083ms + duration: 382.795375ms - id: 104 request: proto: HTTP/1.1 @@ -3763,8 +3763,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -3774,13 +3774,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 418.315541ms + duration: 346.659958ms - id: 105 request: proto: HTTP/1.1 @@ -3799,8 +3799,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3808,15 +3808,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 - uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 251.705917ms + duration: 351.632ms - id: 106 request: proto: HTTP/1.1 @@ -3835,8 +3835,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3846,13 +3846,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"members":[{"user_id":"auth0|6654546174b4f6b24c122ae5"}],"next":"MjAyNC0wNS0yNyAwOTozODoyMC4wMTYwMDBVVEMsYXV0aDB8NjY1NDU0NjE3NGI0ZjZiMjRjMTIyYWU1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.150916ms + duration: 330.222542ms - id: 107 request: proto: HTTP/1.1 @@ -3871,8 +3871,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoyMC4wMTYwMDBVVEMsYXV0aDB8NjY1NDU0NjE3NGI0ZjZiMjRjMTIyYWU1&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3880,15 +3880,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 249.743792ms + duration: 354.584792ms - id: 108 request: proto: HTTP/1.1 @@ -3907,8 +3907,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf method: GET response: proto: HTTP/2.0 @@ -3916,15 +3916,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 - uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-05-27T09:37:36.327Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460cd5cb856cecf26cf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.327Z","user_id":"auth0|66545460cd5cb856cecf26cf","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 247.424333ms + duration: 290.82425ms - id: 109 request: proto: HTTP/1.1 @@ -3943,8 +3943,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede67699795f502025f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654546174b4f6b24c122ae5 method: GET response: proto: HTTP/2.0 @@ -3954,13 +3954,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.048Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede67699795f502025f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.048Z","user_id":"auth0|65819ede67699795f502025f","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-05-27T09:37:37.069Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654546174b4f6b24c122ae5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.069Z","user_id":"auth0|6654546174b4f6b24c122ae5","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 205.061209ms + duration: 439.223083ms - id: 110 request: proto: HTTP/1.1 @@ -3979,8 +3979,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -3988,15 +3988,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 - uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + content_length: -1 + uncompressed: true + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 205.82975ms + duration: 311.444375ms - id: 111 request: proto: HTTP/1.1 @@ -4015,8 +4015,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede855740bf7143fb44 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4026,13 +4026,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.586Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede855740bf7143fb44","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.587Z","user_id":"auth0|65819ede855740bf7143fb44","username":"testaccorganizationmembers22"}' + body: '{"members":[{"user_id":"auth0|6654546174b4f6b24c122ae5"}],"next":"MjAyNC0wNS0yNyAwOTozODoyMC4wMTYwMDBVVEMsYXV0aDB8NjY1NDU0NjE3NGI0ZjZiMjRjMTIyYWU1"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 180.3125ms + duration: 308.941416ms - id: 112 request: proto: HTTP/1.1 @@ -4051,8 +4051,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoyMC4wMTYwMDBVVEMsYXV0aDB8NjY1NDU0NjE3NGI0ZjZiMjRjMTIyYWU1&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4060,51 +4060,51 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 190.7085ms + duration: 287.058542ms - id: 113 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 47 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"members":["auth0|6654546174b4f6b24c122ae5"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 - method: GET + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 231.734584ms + status: 204 No Content + code: 204 + duration: 286.188625ms - id: 114 request: proto: HTTP/1.1 @@ -4123,8 +4123,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -4134,13 +4134,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 313.505792ms + duration: 397.94975ms - id: 115 request: proto: HTTP/1.1 @@ -4159,8 +4159,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4168,15 +4168,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 - uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.410166ms + duration: 300.355ms - id: 116 request: proto: HTTP/1.1 @@ -4195,8 +4195,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4204,15 +4204,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 519.123542ms + duration: 308.852208ms - id: 117 request: proto: HTTP/1.1 @@ -4231,8 +4231,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -4242,13 +4242,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 464.564333ms + duration: 295.357083ms - id: 118 request: proto: HTTP/1.1 @@ -4267,8 +4267,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4276,15 +4276,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 - uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 253.300542ms + duration: 327.432458ms - id: 119 request: proto: HTTP/1.1 @@ -4303,8 +4303,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede67699795f502025f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4312,15 +4312,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.048Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede67699795f502025f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.048Z","user_id":"auth0|65819ede67699795f502025f","username":"testaccorganizationmembers11"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 505.377959ms + duration: 303.979917ms - id: 120 request: proto: HTTP/1.1 @@ -4339,8 +4339,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede855740bf7143fb44 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf method: GET response: proto: HTTP/2.0 @@ -4350,13 +4350,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.586Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede855740bf7143fb44","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.587Z","user_id":"auth0|65819ede855740bf7143fb44","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T09:37:36.327Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460cd5cb856cecf26cf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.327Z","user_id":"auth0|66545460cd5cb856cecf26cf","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 409.639084ms + duration: 308.082459ms - id: 121 request: proto: HTTP/1.1 @@ -4375,8 +4375,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654546174b4f6b24c122ae5 method: GET response: proto: HTTP/2.0 @@ -4386,13 +4386,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"created_at":"2024-05-27T09:37:37.069Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654546174b4f6b24c122ae5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.069Z","user_id":"auth0|6654546174b4f6b24c122ae5","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 237.385958ms + duration: 299.50775ms - id: 122 request: proto: HTTP/1.1 @@ -4411,8 +4411,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -4422,13 +4422,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 261.689375ms + duration: 319.732292ms - id: 123 request: proto: HTTP/1.1 @@ -4447,8 +4447,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4456,15 +4456,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 314.793584ms + duration: 283.454333ms - id: 124 request: proto: HTTP/1.1 @@ -4483,8 +4483,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -4492,15 +4492,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 - uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + content_length: -1 + uncompressed: true + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.677375ms + duration: 283.480666ms - id: 125 request: proto: HTTP/1.1 @@ -4519,8 +4519,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede67699795f502025f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4530,13 +4530,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.048Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede67699795f502025f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.048Z","user_id":"auth0|65819ede67699795f502025f","username":"testaccorganizationmembers11"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 266.328292ms + duration: 282.960875ms - id: 126 request: proto: HTTP/1.1 @@ -4555,8 +4555,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede855740bf7143fb44 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4564,15 +4564,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.586Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede855740bf7143fb44","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.587Z","user_id":"auth0|65819ede855740bf7143fb44","username":"testaccorganizationmembers22"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.015664583s + duration: 279.222375ms - id: 127 request: proto: HTTP/1.1 @@ -4591,8 +4591,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf method: GET response: proto: HTTP/2.0 @@ -4602,13 +4602,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"created_at":"2024-05-27T09:37:36.327Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460cd5cb856cecf26cf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.327Z","user_id":"auth0|66545460cd5cb856cecf26cf","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 499.388916ms + duration: 281.061625ms - id: 128 request: proto: HTTP/1.1 @@ -4627,8 +4627,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4636,15 +4636,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.001375ms + duration: 306.839916ms - id: 129 request: proto: HTTP/1.1 @@ -4663,8 +4663,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654546174b4f6b24c122ae5 method: GET response: proto: HTTP/2.0 @@ -4674,13 +4674,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"created_at":"2024-05-27T09:37:37.069Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654546174b4f6b24c122ae5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.069Z","user_id":"auth0|6654546174b4f6b24c122ae5","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 485.264708ms + duration: 274.583042ms - id: 130 request: proto: HTTP/1.1 @@ -4699,8 +4699,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -4708,15 +4708,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 - uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + content_length: -1 + uncompressed: true + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 478.458333ms + duration: 277.616834ms - id: 131 request: proto: HTTP/1.1 @@ -4735,8 +4735,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede67699795f502025f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -4746,13 +4746,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.048Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede67699795f502025f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.048Z","user_id":"auth0|65819ede67699795f502025f","username":"testaccorganizationmembers11"}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 253.574084ms + duration: 305.530333ms - id: 132 request: proto: HTTP/1.1 @@ -4771,8 +4771,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede855740bf7143fb44 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4782,13 +4782,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.586Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede855740bf7143fb44","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.587Z","user_id":"auth0|65819ede855740bf7143fb44","username":"testaccorganizationmembers22"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.569041ms + duration: 306.714167ms - id: 133 request: proto: HTTP/1.1 @@ -4807,8 +4807,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4816,15 +4816,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 455.894042ms + duration: 289.232417ms - id: 134 request: proto: HTTP/1.1 @@ -4843,8 +4843,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -4854,13 +4854,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 336.651833ms + duration: 300.130041ms - id: 135 request: proto: HTTP/1.1 @@ -4879,8 +4879,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4896,7 +4896,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 236.542166ms + duration: 302.012875ms - id: 136 request: proto: HTTP/1.1 @@ -4915,8 +4915,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4924,15 +4924,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 14 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 263.55275ms + duration: 378.695166ms - id: 137 request: proto: HTTP/1.1 @@ -4951,8 +4951,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede67699795f502025f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf method: GET response: proto: HTTP/2.0 @@ -4962,13 +4962,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.048Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede67699795f502025f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.048Z","user_id":"auth0|65819ede67699795f502025f","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-05-27T09:37:36.327Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460cd5cb856cecf26cf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.327Z","user_id":"auth0|66545460cd5cb856cecf26cf","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 694.926541ms + duration: 315.475917ms - id: 138 request: proto: HTTP/1.1 @@ -4987,8 +4987,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede855740bf7143fb44 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654546174b4f6b24c122ae5 method: GET response: proto: HTTP/2.0 @@ -4998,13 +4998,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.586Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede855740bf7143fb44","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.587Z","user_id":"auth0|65819ede855740bf7143fb44","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T09:37:37.069Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654546174b4f6b24c122ae5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.069Z","user_id":"auth0|6654546174b4f6b24c122ae5","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 367.227375ms + duration: 314.949458ms - id: 139 request: proto: HTTP/1.1 @@ -5023,8 +5023,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -5034,85 +5034,85 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 178.873083ms + duration: 353.259167ms - id: 140 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|65819ede855740bf7143fb44"]} + null form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members - method: POST + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 186.810375ms + status: 200 OK + code: 200 + duration: 330.19125ms - id: 141 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|65819ede67699795f502025f"]} + null form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members - method: POST + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 219.945583ms + status: 200 OK + code: 200 + duration: 352.315542ms - id: 142 request: proto: HTTP/1.1 @@ -5131,8 +5131,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5140,15 +5140,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede855740bf7143fb44","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":2}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 258.803083ms + duration: 355.12575ms - id: 143 request: proto: HTTP/1.1 @@ -5167,8 +5167,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf method: GET response: proto: HTTP/2.0 @@ -5178,13 +5178,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede855740bf7143fb44","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":2}' + body: '{"created_at":"2024-05-27T09:37:36.327Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460cd5cb856cecf26cf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.327Z","user_id":"auth0|66545460cd5cb856cecf26cf","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 975.363458ms + duration: 353.161458ms - id: 144 request: proto: HTTP/1.1 @@ -5203,8 +5203,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede67699795f502025f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654546174b4f6b24c122ae5 method: GET response: proto: HTTP/2.0 @@ -5214,13 +5214,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.048Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede67699795f502025f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.048Z","user_id":"auth0|65819ede67699795f502025f","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-05-27T09:37:37.069Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654546174b4f6b24c122ae5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.069Z","user_id":"auth0|6654546174b4f6b24c122ae5","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 447.369959ms + duration: 416.240333ms - id: 145 request: proto: HTTP/1.1 @@ -5239,8 +5239,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede855740bf7143fb44 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -5250,13 +5250,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.586Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede855740bf7143fb44","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.587Z","user_id":"auth0|65819ede855740bf7143fb44","username":"testaccorganizationmembers22"}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 244.645917ms + duration: 307.528458ms - id: 146 request: proto: HTTP/1.1 @@ -5275,8 +5275,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -5286,13 +5286,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 433.817ms + duration: 307.960709ms - id: 147 request: proto: HTTP/1.1 @@ -5311,8 +5311,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5322,13 +5322,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede855740bf7143fb44","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":2}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 232.562834ms + duration: 308.876708ms - id: 148 request: proto: HTTP/1.1 @@ -5347,8 +5347,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5356,15 +5356,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede855740bf7143fb44","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":2}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.396542ms + duration: 301.894916ms - id: 149 request: proto: HTTP/1.1 @@ -5383,8 +5383,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf method: GET response: proto: HTTP/2.0 @@ -5394,13 +5394,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede855740bf7143fb44","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"created_at":"2024-05-27T09:37:36.327Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460cd5cb856cecf26cf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.327Z","user_id":"auth0|66545460cd5cb856cecf26cf","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 202.386875ms + duration: 302.614625ms - id: 150 request: proto: HTTP/1.1 @@ -5419,8 +5419,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654546174b4f6b24c122ae5 method: GET response: proto: HTTP/2.0 @@ -5430,13 +5430,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"created_at":"2024-05-27T09:37:37.069Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654546174b4f6b24c122ae5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.069Z","user_id":"auth0|6654546174b4f6b24c122ae5","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 396.481291ms + duration: 295.787042ms - id: 151 request: proto: HTTP/1.1 @@ -5455,8 +5455,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -5466,13 +5466,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 256.246041ms + duration: 301.164416ms - id: 152 request: proto: HTTP/1.1 @@ -5491,8 +5491,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -5502,13 +5502,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede855740bf7143fb44","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 239.959542ms + duration: 296.689625ms - id: 153 request: proto: HTTP/1.1 @@ -5527,8 +5527,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede67699795f502025f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5538,13 +5538,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.048Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede67699795f502025f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.048Z","user_id":"auth0|65819ede67699795f502025f","username":"testaccorganizationmembers11"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 261.75925ms + duration: 285.607209ms - id: 154 request: proto: HTTP/1.1 @@ -5563,8 +5563,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede855740bf7143fb44 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5572,15 +5572,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.586Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede855740bf7143fb44","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.587Z","user_id":"auth0|65819ede855740bf7143fb44","username":"testaccorganizationmembers22"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 358.397ms + duration: 286.5905ms - id: 155 request: proto: HTTP/1.1 @@ -5599,8 +5599,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf method: GET response: proto: HTTP/2.0 @@ -5610,13 +5610,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"created_at":"2024-05-27T09:37:36.327Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460cd5cb856cecf26cf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.327Z","user_id":"auth0|66545460cd5cb856cecf26cf","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 274.893125ms + duration: 287.5485ms - id: 156 request: proto: HTTP/1.1 @@ -5635,8 +5635,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654546174b4f6b24c122ae5 method: GET response: proto: HTTP/2.0 @@ -5646,13 +5646,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede855740bf7143fb44","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":2}' + body: '{"created_at":"2024-05-27T09:37:37.069Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654546174b4f6b24c122ae5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.069Z","user_id":"auth0|6654546174b4f6b24c122ae5","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.56525ms + duration: 300.34725ms - id: 157 request: proto: HTTP/1.1 @@ -5671,8 +5671,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -5682,85 +5682,85 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede855740bf7143fb44","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":2}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 463.456625ms + duration: 301.453709ms - id: 158 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 47 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"members":["auth0|6654546174b4f6b24c122ae5"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 - method: GET + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede855740bf7143fb44","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 321.939ms + status: 204 No Content + code: 204 + duration: 295.863917ms - id: 159 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 47 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"members":["auth0|66545460cd5cb856cecf26cf"]} form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 - method: GET + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 247.182917ms + status: 204 No Content + code: 204 + duration: 340.453083ms - id: 160 request: proto: HTTP/1.1 @@ -5779,8 +5779,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -5790,13 +5790,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"members":[{"user_id":"auth0|6654546174b4f6b24c122ae5","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|66545460cd5cb856cecf26cf","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.630625ms + duration: 327.001375ms - id: 161 request: proto: HTTP/1.1 @@ -5815,8 +5815,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -5826,13 +5826,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede855740bf7143fb44","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654546174b4f6b24c122ae5","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|66545460cd5cb856cecf26cf","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.712541ms + duration: 307.07375ms - id: 162 request: proto: HTTP/1.1 @@ -5851,8 +5851,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf method: GET response: proto: HTTP/2.0 @@ -5862,13 +5862,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"created_at":"2024-05-27T09:37:36.327Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460cd5cb856cecf26cf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.327Z","user_id":"auth0|66545460cd5cb856cecf26cf","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.744458ms + duration: 268.281125ms - id: 163 request: proto: HTTP/1.1 @@ -5887,8 +5887,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654546174b4f6b24c122ae5 method: GET response: proto: HTTP/2.0 @@ -5898,13 +5898,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"created_at":"2024-05-27T09:37:37.069Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654546174b4f6b24c122ae5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.069Z","user_id":"auth0|6654546174b4f6b24c122ae5","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 274.690959ms + duration: 270.604459ms - id: 164 request: proto: HTTP/1.1 @@ -5923,8 +5923,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -5934,13 +5934,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede855740bf7143fb44","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 585.299542ms + duration: 297.098834ms - id: 165 request: proto: HTTP/1.1 @@ -5959,8 +5959,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede67699795f502025f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -5970,13 +5970,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.048Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede67699795f502025f","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.048Z","user_id":"auth0|65819ede67699795f502025f","username":"testaccorganizationmembers11"}' + body: '{"members":[{"user_id":"auth0|6654546174b4f6b24c122ae5","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|66545460cd5cb856cecf26cf","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 453.822291ms + duration: 296.081333ms - id: 166 request: proto: HTTP/1.1 @@ -5995,8 +5995,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede855740bf7143fb44 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?include_totals=true&per_page=50 method: GET response: proto: HTTP/2.0 @@ -6006,13 +6006,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2023-12-19T13:47:10.586Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"65819ede855740bf7143fb44","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-12-19T13:47:10.587Z","user_id":"auth0|65819ede855740bf7143fb44","username":"testaccorganizationmembers22"}' + body: '{"members":[{"user_id":"auth0|6654546174b4f6b24c122ae5","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|66545460cd5cb856cecf26cf","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 443.107792ms + duration: 315.787ms - id: 167 request: proto: HTTP/1.1 @@ -6031,8 +6031,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6042,13 +6042,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"members":[{"user_id":"auth0|6654546174b4f6b24c122ae5"},{"user_id":"auth0|66545460cd5cb856cecf26cf"}],"next":"MjAyNC0wNS0yNyAwOTozODo1Ny42MDUwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 334.297292ms + duration: 292.505667ms - id: 168 request: proto: HTTP/1.1 @@ -6067,8 +6067,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODo1Ny42MDUwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6076,15 +6076,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede855740bf7143fb44","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":2}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 255.68525ms + duration: 321.775375ms - id: 169 request: proto: HTTP/1.1 @@ -6103,8 +6103,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&per_page=50 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt method: GET response: proto: HTTP/2.0 @@ -6114,13 +6114,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede855740bf7143fb44","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":2}' + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 406.314417ms + duration: 296.94425ms - id: 170 request: proto: HTTP/1.1 @@ -6139,8 +6139,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -6150,13 +6150,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede855740bf7143fb44","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.531084ms + duration: 301.193917ms - id: 171 request: proto: HTTP/1.1 @@ -6175,8 +6175,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6186,13 +6186,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_kYo6bXR0fQ7C8xb2","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"members":[{"user_id":"auth0|6654546174b4f6b24c122ae5"},{"user_id":"auth0|66545460cd5cb856cecf26cf"}],"next":"MjAyNC0wNS0yNyAwOTozODo1Ny42MDUwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.039375ms + duration: 290.538ms - id: 172 request: proto: HTTP/1.1 @@ -6211,8 +6211,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/enabled_connections?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODo1Ny42MDUwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6220,15 +6220,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 327.450875ms + duration: 310.212125ms - id: 173 request: proto: HTTP/1.1 @@ -6247,8 +6247,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members?include_totals=true&page=0&per_page=100 + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf method: GET response: proto: HTTP/2.0 @@ -6258,192 +6258,1092 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|65819ede855740bf7143fb44","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|65819ede67699795f502025f","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"created_at":"2024-05-27T09:37:36.327Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460cd5cb856cecf26cf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.327Z","user_id":"auth0|66545460cd5cb856cecf26cf","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 224.516875ms + duration: 285.806875ms - id: 174 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|65819ede67699795f502025f"]} + null form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members - method: DELETE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654546174b4f6b24c122ae5 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-05-27T09:37:37.069Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654546174b4f6b24c122ae5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.069Z","user_id":"auth0|6654546174b4f6b24c122ae5","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 251.284333ms + status: 200 OK + code: 200 + duration: 282.612041ms - id: 175 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 80 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|65819ede67699795f502025f","auth0|65819ede855740bf7143fb44"]} + null form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members - method: DELETE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 283.69775ms + status: 200 OK + code: 200 + duration: 282.159416ms - id: 176 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|65819ede855740bf7143fb44"]} + null form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2/members - method: DELETE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?include_totals=true&per_page=50 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|6654546174b4f6b24c122ae5","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|66545460cd5cb856cecf26cf","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":2}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 205.478291ms + status: 200 OK + code: 200 + duration: 285.645417ms - id: 177 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + null form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_kYo6bXR0fQ7C8xb2 - method: DELETE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?include_totals=true&per_page=50 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|6654546174b4f6b24c122ae5","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|66545460cd5cb856cecf26cf","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":2}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 1.078562041s + status: 200 OK + code: 200 + duration: 297.201917ms - id: 178 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + null form: {} headers: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede855740bf7143fb44 - method: DELETE + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|6654546174b4f6b24c122ae5"},{"user_id":"auth0|66545460cd5cb856cecf26cf"}],"next":"MjAyNC0wNS0yNyAwOTozODo1Ny42MDUwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 243.971292ms + status: 200 OK + code: 200 + duration: 396.783583ms - id: 179 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODo1Ny42MDUwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 353.373375ms + - id: 180 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 857.691292ms + - id: 181 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 355.235625ms + - id: 182 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|6654546174b4f6b24c122ae5"},{"user_id":"auth0|66545460cd5cb856cecf26cf"}],"next":"MjAyNC0wNS0yNyAwOTozODo1Ny42MDUwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 351.625209ms + - id: 183 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODo1Ny42MDUwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 428.200041ms + - id: 184 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 289.482417ms + - id: 185 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 304.961041ms + - id: 186 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|6654546174b4f6b24c122ae5"},{"user_id":"auth0|66545460cd5cb856cecf26cf"}],"next":"MjAyNC0wNS0yNyAwOTozODo1Ny42MDUwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 318.116ms + - id: 187 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODo1Ny42MDUwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 318.688125ms + - id: 188 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-05-27T09:37:36.327Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460cd5cb856cecf26cf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.327Z","user_id":"auth0|66545460cd5cb856cecf26cf","username":"testaccorganizationmembers11"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 309.284ms + - id: 189 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654546174b4f6b24c122ae5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-05-27T09:37:37.069Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654546174b4f6b24c122ae5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.069Z","user_id":"auth0|6654546174b4f6b24c122ae5","username":"testaccorganizationmembers22"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 328.435166ms + - id: 190 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 309.572875ms + - id: 191 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|6654546174b4f6b24c122ae5","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|66545460cd5cb856cecf26cf","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 305.744708ms + - id: 192 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?include_totals=true&per_page=50 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|6654546174b4f6b24c122ae5","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|66545460cd5cb856cecf26cf","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":50,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 316.7515ms + - id: 193 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|6654546174b4f6b24c122ae5"},{"user_id":"auth0|66545460cd5cb856cecf26cf"}],"next":"MjAyNC0wNS0yNyAwOTozODo1Ny42MDUwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 291.992584ms + - id: 194 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODo1Ny42MDUwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 295.943333ms + - id: 195 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 274.606125ms + - id: 196 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 289.189417ms + - id: 197 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|6654546174b4f6b24c122ae5"},{"user_id":"auth0|66545460cd5cb856cecf26cf"}],"next":"MjAyNC0wNS0yNyAwOTozODo1Ny42MDUwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 313.0225ms + - id: 198 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODo1Ny42MDUwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 305.748ms + - id: 199 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 80 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"members":["auth0|66545460cd5cb856cecf26cf","auth0|6654546174b4f6b24c122ae5"]} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 286.864708ms + - id: 200 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 47 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"members":["auth0|66545460cd5cb856cecf26cf"]} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 298.419583ms + - id: 201 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 47 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"members":["auth0|6654546174b4f6b24c122ae5"]} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 282.539209ms + - id: 202 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 286.574167ms + - id: 203 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654546174b4f6b24c122ae5 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 335.449ms + - id: 204 request: proto: HTTP/1.1 proto_major: 1 @@ -6460,8 +7360,8 @@ interactions: Content-Type: - application/json User-Agent: - - Go-Auth0/1.4.0 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C65819ede67699795f502025f + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf method: DELETE response: proto: HTTP/2.0 @@ -6477,4 +7377,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 574.45ms + duration: 325.842208ms From e53527138298791364f6066b6dbff6e3d5d9b71b Mon Sep 17 00:00:00 2001 From: Kunal Dawar Date: Mon, 27 May 2024 15:38:28 +0530 Subject: [PATCH 2/8] Update Get organizations in organizations.go to use Checkpoint Pagination. --- internal/acctest/sweep/organizations.go | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/internal/acctest/sweep/organizations.go b/internal/acctest/sweep/organizations.go index 1cbf9d6dc..42918f24a 100644 --- a/internal/acctest/sweep/organizations.go +++ b/internal/acctest/sweep/organizations.go @@ -22,10 +22,11 @@ func Organizations() { return err } - var page int var result *multierror.Error + var from string + for { - organizationList, err := api.Organization.List(ctx, management.Page(page)) + organizationList, err := api.Organization.List(ctx, management.From(from), management.Take(100)) if err != nil { return err } @@ -42,10 +43,12 @@ func Organizations() { log.Printf("[DEBUG] ✗ %s", organization.GetName()) } } + if !organizationList.HasNext() { break } - page++ + + from = organizationList.Next } return result.ErrorOrNil() From 2d027dd1aff4e213b90e86264929f7f853d581ae Mon Sep 17 00:00:00 2001 From: Kunal Dawar Date: Mon, 27 May 2024 20:12:38 +0530 Subject: [PATCH 3/8] resolved issues --- internal/acctest/sweep/organizations.go | 10 +- internal/auth0/organization/data_source.go | 22 +- internal/auth0/organization/flatten.go | 23 +- .../auth0/organization/resource_member.go | 4 +- .../auth0/organization/resource_members.go | 10 +- .../TestAccDataSourceOrganization.yaml | 678 ++++-- .../TestAccOrganizationConnection.yaml | 768 +++---- .../TestAccOrganizationConnections.yaml | 1314 ++++++------ .../recordings/TestAccOrganizationMember.yaml | 1646 ++++++++++----- .../TestAccOrganizationMemberRole.yaml | 1282 +++++++---- .../TestAccOrganizationMemberRoles.yaml | 1298 ++++++++---- .../TestAccOrganizationMembers.yaml | 1880 ++++++++++------- 12 files changed, 5547 insertions(+), 3388 deletions(-) diff --git a/internal/acctest/sweep/organizations.go b/internal/acctest/sweep/organizations.go index 42918f24a..53253398d 100644 --- a/internal/acctest/sweep/organizations.go +++ b/internal/acctest/sweep/organizations.go @@ -24,9 +24,16 @@ func Organizations() { var result *multierror.Error var from string + firstTime := true for { - organizationList, err := api.Organization.List(ctx, management.From(from), management.Take(100)) + var options []management.RequestOption + if !firstTime { + options = append(options, management.From(from)) + } + options = append(options, management.Take(100)) + + organizationList, err := api.Organization.List(ctx, options...) if err != nil { return err } @@ -49,6 +56,7 @@ func Organizations() { } from = organizationList.Next + firstTime = false } return result.ErrorOrNil() diff --git a/internal/auth0/organization/data_source.go b/internal/auth0/organization/data_source.go index 0b1f222a4..e237e2c8e 100644 --- a/internal/auth0/organization/data_source.go +++ b/internal/auth0/organization/data_source.go @@ -127,25 +127,33 @@ func fetchAllOrganizationConnections(ctx context.Context, api *management.Manage return foundConnections, nil } -func fetchAllOrganizationMembers(ctx context.Context, api *management.Management, organizationID string) ([]string, error) { - foundMembers := make([]string, 0) +func fetchAllOrganizationMembers(ctx context.Context, api *management.Management, organizationID string) ([]*management.OrganizationMember, error) { + var foundMembers []*management.OrganizationMember var from string + firstTime := true for { - members, err := api.Organization.Members(ctx, organizationID, management.From(from), management.Take(100), management.IncludeFields("user_id")) + var options []management.RequestOption + if !firstTime { + options = append(options, management.From(from)) + } + options = append(options, management.Take(100), management.IncludeFields("user_id")) + + membersList, err := api.Organization.Members(ctx, organizationID, options...) if err != nil { return nil, err } - for _, member := range members.Members { - foundMembers = append(foundMembers, member.GetUserID()) + for _, member := range membersList.Members { + foundMembers = append(foundMembers, &member) } - if !members.HasNext() { + if !membersList.HasNext() { break } - from = members.Next + from = membersList.Next + firstTime = false } return foundMembers, nil diff --git a/internal/auth0/organization/flatten.go b/internal/auth0/organization/flatten.go index 216c33c53..6a81fb26f 100644 --- a/internal/auth0/organization/flatten.go +++ b/internal/auth0/organization/flatten.go @@ -21,14 +21,23 @@ func flattenOrganizationForDataSource( data *schema.ResourceData, organization *management.Organization, connections []*management.OrganizationConnection, - memberIDs []string, + members []*management.OrganizationMember, ) error { result := multierror.Append( flattenOrganization(data, organization), data.Set("connections", flattenOrganizationEnabledConnections(connections)), - data.Set("members", memberIDs), ) + var memberIDs []string + for _, member := range members { + memberIDs = append(memberIDs, member.GetUserID()) + } + + err := data.Set("members", memberIDs) + if err != nil { + result = multierror.Append(result, err) + } + return result.ErrorOrNil() } @@ -89,7 +98,7 @@ func flattenOrganizationMemberRole(data *schema.ResourceData, role management.Or return result.ErrorOrNil() } -func flattenOrganizationMembers(data *schema.ResourceData, members []string) error { +func flattenOrganizationMembers(data *schema.ResourceData, members []*management.OrganizationMember) error { result := multierror.Append( data.Set("organization_id", data.Id()), data.Set("members", flattenOrganizationMembersSlice(members)), @@ -98,10 +107,14 @@ func flattenOrganizationMembers(data *schema.ResourceData, members []string) err return result.ErrorOrNil() } -func flattenOrganizationMembersSlice(members []string) []string { +func flattenOrganizationMembersSlice(members []*management.OrganizationMember) []string { if len(members) == 0 { return nil } + flattenedMembers := make([]string, 0) + for _, member := range members { + flattenedMembers = append(flattenedMembers, member.GetUserID()) + } - return members + return flattenedMembers } diff --git a/internal/auth0/organization/resource_member.go b/internal/auth0/organization/resource_member.go index de71fee96..6123e0703 100644 --- a/internal/auth0/organization/resource_member.go +++ b/internal/auth0/organization/resource_member.go @@ -64,8 +64,8 @@ func readOrganizationMember(ctx context.Context, data *schema.ResourceData, meta } userID := data.Get("user_id").(string) - for _, memberID := range members { - if memberID == userID { + for _, member := range members { + if member.UserID != nil && *member.UserID == userID { return nil } } diff --git a/internal/auth0/organization/resource_members.go b/internal/auth0/organization/resource_members.go index b64cf90cc..48818ee83 100644 --- a/internal/auth0/organization/resource_members.go +++ b/internal/auth0/organization/resource_members.go @@ -3,6 +3,7 @@ package organization import ( "context" "fmt" + "github.com/auth0/go-auth0/management" "github.com/google/go-cmp/cmp" "github.com/hashicorp/terraform-plugin-sdk/v2/diag" @@ -138,13 +139,18 @@ func deleteOrganizationMembers(ctx context.Context, data *schema.ResourceData, m func guardAgainstErasingUnwantedMembers( organizationID string, - alreadyMemberIDs []string, + alreadyMembers []*management.OrganizationMember, memberIDsToAdd []string, ) diag.Diagnostics { - if len(alreadyMemberIDs) == 0 { + if len(alreadyMembers) == 0 { return nil } + alreadyMemberIDs := make([]string, 0) + for _, member := range alreadyMembers { + alreadyMemberIDs = append(alreadyMemberIDs, member.GetUserID()) + } + if cmp.Equal(memberIDsToAdd, alreadyMemberIDs) { return nil } diff --git a/test/data/recordings/TestAccDataSourceOrganization.yaml b/test/data/recordings/TestAccDataSourceOrganization.yaml index 3c7ba86a6..a41847ea7 100644 --- a/test/data/recordings/TestAccDataSourceOrganization.yaml +++ b/test/data/recordings/TestAccDataSourceOrganization.yaml @@ -36,7 +36,7 @@ interactions: - application/json; charset=utf-8 status: 404 Not Found code: 404 - duration: 352.04425ms + duration: 293.035166ms - id: 1 request: proto: HTTP/1.1 @@ -66,13 +66,13 @@ interactions: trailer: {} content_length: 605 uncompressed: false - body: '{"created_at":"2024-05-27T09:21:58.314Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665450b6971dfa41d42ed17c","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:21:58.314Z","user_id":"auth0|665450b6971dfa41d42ed17c","username":"testaccdatasourceorganization"}' + body: '{"created_at":"2024-05-27T13:25:36.528Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665489d0e539b35aea957717","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T13:25:36.528Z","user_id":"auth0|665489d0e539b35aea957717","username":"testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 437.000709ms + duration: 470.867333ms - id: 2 request: proto: HTTP/1.1 @@ -92,7 +92,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665450b6971dfa41d42ed17c + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665489d0e539b35aea957717 method: GET response: proto: HTTP/2.0 @@ -102,13 +102,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:21:58.314Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665450b6971dfa41d42ed17c","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:21:58.314Z","user_id":"auth0|665450b6971dfa41d42ed17c","username":"testaccdatasourceorganization"}' + body: '{"created_at":"2024-05-27T13:25:36.528Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665489d0e539b35aea957717","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T13:25:36.528Z","user_id":"auth0|665489d0e539b35aea957717","username":"testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.222375ms + duration: 320.755542ms - id: 3 request: proto: HTTP/1.1 @@ -138,13 +138,13 @@ interactions: trailer: {} content_length: 568 uncompressed: false - body: '{"id":"con_tVViUECL3AjNeNIf","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' + body: '{"id":"con_TgwVgIvmJWmge5ig","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 358.260083ms + duration: 358.404333ms - id: 4 request: proto: HTTP/1.1 @@ -164,7 +164,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_tVViUECL3AjNeNIf + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_TgwVgIvmJWmge5ig method: GET response: proto: HTTP/2.0 @@ -174,13 +174,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_tVViUECL3AjNeNIf","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' + body: '{"id":"con_TgwVgIvmJWmge5ig","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.333625ms + duration: 329.074792ms - id: 5 request: proto: HTTP/1.1 @@ -210,13 +210,13 @@ interactions: trailer: {} content_length: 130 uncompressed: false - body: '{"id":"org_G7ae32nR2nC37fCn","display_name":"Acme Inc. testaccdatasourceorganization","name":"test-testaccdatasourceorganization"}' + body: '{"id":"org_Xcv81ivTZXE31BmK","display_name":"Acme Inc. testaccdatasourceorganization","name":"test-testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 319.619291ms + duration: 283.261916ms - id: 6 request: proto: HTTP/1.1 @@ -236,7 +236,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK method: GET response: proto: HTTP/2.0 @@ -246,13 +246,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_G7ae32nR2nC37fCn","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"id":"org_Xcv81ivTZXE31BmK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.665208ms + duration: 314.231917ms - id: 7 request: proto: HTTP/1.1 @@ -265,14 +265,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_tVViUECL3AjNeNIf","assign_membership_on_login":false} + {"connection_id":"con_TgwVgIvmJWmge5ig","assign_membership_on_login":false} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn/enabled_connections + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/enabled_connections method: POST response: proto: HTTP/2.0 @@ -282,13 +282,13 @@ interactions: trailer: {} content_length: 197 uncompressed: false - body: '{"connection_id":"con_tVViUECL3AjNeNIf","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' + body: '{"connection_id":"con_TgwVgIvmJWmge5ig","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 313.4035ms + duration: 342.567458ms - id: 8 request: proto: HTTP/1.1 @@ -308,7 +308,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn/enabled_connections/con_tVViUECL3AjNeNIf + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/enabled_connections/con_TgwVgIvmJWmge5ig method: GET response: proto: HTTP/2.0 @@ -318,13 +318,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_tVViUECL3AjNeNIf","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' + body: '{"connection_id":"con_TgwVgIvmJWmge5ig","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 289.245792ms + duration: 308.325208ms - id: 9 request: proto: HTTP/1.1 @@ -337,14 +337,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|665450b6971dfa41d42ed17c"]} + {"members":["auth0|665489d0e539b35aea957717"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn/members + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members method: POST response: proto: HTTP/2.0 @@ -360,7 +360,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 325.799084ms + duration: 345.952375ms - id: 10 request: proto: HTTP/1.1 @@ -380,7 +380,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -390,13 +390,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450b6971dfa41d42ed17c","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|665489d0e539b35aea957717"}],"next":"MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 672.590583ms + duration: 339.251166ms - id: 11 request: proto: HTTP/1.1 @@ -416,7 +416,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/name/test-testaccdatasourceorganization + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&from=MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -424,15 +424,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_G7ae32nR2nC37fCn","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 276.115917ms + duration: 353.451708ms - id: 12 request: proto: HTTP/1.1 @@ -452,7 +452,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/name/test-testaccdatasourceorganization method: GET response: proto: HTTP/2.0 @@ -462,13 +462,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_tVViUECL3AjNeNIf","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"org_Xcv81ivTZXE31BmK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 320.106833ms + duration: 339.891125ms - id: 13 request: proto: HTTP/1.1 @@ -488,7 +488,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -498,13 +498,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450b6971dfa41d42ed17c","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_TgwVgIvmJWmge5ig","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.318208ms + duration: 339.775833ms - id: 14 request: proto: HTTP/1.1 @@ -524,7 +524,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/name/test-testaccdatasourceorganization + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -534,13 +534,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_G7ae32nR2nC37fCn","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"members":[{"user_id":"auth0|665489d0e539b35aea957717"}],"next":"MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.397292ms + duration: 351.529916ms - id: 15 request: proto: HTTP/1.1 @@ -560,7 +560,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&from=MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -568,15 +568,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_tVViUECL3AjNeNIf","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 331.000416ms + duration: 353.304792ms - id: 16 request: proto: HTTP/1.1 @@ -596,7 +596,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/name/test-testaccdatasourceorganization method: GET response: proto: HTTP/2.0 @@ -606,13 +606,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450b6971dfa41d42ed17c","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"id":"org_Xcv81ivTZXE31BmK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 333.02ms + duration: 789.038333ms - id: 17 request: proto: HTTP/1.1 @@ -632,7 +632,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665450b6971dfa41d42ed17c + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -642,13 +642,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:21:58.314Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665450b6971dfa41d42ed17c","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:21:58.314Z","user_id":"auth0|665450b6971dfa41d42ed17c","username":"testaccdatasourceorganization"}' + body: '{"enabled_connections":[{"connection_id":"con_TgwVgIvmJWmge5ig","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 321.725375ms + duration: 292.678208ms - id: 18 request: proto: HTTP/1.1 @@ -668,7 +668,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_tVViUECL3AjNeNIf + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -678,13 +678,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_tVViUECL3AjNeNIf","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' + body: '{"members":[{"user_id":"auth0|665489d0e539b35aea957717"}],"next":"MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.516ms + duration: 308.181541ms - id: 19 request: proto: HTTP/1.1 @@ -704,7 +704,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&from=MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -712,15 +712,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_G7ae32nR2nC37fCn","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.332166ms + duration: 318.710417ms - id: 20 request: proto: HTTP/1.1 @@ -740,7 +740,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn/enabled_connections/con_tVViUECL3AjNeNIf + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665489d0e539b35aea957717 method: GET response: proto: HTTP/2.0 @@ -750,13 +750,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_tVViUECL3AjNeNIf","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' + body: '{"created_at":"2024-05-27T13:25:36.528Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665489d0e539b35aea957717","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T13:25:36.528Z","user_id":"auth0|665489d0e539b35aea957717","username":"testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 339.128542ms + duration: 314.360792ms - id: 21 request: proto: HTTP/1.1 @@ -776,7 +776,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_TgwVgIvmJWmge5ig method: GET response: proto: HTTP/2.0 @@ -786,13 +786,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450b6971dfa41d42ed17c","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"id":"con_TgwVgIvmJWmge5ig","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 404.514583ms + duration: 311.299458ms - id: 22 request: proto: HTTP/1.1 @@ -812,7 +812,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/name/test-testaccdatasourceorganization + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK method: GET response: proto: HTTP/2.0 @@ -822,13 +822,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_G7ae32nR2nC37fCn","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"id":"org_Xcv81ivTZXE31BmK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.275167ms + duration: 307.317625ms - id: 23 request: proto: HTTP/1.1 @@ -848,7 +848,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/enabled_connections/con_TgwVgIvmJWmge5ig method: GET response: proto: HTTP/2.0 @@ -858,13 +858,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_tVViUECL3AjNeNIf","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"connection_id":"con_TgwVgIvmJWmge5ig","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.558625ms + duration: 300.841458ms - id: 24 request: proto: HTTP/1.1 @@ -884,7 +884,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -894,13 +894,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450b6971dfa41d42ed17c","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|665489d0e539b35aea957717"}],"next":"MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 322.27325ms + duration: 324.054458ms - id: 25 request: proto: HTTP/1.1 @@ -920,7 +920,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665450b6971dfa41d42ed17c + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&from=MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -928,15 +928,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T09:21:58.314Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665450b6971dfa41d42ed17c","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:21:58.314Z","user_id":"auth0|665450b6971dfa41d42ed17c","username":"testaccdatasourceorganization"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 322.552542ms + duration: 307.939042ms - id: 26 request: proto: HTTP/1.1 @@ -956,7 +956,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_tVViUECL3AjNeNIf + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/name/test-testaccdatasourceorganization method: GET response: proto: HTTP/2.0 @@ -966,13 +966,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_tVViUECL3AjNeNIf","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' + body: '{"id":"org_Xcv81ivTZXE31BmK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 368.153333ms + duration: 317.194917ms - id: 27 request: proto: HTTP/1.1 @@ -992,7 +992,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1002,13 +1002,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_G7ae32nR2nC37fCn","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"enabled_connections":[{"connection_id":"con_TgwVgIvmJWmge5ig","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.481166ms + duration: 310.694833ms - id: 28 request: proto: HTTP/1.1 @@ -1028,7 +1028,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn/enabled_connections/con_tVViUECL3AjNeNIf + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1038,13 +1038,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_tVViUECL3AjNeNIf","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' + body: '{"members":[{"user_id":"auth0|665489d0e539b35aea957717"}],"next":"MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 313.214625ms + duration: 298.824833ms - id: 29 request: proto: HTTP/1.1 @@ -1064,7 +1064,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&from=MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1072,15 +1072,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|665450b6971dfa41d42ed17c","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":100,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 384.696834ms + duration: 391.491958ms - id: 30 request: proto: HTTP/1.1 @@ -1100,7 +1100,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665489d0e539b35aea957717 method: GET response: proto: HTTP/2.0 @@ -1110,13 +1110,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_G7ae32nR2nC37fCn","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"created_at":"2024-05-27T13:25:36.528Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665489d0e539b35aea957717","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T13:25:36.528Z","user_id":"auth0|665489d0e539b35aea957717","username":"testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 427.437834ms + duration: 315.265292ms - id: 31 request: proto: HTTP/1.1 @@ -1136,7 +1136,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_TgwVgIvmJWmge5ig method: GET response: proto: HTTP/2.0 @@ -1146,13 +1146,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_tVViUECL3AjNeNIf","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"con_TgwVgIvmJWmge5ig","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 457.911ms + duration: 295.896208ms - id: 32 request: proto: HTTP/1.1 @@ -1172,7 +1172,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK method: GET response: proto: HTTP/2.0 @@ -1182,13 +1182,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450b6971dfa41d42ed17c","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"id":"org_Xcv81ivTZXE31BmK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 352.400875ms + duration: 299.762167ms - id: 33 request: proto: HTTP/1.1 @@ -1208,7 +1208,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/enabled_connections/con_TgwVgIvmJWmge5ig method: GET response: proto: HTTP/2.0 @@ -1218,13 +1218,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_G7ae32nR2nC37fCn","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"connection_id":"con_TgwVgIvmJWmge5ig","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 339.53825ms + duration: 314.345916ms - id: 34 request: proto: HTTP/1.1 @@ -1244,7 +1244,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1254,13 +1254,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_tVViUECL3AjNeNIf","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"members":[{"user_id":"auth0|665489d0e539b35aea957717"}],"next":"MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 350.189416ms + duration: 307.990791ms - id: 35 request: proto: HTTP/1.1 @@ -1280,7 +1280,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&from=MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1288,15 +1288,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|665450b6971dfa41d42ed17c","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":100,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 363.616042ms + duration: 384.668958ms - id: 36 request: proto: HTTP/1.1 @@ -1316,7 +1316,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665450b6971dfa41d42ed17c + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK method: GET response: proto: HTTP/2.0 @@ -1326,13 +1326,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:21:58.314Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665450b6971dfa41d42ed17c","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:21:58.314Z","user_id":"auth0|665450b6971dfa41d42ed17c","username":"testaccdatasourceorganization"}' + body: '{"id":"org_Xcv81ivTZXE31BmK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 313.149583ms + duration: 308.815084ms - id: 37 request: proto: HTTP/1.1 @@ -1352,7 +1352,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_tVViUECL3AjNeNIf + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1362,13 +1362,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_tVViUECL3AjNeNIf","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' + body: '{"enabled_connections":[{"connection_id":"con_TgwVgIvmJWmge5ig","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 332.190625ms + duration: 297.717375ms - id: 38 request: proto: HTTP/1.1 @@ -1388,7 +1388,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1398,13 +1398,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_G7ae32nR2nC37fCn","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"members":[{"user_id":"auth0|665489d0e539b35aea957717"}],"next":"MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 399.626ms + duration: 308.588667ms - id: 39 request: proto: HTTP/1.1 @@ -1424,7 +1424,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn/enabled_connections/con_tVViUECL3AjNeNIf + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&from=MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1432,15 +1432,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"connection_id":"con_tVViUECL3AjNeNIf","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.112333ms + duration: 470.711125ms - id: 40 request: proto: HTTP/1.1 @@ -1460,7 +1460,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK method: GET response: proto: HTTP/2.0 @@ -1470,13 +1470,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450b6971dfa41d42ed17c","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"id":"org_Xcv81ivTZXE31BmK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.929541ms + duration: 346.812541ms - id: 41 request: proto: HTTP/1.1 @@ -1496,7 +1496,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1506,13 +1506,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_G7ae32nR2nC37fCn","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + body: '{"enabled_connections":[{"connection_id":"con_TgwVgIvmJWmge5ig","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 297.184667ms + duration: 313.041417ms - id: 42 request: proto: HTTP/1.1 @@ -1532,7 +1532,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1542,13 +1542,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_tVViUECL3AjNeNIf","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"members":[{"user_id":"auth0|665489d0e539b35aea957717"}],"next":"MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.478959ms + duration: 315.022708ms - id: 43 request: proto: HTTP/1.1 @@ -1568,7 +1568,43 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&from=MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 393.362416ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665489d0e539b35aea957717 method: GET response: proto: HTTP/2.0 @@ -1578,14 +1614,338 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450b6971dfa41d42ed17c","email":"testaccdatasourceorganization@auth0.com","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccdatasourceorganization@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"created_at":"2024-05-27T13:25:36.528Z","email":"testaccdatasourceorganization@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665489d0e539b35aea957717","provider":"auth0","isSocial":false}],"name":"testaccdatasourceorganization@auth0.com","nickname":"testaccdatasourceorganization","picture":"https://s.gravatar.com/avatar/892f0bf2c3c9895065f505b28cba3106?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T13:25:36.528Z","user_id":"auth0|665489d0e539b35aea957717","username":"testaccdatasourceorganization"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.75125ms - - id: 44 + duration: 387.979ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_TgwVgIvmJWmge5ig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"con_TgwVgIvmJWmge5ig","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-testaccdatasourceorganization","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-testaccdatasourceorganization"]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 340.740875ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_Xcv81ivTZXE31BmK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 338.510625ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/enabled_connections/con_TgwVgIvmJWmge5ig + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"connection_id":"con_TgwVgIvmJWmge5ig","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 350.497791ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|665489d0e539b35aea957717"}],"next":"MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 856.483333ms + - id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&from=MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 285.259625ms + - id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_Xcv81ivTZXE31BmK","name":"test-testaccdatasourceorganization","display_name":"Acme Inc. testaccdatasourceorganization"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 468.058ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[{"connection_id":"con_TgwVgIvmJWmge5ig","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-testaccdatasourceorganization","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 318.744416ms + - id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|665489d0e539b35aea957717"}],"next":"MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 318.572709ms + - id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members?fields=user_id&from=MjAyNC0wNS0yNyAxMzoyNTozOS4yMDYwMDBVVEMsYXV0aDB8NjY1NDg5ZDBlNTM5YjM1YWVhOTU3NzE3&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 280.324084ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -1597,14 +1957,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|665450b6971dfa41d42ed17c"]} + {"members":["auth0|665489d0e539b35aea957717"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn/members + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/members method: DELETE response: proto: HTTP/2.0 @@ -1620,8 +1980,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 478.912542ms - - id: 45 + duration: 312.450959ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -1639,7 +1999,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn/enabled_connections/con_tVViUECL3AjNeNIf + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK/enabled_connections/con_TgwVgIvmJWmge5ig method: DELETE response: proto: HTTP/2.0 @@ -1655,8 +2015,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 306.067167ms - - id: 46 + duration: 299.316875ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -1674,7 +2034,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G7ae32nR2nC37fCn + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Xcv81ivTZXE31BmK method: DELETE response: proto: HTTP/2.0 @@ -1690,8 +2050,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 293.361416ms - - id: 47 + duration: 314.632334ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -1709,7 +2069,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_tVViUECL3AjNeNIf + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_TgwVgIvmJWmge5ig method: DELETE response: proto: HTTP/2.0 @@ -1719,14 +2079,14 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2024-05-27T09:22:17.123Z"}' + body: '{"deleted_at":"2024-05-27T13:25:59.248Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 327.604791ms - - id: 48 + duration: 330.285833ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -1744,7 +2104,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665450b6971dfa41d42ed17c + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665489d0e539b35aea957717 method: DELETE response: proto: HTTP/2.0 @@ -1760,4 +2120,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 409.726166ms + duration: 310.724833ms diff --git a/test/data/recordings/TestAccOrganizationConnection.yaml b/test/data/recordings/TestAccOrganizationConnection.yaml index 25775e020..4e2a6d28e 100644 --- a/test/data/recordings/TestAccOrganizationConnection.yaml +++ b/test/data/recordings/TestAccOrganizationConnection.yaml @@ -30,13 +30,13 @@ interactions: trailer: {} content_length: 572 uncompressed: false - body: '{"id":"con_SfpICEziRzZhAAas","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_7CeYAXCMcMbVWhoL","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 367.270417ms + duration: 331.261833ms - id: 1 request: proto: HTTP/1.1 @@ -56,7 +56,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7CeYAXCMcMbVWhoL method: GET response: proto: HTTP/2.0 @@ -66,13 +66,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_SfpICEziRzZhAAas","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_7CeYAXCMcMbVWhoL","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.59125ms + duration: 294.268291ms - id: 2 request: proto: HTTP/1.1 @@ -102,13 +102,13 @@ interactions: trailer: {} content_length: 572 uncompressed: false - body: '{"id":"con_QfOdEMtUFf87anya","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_xHRklPDDWW7M5CxR","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 314.587708ms + duration: 307.151708ms - id: 3 request: proto: HTTP/1.1 @@ -128,7 +128,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_QfOdEMtUFf87anya + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xHRklPDDWW7M5CxR method: GET response: proto: HTTP/2.0 @@ -138,13 +138,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_QfOdEMtUFf87anya","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_xHRklPDDWW7M5CxR","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.931959ms + duration: 288.324791ms - id: 4 request: proto: HTTP/1.1 @@ -174,13 +174,13 @@ interactions: trailer: {} content_length: 124 uncompressed: false - body: '{"id":"org_SICOIpoOJDK4VGL8","display_name":"testaccorganizationconnection","name":"some-org-testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","display_name":"testaccorganizationconnection","name":"some-org-testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 329.77925ms + duration: 314.855792ms - id: 5 request: proto: HTTP/1.1 @@ -200,7 +200,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -210,13 +210,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.029042ms + duration: 307.847917ms - id: 6 request: proto: HTTP/1.1 @@ -229,14 +229,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":false} + {"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":false} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections method: POST response: proto: HTTP/2.0 @@ -246,13 +246,13 @@ interactions: trailer: {} content_length: 199 uncompressed: false - body: '{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 307.64575ms + duration: 1.029897625s - id: 7 request: proto: HTTP/1.1 @@ -272,7 +272,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections/con_7CeYAXCMcMbVWhoL method: GET response: proto: HTTP/2.0 @@ -282,13 +282,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 318.49375ms + duration: 290.746083ms - id: 8 request: proto: HTTP/1.1 @@ -308,7 +308,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -318,13 +318,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 420.001334ms + duration: 285.510458ms - id: 9 request: proto: HTTP/1.1 @@ -344,7 +344,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -354,13 +354,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 321.230625ms + duration: 796.2915ms - id: 10 request: proto: HTTP/1.1 @@ -380,7 +380,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -396,7 +396,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.6005ms + duration: 332.996125ms - id: 11 request: proto: HTTP/1.1 @@ -416,7 +416,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -426,13 +426,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.689791ms + duration: 304.303542ms - id: 12 request: proto: HTTP/1.1 @@ -452,7 +452,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -462,13 +462,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.012792ms + duration: 304.820625ms - id: 13 request: proto: HTTP/1.1 @@ -488,7 +488,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -504,7 +504,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.821ms + duration: 277.409667ms - id: 14 request: proto: HTTP/1.1 @@ -524,7 +524,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7CeYAXCMcMbVWhoL method: GET response: proto: HTTP/2.0 @@ -534,13 +534,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_SfpICEziRzZhAAas","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_7CeYAXCMcMbVWhoL","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 312.118542ms + duration: 295.768375ms - id: 15 request: proto: HTTP/1.1 @@ -560,7 +560,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_QfOdEMtUFf87anya + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xHRklPDDWW7M5CxR method: GET response: proto: HTTP/2.0 @@ -570,13 +570,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_QfOdEMtUFf87anya","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_xHRklPDDWW7M5CxR","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.806291ms + duration: 325.031459ms - id: 16 request: proto: HTTP/1.1 @@ -596,7 +596,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -606,13 +606,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.919834ms + duration: 284.068959ms - id: 17 request: proto: HTTP/1.1 @@ -632,7 +632,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections/con_7CeYAXCMcMbVWhoL method: GET response: proto: HTTP/2.0 @@ -642,13 +642,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.553792ms + duration: 306.622084ms - id: 18 request: proto: HTTP/1.1 @@ -668,7 +668,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -678,13 +678,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.072667ms + duration: 296.624417ms - id: 19 request: proto: HTTP/1.1 @@ -704,7 +704,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -714,13 +714,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 405.01375ms + duration: 327.344834ms - id: 20 request: proto: HTTP/1.1 @@ -740,7 +740,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -756,7 +756,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 336.241125ms + duration: 302.9915ms - id: 21 request: proto: HTTP/1.1 @@ -776,7 +776,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7CeYAXCMcMbVWhoL method: GET response: proto: HTTP/2.0 @@ -786,13 +786,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_SfpICEziRzZhAAas","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_7CeYAXCMcMbVWhoL","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.040417ms + duration: 284.501208ms - id: 22 request: proto: HTTP/1.1 @@ -812,7 +812,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_QfOdEMtUFf87anya + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xHRklPDDWW7M5CxR method: GET response: proto: HTTP/2.0 @@ -822,13 +822,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_QfOdEMtUFf87anya","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_xHRklPDDWW7M5CxR","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.630291ms + duration: 319.1755ms - id: 23 request: proto: HTTP/1.1 @@ -848,7 +848,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -858,13 +858,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 405.161708ms + duration: 272.652291ms - id: 24 request: proto: HTTP/1.1 @@ -884,7 +884,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections/con_7CeYAXCMcMbVWhoL method: GET response: proto: HTTP/2.0 @@ -894,13 +894,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 330.400875ms + duration: 300.953417ms - id: 25 request: proto: HTTP/1.1 @@ -920,7 +920,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections/con_7CeYAXCMcMbVWhoL method: PATCH response: proto: HTTP/2.0 @@ -930,13 +930,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 327.068875ms + duration: 474.333ms - id: 26 request: proto: HTTP/1.1 @@ -956,7 +956,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections/con_7CeYAXCMcMbVWhoL method: GET response: proto: HTTP/2.0 @@ -966,13 +966,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 354.591625ms + duration: 351.918167ms - id: 27 request: proto: HTTP/1.1 @@ -992,7 +992,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -1002,13 +1002,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 340.994084ms + duration: 341.871ms - id: 28 request: proto: HTTP/1.1 @@ -1028,7 +1028,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1038,13 +1038,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 272.747166ms + duration: 337.176917ms - id: 29 request: proto: HTTP/1.1 @@ -1064,7 +1064,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1080,7 +1080,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 332.250708ms + duration: 352.819583ms - id: 30 request: proto: HTTP/1.1 @@ -1100,7 +1100,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -1110,13 +1110,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.785208ms + duration: 350.518708ms - id: 31 request: proto: HTTP/1.1 @@ -1136,7 +1136,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1146,13 +1146,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 370.234791ms + duration: 315.0745ms - id: 32 request: proto: HTTP/1.1 @@ -1172,7 +1172,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1188,7 +1188,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.427583ms + duration: 291.85775ms - id: 33 request: proto: HTTP/1.1 @@ -1208,7 +1208,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7CeYAXCMcMbVWhoL method: GET response: proto: HTTP/2.0 @@ -1218,13 +1218,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_SfpICEziRzZhAAas","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_7CeYAXCMcMbVWhoL","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 289.936042ms + duration: 294.85675ms - id: 34 request: proto: HTTP/1.1 @@ -1244,7 +1244,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_QfOdEMtUFf87anya + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xHRklPDDWW7M5CxR method: GET response: proto: HTTP/2.0 @@ -1254,13 +1254,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_QfOdEMtUFf87anya","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_xHRklPDDWW7M5CxR","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 319.258958ms + duration: 291.063916ms - id: 35 request: proto: HTTP/1.1 @@ -1280,7 +1280,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -1290,13 +1290,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.523ms + duration: 276.458584ms - id: 36 request: proto: HTTP/1.1 @@ -1316,7 +1316,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections/con_7CeYAXCMcMbVWhoL method: GET response: proto: HTTP/2.0 @@ -1326,13 +1326,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 352.3975ms + duration: 297.333042ms - id: 37 request: proto: HTTP/1.1 @@ -1352,7 +1352,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -1362,13 +1362,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 327.263334ms + duration: 278.988458ms - id: 38 request: proto: HTTP/1.1 @@ -1388,7 +1388,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1398,13 +1398,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 400.174041ms + duration: 354.673667ms - id: 39 request: proto: HTTP/1.1 @@ -1424,7 +1424,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1440,7 +1440,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.933208ms + duration: 352.3145ms - id: 40 request: proto: HTTP/1.1 @@ -1460,7 +1460,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7CeYAXCMcMbVWhoL method: GET response: proto: HTTP/2.0 @@ -1470,13 +1470,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_SfpICEziRzZhAAas","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_7CeYAXCMcMbVWhoL","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 346.404541ms + duration: 293.619125ms - id: 41 request: proto: HTTP/1.1 @@ -1496,7 +1496,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_QfOdEMtUFf87anya + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xHRklPDDWW7M5CxR method: GET response: proto: HTTP/2.0 @@ -1506,13 +1506,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_QfOdEMtUFf87anya","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_xHRklPDDWW7M5CxR","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.693917ms + duration: 283.189083ms - id: 42 request: proto: HTTP/1.1 @@ -1532,7 +1532,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -1542,13 +1542,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.79125ms + duration: 301.400042ms - id: 43 request: proto: HTTP/1.1 @@ -1568,7 +1568,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections/con_7CeYAXCMcMbVWhoL method: GET response: proto: HTTP/2.0 @@ -1578,13 +1578,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.737375ms + duration: 300.847084ms - id: 44 request: proto: HTTP/1.1 @@ -1597,14 +1597,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_QfOdEMtUFf87anya","assign_membership_on_login":true} + {"connection_id":"con_xHRklPDDWW7M5CxR","assign_membership_on_login":true} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections method: POST response: proto: HTTP/2.0 @@ -1614,13 +1614,13 @@ interactions: trailer: {} content_length: 198 uncompressed: false - body: '{"connection_id":"con_QfOdEMtUFf87anya","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_xHRklPDDWW7M5CxR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 311.22125ms + duration: 298.961334ms - id: 45 request: proto: HTTP/1.1 @@ -1640,7 +1640,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections/con_QfOdEMtUFf87anya + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections/con_xHRklPDDWW7M5CxR method: GET response: proto: HTTP/2.0 @@ -1650,13 +1650,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_QfOdEMtUFf87anya","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_xHRklPDDWW7M5CxR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.489833ms + duration: 273.050791ms - id: 46 request: proto: HTTP/1.1 @@ -1676,7 +1676,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -1686,13 +1686,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.621333ms + duration: 282.309166ms - id: 47 request: proto: HTTP/1.1 @@ -1712,7 +1712,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1722,13 +1722,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_QfOdEMtUFf87anya","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xHRklPDDWW7M5CxR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 318.062167ms + duration: 317.645375ms - id: 48 request: proto: HTTP/1.1 @@ -1748,7 +1748,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1764,7 +1764,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.598125ms + duration: 284.846125ms - id: 49 request: proto: HTTP/1.1 @@ -1784,7 +1784,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -1794,13 +1794,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.13275ms + duration: 275.473875ms - id: 50 request: proto: HTTP/1.1 @@ -1820,7 +1820,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1830,13 +1830,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_QfOdEMtUFf87anya","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xHRklPDDWW7M5CxR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 467.71825ms + duration: 291.107708ms - id: 51 request: proto: HTTP/1.1 @@ -1856,7 +1856,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1872,7 +1872,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.848542ms + duration: 309.41575ms - id: 52 request: proto: HTTP/1.1 @@ -1892,7 +1892,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7CeYAXCMcMbVWhoL method: GET response: proto: HTTP/2.0 @@ -1902,13 +1902,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_SfpICEziRzZhAAas","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_7CeYAXCMcMbVWhoL","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.999125ms + duration: 283.056625ms - id: 53 request: proto: HTTP/1.1 @@ -1928,7 +1928,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_QfOdEMtUFf87anya + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xHRklPDDWW7M5CxR method: GET response: proto: HTTP/2.0 @@ -1938,13 +1938,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_QfOdEMtUFf87anya","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_xHRklPDDWW7M5CxR","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 275.960958ms + duration: 298.123416ms - id: 54 request: proto: HTTP/1.1 @@ -1964,7 +1964,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -1974,13 +1974,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 330.724458ms + duration: 276.10975ms - id: 55 request: proto: HTTP/1.1 @@ -2000,7 +2000,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections/con_7CeYAXCMcMbVWhoL method: GET response: proto: HTTP/2.0 @@ -2010,13 +2010,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 396.418334ms + duration: 275.927833ms - id: 56 request: proto: HTTP/1.1 @@ -2036,7 +2036,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections/con_QfOdEMtUFf87anya + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections/con_xHRklPDDWW7M5CxR method: GET response: proto: HTTP/2.0 @@ -2046,13 +2046,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_QfOdEMtUFf87anya","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_xHRklPDDWW7M5CxR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.00025ms + duration: 277.412333ms - id: 57 request: proto: HTTP/1.1 @@ -2072,7 +2072,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -2082,13 +2082,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 464.543042ms + duration: 275.414875ms - id: 58 request: proto: HTTP/1.1 @@ -2108,7 +2108,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2118,13 +2118,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_QfOdEMtUFf87anya","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xHRklPDDWW7M5CxR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 355.076625ms + duration: 296.609333ms - id: 59 request: proto: HTTP/1.1 @@ -2144,7 +2144,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2160,7 +2160,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.440666ms + duration: 295.867083ms - id: 60 request: proto: HTTP/1.1 @@ -2180,7 +2180,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7CeYAXCMcMbVWhoL method: GET response: proto: HTTP/2.0 @@ -2190,13 +2190,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_SfpICEziRzZhAAas","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_7CeYAXCMcMbVWhoL","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 352.789417ms + duration: 290.937166ms - id: 61 request: proto: HTTP/1.1 @@ -2216,7 +2216,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections/con_xHRklPDDWW7M5CxR method: GET response: proto: HTTP/2.0 @@ -2226,13 +2226,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_xHRklPDDWW7M5CxR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 352.8005ms + duration: 293.205875ms - id: 62 request: proto: HTTP/1.1 @@ -2252,7 +2252,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections/con_QfOdEMtUFf87anya + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections/con_7CeYAXCMcMbVWhoL method: GET response: proto: HTTP/2.0 @@ -2262,13 +2262,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_QfOdEMtUFf87anya","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 352.854417ms + duration: 379.183958ms - id: 63 request: proto: HTTP/1.1 @@ -2288,7 +2288,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_QfOdEMtUFf87anya + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xHRklPDDWW7M5CxR method: GET response: proto: HTTP/2.0 @@ -2298,13 +2298,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_QfOdEMtUFf87anya","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_xHRklPDDWW7M5CxR","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 342.060791ms + duration: 453.051375ms - id: 64 request: proto: HTTP/1.1 @@ -2324,7 +2324,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -2334,13 +2334,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 273.5095ms + duration: 337.743625ms - id: 65 request: proto: HTTP/1.1 @@ -2360,7 +2360,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -2370,13 +2370,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 439.093875ms + duration: 346.066667ms - id: 66 request: proto: HTTP/1.1 @@ -2396,7 +2396,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2406,13 +2406,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_QfOdEMtUFf87anya","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xHRklPDDWW7M5CxR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.513916ms + duration: 338.983458ms - id: 67 request: proto: HTTP/1.1 @@ -2432,7 +2432,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2448,7 +2448,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.339125ms + duration: 353.34575ms - id: 68 request: proto: HTTP/1.1 @@ -2467,7 +2467,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections/con_QfOdEMtUFf87anya + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections/con_xHRklPDDWW7M5CxR method: DELETE response: proto: HTTP/2.0 @@ -2483,7 +2483,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 295.60625ms + duration: 425.111166ms - id: 69 request: proto: HTTP/1.1 @@ -2502,7 +2502,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections/con_7CeYAXCMcMbVWhoL method: DELETE response: proto: HTTP/2.0 @@ -2518,7 +2518,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 280.275459ms + duration: 300.3515ms - id: 70 request: proto: HTTP/1.1 @@ -2538,7 +2538,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -2548,13 +2548,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.283208ms + duration: 284.090458ms - id: 71 request: proto: HTTP/1.1 @@ -2574,7 +2574,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2590,7 +2590,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.853042ms + duration: 284.529041ms - id: 72 request: proto: HTTP/1.1 @@ -2610,7 +2610,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2626,7 +2626,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 312.07275ms + duration: 281.0445ms - id: 73 request: proto: HTTP/1.1 @@ -2646,7 +2646,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7CeYAXCMcMbVWhoL method: GET response: proto: HTTP/2.0 @@ -2656,13 +2656,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_SfpICEziRzZhAAas","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_7CeYAXCMcMbVWhoL","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 275.434292ms + duration: 284.286375ms - id: 74 request: proto: HTTP/1.1 @@ -2682,7 +2682,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_QfOdEMtUFf87anya + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xHRklPDDWW7M5CxR method: GET response: proto: HTTP/2.0 @@ -2692,13 +2692,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_QfOdEMtUFf87anya","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_xHRklPDDWW7M5CxR","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.501125ms + duration: 297.849583ms - id: 75 request: proto: HTTP/1.1 @@ -2718,7 +2718,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -2728,13 +2728,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 276.436584ms + duration: 322.898417ms - id: 76 request: proto: HTTP/1.1 @@ -2754,7 +2754,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -2764,13 +2764,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.860166ms + duration: 277.914375ms - id: 77 request: proto: HTTP/1.1 @@ -2790,7 +2790,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2806,7 +2806,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.951458ms + duration: 298.592542ms - id: 78 request: proto: HTTP/1.1 @@ -2826,7 +2826,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2842,7 +2842,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.859792ms + duration: 299.320417ms - id: 79 request: proto: HTTP/1.1 @@ -2862,7 +2862,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7CeYAXCMcMbVWhoL method: GET response: proto: HTTP/2.0 @@ -2872,13 +2872,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_SfpICEziRzZhAAas","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_7CeYAXCMcMbVWhoL","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.02175ms + duration: 289.844292ms - id: 80 request: proto: HTTP/1.1 @@ -2898,7 +2898,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_QfOdEMtUFf87anya + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xHRklPDDWW7M5CxR method: GET response: proto: HTTP/2.0 @@ -2908,13 +2908,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_QfOdEMtUFf87anya","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_xHRklPDDWW7M5CxR","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.695625ms + duration: 311.383833ms - id: 81 request: proto: HTTP/1.1 @@ -2934,7 +2934,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -2944,13 +2944,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.125208ms + duration: 268.464583ms - id: 82 request: proto: HTTP/1.1 @@ -2970,7 +2970,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -2980,13 +2980,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.291375ms + duration: 302.040209ms - id: 83 request: proto: HTTP/1.1 @@ -3006,7 +3006,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3022,7 +3022,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.897166ms + duration: 307.691417ms - id: 84 request: proto: HTTP/1.1 @@ -3042,7 +3042,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3058,7 +3058,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.34325ms + duration: 298.816583ms - id: 85 request: proto: HTTP/1.1 @@ -3078,7 +3078,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7CeYAXCMcMbVWhoL method: GET response: proto: HTTP/2.0 @@ -3088,13 +3088,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_SfpICEziRzZhAAas","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_7CeYAXCMcMbVWhoL","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 340.650083ms + duration: 342.969541ms - id: 86 request: proto: HTTP/1.1 @@ -3114,7 +3114,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_QfOdEMtUFf87anya + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xHRklPDDWW7M5CxR method: GET response: proto: HTTP/2.0 @@ -3124,13 +3124,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_QfOdEMtUFf87anya","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_xHRklPDDWW7M5CxR","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 289.607ms + duration: 337.188125ms - id: 87 request: proto: HTTP/1.1 @@ -3150,7 +3150,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -3160,13 +3160,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.74725ms + duration: 392.095292ms - id: 88 request: proto: HTTP/1.1 @@ -3186,7 +3186,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -3196,13 +3196,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.6835ms + duration: 301.598541ms - id: 89 request: proto: HTTP/1.1 @@ -3222,7 +3222,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3238,7 +3238,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.558917ms + duration: 354.817208ms - id: 90 request: proto: HTTP/1.1 @@ -3258,7 +3258,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3274,7 +3274,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.50025ms + duration: 283.598625ms - id: 91 request: proto: HTTP/1.1 @@ -3294,7 +3294,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7CeYAXCMcMbVWhoL method: GET response: proto: HTTP/2.0 @@ -3304,13 +3304,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_SfpICEziRzZhAAas","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_7CeYAXCMcMbVWhoL","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 276.713917ms + duration: 279.304459ms - id: 92 request: proto: HTTP/1.1 @@ -3330,7 +3330,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_QfOdEMtUFf87anya + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xHRklPDDWW7M5CxR method: GET response: proto: HTTP/2.0 @@ -3340,13 +3340,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_QfOdEMtUFf87anya","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_xHRklPDDWW7M5CxR","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.866ms + duration: 306.381375ms - id: 93 request: proto: HTTP/1.1 @@ -3366,7 +3366,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -3376,13 +3376,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.655458ms + duration: 322.53275ms - id: 94 request: proto: HTTP/1.1 @@ -3402,7 +3402,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3418,7 +3418,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 348.220084ms + duration: 338.260458ms - id: 95 request: proto: HTTP/1.1 @@ -3431,14 +3431,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_QfOdEMtUFf87anya","assign_membership_on_login":true} + {"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections method: POST response: proto: HTTP/2.0 @@ -3448,13 +3448,13 @@ interactions: trailer: {} content_length: 198 uncompressed: false - body: '{"connection_id":"con_QfOdEMtUFf87anya","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 352.968958ms + duration: 317.783542ms - id: 96 request: proto: HTTP/1.1 @@ -3467,14 +3467,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true} + {"connection_id":"con_xHRklPDDWW7M5CxR","assign_membership_on_login":true} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections method: POST response: proto: HTTP/2.0 @@ -3484,13 +3484,13 @@ interactions: trailer: {} content_length: 198 uncompressed: false - body: '{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_xHRklPDDWW7M5CxR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 340.48025ms + duration: 312.785084ms - id: 97 request: proto: HTTP/1.1 @@ -3510,7 +3510,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3520,13 +3520,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_QfOdEMtUFf87anya","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xHRklPDDWW7M5CxR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 355.693083ms + duration: 358.607542ms - id: 98 request: proto: HTTP/1.1 @@ -3546,7 +3546,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7CeYAXCMcMbVWhoL method: GET response: proto: HTTP/2.0 @@ -3556,13 +3556,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_SfpICEziRzZhAAas","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_7CeYAXCMcMbVWhoL","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.607916ms + duration: 353.130542ms - id: 99 request: proto: HTTP/1.1 @@ -3582,7 +3582,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_QfOdEMtUFf87anya + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xHRklPDDWW7M5CxR method: GET response: proto: HTTP/2.0 @@ -3592,13 +3592,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_QfOdEMtUFf87anya","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_xHRklPDDWW7M5CxR","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 426.381ms + duration: 319.678ms - id: 100 request: proto: HTTP/1.1 @@ -3618,7 +3618,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -3628,13 +3628,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.054583ms + duration: 337.212125ms - id: 101 request: proto: HTTP/1.1 @@ -3654,7 +3654,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3664,13 +3664,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_QfOdEMtUFf87anya","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xHRklPDDWW7M5CxR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 316.7235ms + duration: 347.189334ms - id: 102 request: proto: HTTP/1.1 @@ -3690,7 +3690,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections/con_7CeYAXCMcMbVWhoL method: GET response: proto: HTTP/2.0 @@ -3700,13 +3700,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.032667ms + duration: 285.727166ms - id: 103 request: proto: HTTP/1.1 @@ -3726,7 +3726,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -3736,13 +3736,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.74925ms + duration: 307.410958ms - id: 104 request: proto: HTTP/1.1 @@ -3762,7 +3762,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3772,13 +3772,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_QfOdEMtUFf87anya","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xHRklPDDWW7M5CxR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.490042ms + duration: 318.764292ms - id: 105 request: proto: HTTP/1.1 @@ -3798,7 +3798,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3814,7 +3814,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.949917ms + duration: 285.356833ms - id: 106 request: proto: HTTP/1.1 @@ -3834,7 +3834,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections/con_QfOdEMtUFf87anya + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections/con_xHRklPDDWW7M5CxR method: GET response: proto: HTTP/2.0 @@ -3844,13 +3844,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_QfOdEMtUFf87anya","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_xHRklPDDWW7M5CxR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.903375ms + duration: 324.74025ms - id: 107 request: proto: HTTP/1.1 @@ -3870,7 +3870,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -3880,13 +3880,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.176459ms + duration: 277.876042ms - id: 108 request: proto: HTTP/1.1 @@ -3906,7 +3906,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3916,13 +3916,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_QfOdEMtUFf87anya","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xHRklPDDWW7M5CxR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.541459ms + duration: 287.007791ms - id: 109 request: proto: HTTP/1.1 @@ -3942,7 +3942,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3958,7 +3958,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.998917ms + duration: 282.488ms - id: 110 request: proto: HTTP/1.1 @@ -3978,7 +3978,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7CeYAXCMcMbVWhoL method: GET response: proto: HTTP/2.0 @@ -3988,13 +3988,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_SfpICEziRzZhAAas","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_7CeYAXCMcMbVWhoL","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 319.116083ms + duration: 286.536875ms - id: 111 request: proto: HTTP/1.1 @@ -4014,7 +4014,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_QfOdEMtUFf87anya + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xHRklPDDWW7M5CxR method: GET response: proto: HTTP/2.0 @@ -4024,13 +4024,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_QfOdEMtUFf87anya","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_xHRklPDDWW7M5CxR","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.172583ms + duration: 285.189292ms - id: 112 request: proto: HTTP/1.1 @@ -4050,7 +4050,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -4060,13 +4060,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.869834ms + duration: 277.619291ms - id: 113 request: proto: HTTP/1.1 @@ -4086,7 +4086,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4096,13 +4096,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_QfOdEMtUFf87anya","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xHRklPDDWW7M5CxR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.153458ms + duration: 285.9335ms - id: 114 request: proto: HTTP/1.1 @@ -4122,7 +4122,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections/con_7CeYAXCMcMbVWhoL method: GET response: proto: HTTP/2.0 @@ -4132,13 +4132,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.243542ms + duration: 284.979208ms - id: 115 request: proto: HTTP/1.1 @@ -4158,7 +4158,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections/con_QfOdEMtUFf87anya + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections/con_xHRklPDDWW7M5CxR method: GET response: proto: HTTP/2.0 @@ -4168,13 +4168,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_QfOdEMtUFf87anya","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_xHRklPDDWW7M5CxR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.643458ms + duration: 274.349542ms - id: 116 request: proto: HTTP/1.1 @@ -4194,7 +4194,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -4204,13 +4204,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.67675ms + duration: 278.504625ms - id: 117 request: proto: HTTP/1.1 @@ -4230,7 +4230,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4240,13 +4240,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_QfOdEMtUFf87anya","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xHRklPDDWW7M5CxR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.2865ms + duration: 299.80675ms - id: 118 request: proto: HTTP/1.1 @@ -4266,7 +4266,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4282,7 +4282,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 331.503166ms + duration: 305.409792ms - id: 119 request: proto: HTTP/1.1 @@ -4302,7 +4302,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -4312,13 +4312,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.781625ms + duration: 283.070333ms - id: 120 request: proto: HTTP/1.1 @@ -4338,7 +4338,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4348,13 +4348,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_QfOdEMtUFf87anya","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xHRklPDDWW7M5CxR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 317.74525ms + duration: 406.236458ms - id: 121 request: proto: HTTP/1.1 @@ -4374,7 +4374,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4390,7 +4390,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 323.03775ms + duration: 292.750542ms - id: 122 request: proto: HTTP/1.1 @@ -4410,7 +4410,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7CeYAXCMcMbVWhoL method: GET response: proto: HTTP/2.0 @@ -4420,13 +4420,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_SfpICEziRzZhAAas","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' + body: '{"id":"con_7CeYAXCMcMbVWhoL","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 289.4655ms + duration: 318.106958ms - id: 123 request: proto: HTTP/1.1 @@ -4446,7 +4446,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_QfOdEMtUFf87anya + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xHRklPDDWW7M5CxR method: GET response: proto: HTTP/2.0 @@ -4456,13 +4456,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_QfOdEMtUFf87anya","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' + body: '{"id":"con_xHRklPDDWW7M5CxR","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnection","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnection"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.947167ms + duration: 319.416583ms - id: 124 request: proto: HTTP/1.1 @@ -4482,7 +4482,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -4492,13 +4492,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 297.526166ms + duration: 284.088125ms - id: 125 request: proto: HTTP/1.1 @@ -4518,7 +4518,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4528,13 +4528,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_QfOdEMtUFf87anya","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xHRklPDDWW7M5CxR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 335.024167ms + duration: 282.808042ms - id: 126 request: proto: HTTP/1.1 @@ -4554,7 +4554,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections/con_7CeYAXCMcMbVWhoL method: GET response: proto: HTTP/2.0 @@ -4564,13 +4564,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.106375ms + duration: 307.985166ms - id: 127 request: proto: HTTP/1.1 @@ -4590,7 +4590,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections/con_QfOdEMtUFf87anya + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections/con_xHRklPDDWW7M5CxR method: GET response: proto: HTTP/2.0 @@ -4600,13 +4600,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_QfOdEMtUFf87anya","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' + body: '{"connection_id":"con_xHRklPDDWW7M5CxR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.815292ms + duration: 298.952167ms - id: 128 request: proto: HTTP/1.1 @@ -4626,7 +4626,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: GET response: proto: HTTP/2.0 @@ -4636,13 +4636,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_SICOIpoOJDK4VGL8","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' + body: '{"id":"org_cmZ6bHgjb4zOnrO4","name":"some-org-testaccorganizationconnection","display_name":"testaccorganizationconnection"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.869791ms + duration: 278.856125ms - id: 129 request: proto: HTTP/1.1 @@ -4662,7 +4662,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4672,13 +4672,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_QfOdEMtUFf87anya","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_SfpICEziRzZhAAas","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_7CeYAXCMcMbVWhoL","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnection","strategy":"auth0"}},{"connection_id":"con_xHRklPDDWW7M5CxR","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnection","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.056583ms + duration: 285.922666ms - id: 130 request: proto: HTTP/1.1 @@ -4698,7 +4698,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4714,7 +4714,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 347.730166ms + duration: 283.14375ms - id: 131 request: proto: HTTP/1.1 @@ -4733,7 +4733,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections/con_QfOdEMtUFf87anya + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections/con_xHRklPDDWW7M5CxR method: DELETE response: proto: HTTP/2.0 @@ -4749,7 +4749,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 350.730709ms + duration: 288.902959ms - id: 132 request: proto: HTTP/1.1 @@ -4768,7 +4768,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections/con_7CeYAXCMcMbVWhoL method: DELETE response: proto: HTTP/2.0 @@ -4784,7 +4784,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 326.776917ms + duration: 298.56425ms - id: 133 request: proto: HTTP/1.1 @@ -4803,7 +4803,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections/con_QfOdEMtUFf87anya + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections/con_7CeYAXCMcMbVWhoL method: DELETE response: proto: HTTP/2.0 @@ -4819,7 +4819,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 349.966ms + duration: 377.920334ms - id: 134 request: proto: HTTP/1.1 @@ -4838,7 +4838,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8/enabled_connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4/enabled_connections/con_xHRklPDDWW7M5CxR method: DELETE response: proto: HTTP/2.0 @@ -4854,7 +4854,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 351.771916ms + duration: 356.729958ms - id: 135 request: proto: HTTP/1.1 @@ -4873,7 +4873,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_SICOIpoOJDK4VGL8 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cmZ6bHgjb4zOnrO4 method: DELETE response: proto: HTTP/2.0 @@ -4889,7 +4889,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 418.5445ms + duration: 308.953542ms - id: 136 request: proto: HTTP/1.1 @@ -4908,7 +4908,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_QfOdEMtUFf87anya + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_xHRklPDDWW7M5CxR method: DELETE response: proto: HTTP/2.0 @@ -4918,13 +4918,13 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2024-05-27T09:23:25.127Z"}' + body: '{"deleted_at":"2024-05-27T13:27:07.220Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 303.207125ms + duration: 303.316334ms - id: 137 request: proto: HTTP/1.1 @@ -4943,7 +4943,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_SfpICEziRzZhAAas + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7CeYAXCMcMbVWhoL method: DELETE response: proto: HTTP/2.0 @@ -4953,10 +4953,10 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2024-05-27T09:23:25.460Z"}' + body: '{"deleted_at":"2024-05-27T13:27:07.545Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 308.981375ms + duration: 343.589292ms diff --git a/test/data/recordings/TestAccOrganizationConnections.yaml b/test/data/recordings/TestAccOrganizationConnections.yaml index 9e63ebfe5..308c084f6 100644 --- a/test/data/recordings/TestAccOrganizationConnections.yaml +++ b/test/data/recordings/TestAccOrganizationConnections.yaml @@ -30,13 +30,13 @@ interactions: trailer: {} content_length: 574 uncompressed: false - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 356.291458ms + duration: 313.476ms - id: 1 request: proto: HTTP/1.1 @@ -56,7 +56,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -66,13 +66,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.695792ms + duration: 283.887416ms - id: 2 request: proto: HTTP/1.1 @@ -102,13 +102,13 @@ interactions: trailer: {} content_length: 574 uncompressed: false - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","strategy_version":2,"authentication_methods":{"password":{"enabled":true},"passkey":{"enabled":false}},"passkey_options":{"challenge_ui":"both","progressive_enrollment_enabled":true,"local_enrollment_enabled":true},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 392.842208ms + duration: 348.185458ms - id: 3 request: proto: HTTP/1.1 @@ -128,7 +128,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -138,13 +138,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 327.767458ms + duration: 296.769875ms - id: 4 request: proto: HTTP/1.1 @@ -174,13 +174,13 @@ interactions: trailer: {} content_length: 126 uncompressed: false - body: '{"id":"org_XVyR90qVyBOqnnWH","display_name":"testaccorganizationconnections","name":"some-org-testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","display_name":"testaccorganizationconnections","name":"some-org-testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 320.372542ms + duration: 296.002875ms - id: 5 request: proto: HTTP/1.1 @@ -200,7 +200,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -210,13 +210,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.806375ms + duration: 283.19425ms - id: 6 request: proto: HTTP/1.1 @@ -229,14 +229,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false} + {"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections method: POST response: proto: HTTP/2.0 @@ -246,13 +246,13 @@ interactions: trailer: {} content_length: 200 uncompressed: false - body: '{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 325.316375ms + duration: 316.087958ms - id: 7 request: proto: HTTP/1.1 @@ -272,7 +272,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -282,13 +282,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 289.91425ms + duration: 306.909708ms - id: 8 request: proto: HTTP/1.1 @@ -308,7 +308,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -318,13 +318,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 338.967ms + duration: 292.554333ms - id: 9 request: proto: HTTP/1.1 @@ -344,7 +344,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -354,13 +354,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 274.1235ms + duration: 280.779917ms - id: 10 request: proto: HTTP/1.1 @@ -380,7 +380,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -390,13 +390,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 520.310584ms + duration: 287.3815ms - id: 11 request: proto: HTTP/1.1 @@ -416,7 +416,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -426,13 +426,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 276.313041ms + duration: 284.352625ms - id: 12 request: proto: HTTP/1.1 @@ -452,7 +452,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -462,13 +462,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 275.566ms + duration: 277.15925ms - id: 13 request: proto: HTTP/1.1 @@ -488,7 +488,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -498,13 +498,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.972167ms + duration: 285.409125ms - id: 14 request: proto: HTTP/1.1 @@ -524,7 +524,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -534,13 +534,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.412916ms + duration: 289.593833ms - id: 15 request: proto: HTTP/1.1 @@ -560,7 +560,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -576,7 +576,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.726834ms + duration: 277.194083ms - id: 16 request: proto: HTTP/1.1 @@ -595,7 +595,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections/con_FqDbLCj1yF5ZD0Wd method: DELETE response: proto: HTTP/2.0 @@ -611,7 +611,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 278.513125ms + duration: 279.769584ms - id: 17 request: proto: HTTP/1.1 @@ -631,7 +631,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -641,13 +641,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 819.448958ms + duration: 278.379542ms - id: 18 request: proto: HTTP/1.1 @@ -667,7 +667,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -683,7 +683,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 322.911167ms + duration: 278.042375ms - id: 19 request: proto: HTTP/1.1 @@ -703,7 +703,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -719,7 +719,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.916625ms + duration: 298.841375ms - id: 20 request: proto: HTTP/1.1 @@ -739,7 +739,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -749,13 +749,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.476ms + duration: 289.5375ms - id: 21 request: proto: HTTP/1.1 @@ -775,7 +775,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -785,13 +785,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 422.035042ms + duration: 283.37ms - id: 22 request: proto: HTTP/1.1 @@ -811,7 +811,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -821,13 +821,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 320.492417ms + duration: 305.451417ms - id: 23 request: proto: HTTP/1.1 @@ -847,7 +847,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -857,13 +857,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 338.629375ms + duration: 270.907ms - id: 24 request: proto: HTTP/1.1 @@ -883,7 +883,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -899,7 +899,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 352.622416ms + duration: 282.652583ms - id: 25 request: proto: HTTP/1.1 @@ -919,7 +919,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -935,7 +935,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 327.298708ms + duration: 285.199917ms - id: 26 request: proto: HTTP/1.1 @@ -955,7 +955,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -965,13 +965,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 424.084625ms + duration: 278.060541ms - id: 27 request: proto: HTTP/1.1 @@ -991,7 +991,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -1001,13 +1001,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 344.771666ms + duration: 296.126291ms - id: 28 request: proto: HTTP/1.1 @@ -1027,7 +1027,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -1037,13 +1037,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 275.673792ms + duration: 282.199ms - id: 29 request: proto: HTTP/1.1 @@ -1063,7 +1063,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1079,7 +1079,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.109042ms + duration: 474.313208ms - id: 30 request: proto: HTTP/1.1 @@ -1092,14 +1092,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_HgxKJOrr5NTL7sNU"} + {"connection_id":"con_FqDbLCj1yF5ZD0Wd"} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections method: POST response: proto: HTTP/2.0 @@ -1109,13 +1109,13 @@ interactions: trailer: {} content_length: 200 uncompressed: false - body: '{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 304.992416ms + duration: 351.880542ms - id: 31 request: proto: HTTP/1.1 @@ -1135,7 +1135,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1145,13 +1145,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.332542ms + duration: 352.214458ms - id: 32 request: proto: HTTP/1.1 @@ -1171,7 +1171,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -1181,13 +1181,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 272.301875ms + duration: 1.037092667s - id: 33 request: proto: HTTP/1.1 @@ -1207,7 +1207,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1217,13 +1217,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 330.611541ms + duration: 423.527333ms - id: 34 request: proto: HTTP/1.1 @@ -1243,7 +1243,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1259,7 +1259,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.757958ms + duration: 312.498125ms - id: 35 request: proto: HTTP/1.1 @@ -1279,7 +1279,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -1289,13 +1289,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.3855ms + duration: 305.426083ms - id: 36 request: proto: HTTP/1.1 @@ -1315,7 +1315,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1325,13 +1325,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 429.286ms + duration: 282.9095ms - id: 37 request: proto: HTTP/1.1 @@ -1351,7 +1351,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1367,7 +1367,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 399.106667ms + duration: 326.034041ms - id: 38 request: proto: HTTP/1.1 @@ -1387,7 +1387,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -1397,13 +1397,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.098166ms + duration: 284.047584ms - id: 39 request: proto: HTTP/1.1 @@ -1423,7 +1423,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -1433,13 +1433,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.682333ms + duration: 285.691541ms - id: 40 request: proto: HTTP/1.1 @@ -1459,7 +1459,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -1469,13 +1469,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 273.286292ms + duration: 358.181167ms - id: 41 request: proto: HTTP/1.1 @@ -1495,7 +1495,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1505,13 +1505,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.879416ms + duration: 347.103667ms - id: 42 request: proto: HTTP/1.1 @@ -1531,7 +1531,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -1541,13 +1541,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.609042ms + duration: 275.896167ms - id: 43 request: proto: HTTP/1.1 @@ -1567,7 +1567,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1577,13 +1577,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.423709ms + duration: 280.934792ms - id: 44 request: proto: HTTP/1.1 @@ -1603,7 +1603,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1619,7 +1619,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.070166ms + duration: 314.09275ms - id: 45 request: proto: HTTP/1.1 @@ -1639,7 +1639,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -1649,13 +1649,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 312.250792ms + duration: 293.874375ms - id: 46 request: proto: HTTP/1.1 @@ -1675,7 +1675,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -1685,13 +1685,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.195458ms + duration: 305.137833ms - id: 47 request: proto: HTTP/1.1 @@ -1711,7 +1711,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -1721,13 +1721,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.045709ms + duration: 295.640833ms - id: 48 request: proto: HTTP/1.1 @@ -1747,7 +1747,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1757,13 +1757,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.951417ms + duration: 305.059417ms - id: 49 request: proto: HTTP/1.1 @@ -1783,7 +1783,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -1793,13 +1793,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 326.277792ms + duration: 311.06ms - id: 50 request: proto: HTTP/1.1 @@ -1819,7 +1819,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1829,13 +1829,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 425.018875ms + duration: 284.713833ms - id: 51 request: proto: HTTP/1.1 @@ -1855,7 +1855,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1871,7 +1871,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.21575ms + duration: 281.653875ms - id: 52 request: proto: HTTP/1.1 @@ -1891,7 +1891,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -1901,13 +1901,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.11875ms + duration: 309.849ms - id: 53 request: proto: HTTP/1.1 @@ -1927,7 +1927,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -1937,13 +1937,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.044333ms + duration: 289.6735ms - id: 54 request: proto: HTTP/1.1 @@ -1963,7 +1963,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -1973,13 +1973,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 358.868084ms + duration: 292.179709ms - id: 55 request: proto: HTTP/1.1 @@ -1999,7 +1999,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2009,13 +2009,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 396.366166ms + duration: 291.22075ms - id: 56 request: proto: HTTP/1.1 @@ -2035,7 +2035,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -2045,13 +2045,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 382.344458ms + duration: 303.9845ms - id: 57 request: proto: HTTP/1.1 @@ -2071,7 +2071,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2081,13 +2081,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 380.903375ms + duration: 284.030583ms - id: 58 request: proto: HTTP/1.1 @@ -2107,7 +2107,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2123,7 +2123,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 355.014083ms + duration: 304.712042ms - id: 59 request: proto: HTTP/1.1 @@ -2143,7 +2143,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -2153,13 +2153,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 337.050333ms + duration: 305.239125ms - id: 60 request: proto: HTTP/1.1 @@ -2179,7 +2179,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -2189,13 +2189,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 330.881125ms + duration: 275.058541ms - id: 61 request: proto: HTTP/1.1 @@ -2215,7 +2215,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -2225,13 +2225,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 345.937667ms + duration: 284.95625ms - id: 62 request: proto: HTTP/1.1 @@ -2251,7 +2251,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2261,13 +2261,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 414.558084ms + duration: 286.823542ms - id: 63 request: proto: HTTP/1.1 @@ -2280,14 +2280,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":false} + {"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":false} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections method: POST response: proto: HTTP/2.0 @@ -2297,13 +2297,13 @@ interactions: trailer: {} content_length: 200 uncompressed: false - body: '{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 340.532334ms + duration: 334.685292ms - id: 64 request: proto: HTTP/1.1 @@ -2323,7 +2323,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2333,13 +2333,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 312.74925ms + duration: 383.515542ms - id: 65 request: proto: HTTP/1.1 @@ -2359,7 +2359,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -2369,13 +2369,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.010042ms + duration: 339.239292ms - id: 66 request: proto: HTTP/1.1 @@ -2395,7 +2395,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2405,13 +2405,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.136625ms + duration: 352.272083ms - id: 67 request: proto: HTTP/1.1 @@ -2431,7 +2431,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2447,7 +2447,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.281958ms + duration: 339.203875ms - id: 68 request: proto: HTTP/1.1 @@ -2467,7 +2467,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -2477,13 +2477,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.333083ms + duration: 353.159292ms - id: 69 request: proto: HTTP/1.1 @@ -2503,7 +2503,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2513,13 +2513,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.914625ms + duration: 425.298541ms - id: 70 request: proto: HTTP/1.1 @@ -2539,7 +2539,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2555,7 +2555,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.470417ms + duration: 329.304125ms - id: 71 request: proto: HTTP/1.1 @@ -2575,7 +2575,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -2585,13 +2585,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 327.995459ms + duration: 291.240291ms - id: 72 request: proto: HTTP/1.1 @@ -2611,7 +2611,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -2621,13 +2621,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.3025ms + duration: 271.489083ms - id: 73 request: proto: HTTP/1.1 @@ -2647,7 +2647,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -2657,13 +2657,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.1725ms + duration: 299.031834ms - id: 74 request: proto: HTTP/1.1 @@ -2683,7 +2683,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2693,13 +2693,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 324.854792ms + duration: 285.16375ms - id: 75 request: proto: HTTP/1.1 @@ -2719,7 +2719,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -2729,13 +2729,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 329.502208ms + duration: 284.773041ms - id: 76 request: proto: HTTP/1.1 @@ -2755,7 +2755,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2765,13 +2765,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 425.68725ms + duration: 295.28525ms - id: 77 request: proto: HTTP/1.1 @@ -2791,7 +2791,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2807,7 +2807,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.205125ms + duration: 295.775875ms - id: 78 request: proto: HTTP/1.1 @@ -2827,7 +2827,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -2837,13 +2837,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.103375ms + duration: 292.069125ms - id: 79 request: proto: HTTP/1.1 @@ -2863,7 +2863,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -2873,13 +2873,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.550375ms + duration: 284.671458ms - id: 80 request: proto: HTTP/1.1 @@ -2899,7 +2899,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -2909,13 +2909,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.226208ms + duration: 277.963791ms - id: 81 request: proto: HTTP/1.1 @@ -2935,7 +2935,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2945,13 +2945,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.069875ms + duration: 282.313667ms - id: 82 request: proto: HTTP/1.1 @@ -2971,7 +2971,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -2981,13 +2981,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 445.638ms + duration: 275.651667ms - id: 83 request: proto: HTTP/1.1 @@ -3007,7 +3007,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3017,13 +3017,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.77225ms + duration: 289.6195ms - id: 84 request: proto: HTTP/1.1 @@ -3043,7 +3043,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3059,7 +3059,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 319.655917ms + duration: 306.487625ms - id: 85 request: proto: HTTP/1.1 @@ -3079,7 +3079,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -3089,13 +3089,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.385417ms + duration: 279.476708ms - id: 86 request: proto: HTTP/1.1 @@ -3115,7 +3115,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -3125,13 +3125,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.165458ms + duration: 287.984875ms - id: 87 request: proto: HTTP/1.1 @@ -3151,7 +3151,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -3161,13 +3161,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 484.457583ms + duration: 284.189042ms - id: 88 request: proto: HTTP/1.1 @@ -3187,7 +3187,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3197,13 +3197,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 313.502792ms + duration: 321.885625ms - id: 89 request: proto: HTTP/1.1 @@ -3223,7 +3223,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -3233,13 +3233,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.627667ms + duration: 346.264ms - id: 90 request: proto: HTTP/1.1 @@ -3259,7 +3259,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3269,13 +3269,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 316.077792ms + duration: 715.368166ms - id: 91 request: proto: HTTP/1.1 @@ -3295,7 +3295,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3311,7 +3311,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.7495ms + duration: 297.148458ms - id: 92 request: proto: HTTP/1.1 @@ -3331,7 +3331,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -3341,13 +3341,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 351.894458ms + duration: 309.777917ms - id: 93 request: proto: HTTP/1.1 @@ -3367,7 +3367,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -3377,13 +3377,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 340.166625ms + duration: 282.822708ms - id: 94 request: proto: HTTP/1.1 @@ -3403,7 +3403,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -3413,13 +3413,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 331.596375ms + duration: 278.38325ms - id: 95 request: proto: HTTP/1.1 @@ -3439,7 +3439,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3449,13 +3449,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":false,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 348.868042ms + duration: 385.941708ms - id: 96 request: proto: HTTP/1.1 @@ -3474,7 +3474,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections/con_CjKC4AKplnzJcSCZ method: DELETE response: proto: HTTP/2.0 @@ -3490,7 +3490,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 277.485584ms + duration: 283.566708ms - id: 97 request: proto: HTTP/1.1 @@ -3509,7 +3509,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections/con_FqDbLCj1yF5ZD0Wd method: DELETE response: proto: HTTP/2.0 @@ -3525,7 +3525,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 326.254208ms + duration: 299.736958ms - id: 98 request: proto: HTTP/1.1 @@ -3538,14 +3538,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true} + {"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":true} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections method: POST response: proto: HTTP/2.0 @@ -3555,13 +3555,13 @@ interactions: trailer: {} content_length: 199 uncompressed: false - body: '{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 314.150709ms + duration: 304.708083ms - id: 99 request: proto: HTTP/1.1 @@ -3574,14 +3574,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":true} + {"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections method: POST response: proto: HTTP/2.0 @@ -3591,13 +3591,13 @@ interactions: trailer: {} content_length: 199 uncompressed: false - body: '{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 322.573417ms + duration: 378.965542ms - id: 100 request: proto: HTTP/1.1 @@ -3617,7 +3617,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3627,13 +3627,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.55775ms + duration: 377.915417ms - id: 101 request: proto: HTTP/1.1 @@ -3653,7 +3653,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -3663,13 +3663,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 356.718ms + duration: 346.821ms - id: 102 request: proto: HTTP/1.1 @@ -3689,7 +3689,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3699,13 +3699,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.799667ms + duration: 353.40275ms - id: 103 request: proto: HTTP/1.1 @@ -3725,7 +3725,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3741,7 +3741,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.777084ms + duration: 338.664167ms - id: 104 request: proto: HTTP/1.1 @@ -3761,7 +3761,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -3771,13 +3771,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.013083ms + duration: 353.034667ms - id: 105 request: proto: HTTP/1.1 @@ -3797,7 +3797,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3807,13 +3807,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 330.129084ms + duration: 283.857666ms - id: 106 request: proto: HTTP/1.1 @@ -3833,7 +3833,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3849,7 +3849,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 332.415042ms + duration: 455.539458ms - id: 107 request: proto: HTTP/1.1 @@ -3869,7 +3869,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -3879,13 +3879,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.132417ms + duration: 282.349416ms - id: 108 request: proto: HTTP/1.1 @@ -3905,7 +3905,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -3915,13 +3915,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.379ms + duration: 292.304125ms - id: 109 request: proto: HTTP/1.1 @@ -3941,7 +3941,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -3951,13 +3951,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.989208ms + duration: 306.953084ms - id: 110 request: proto: HTTP/1.1 @@ -3977,7 +3977,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3987,13 +3987,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 324.635333ms + duration: 321.519542ms - id: 111 request: proto: HTTP/1.1 @@ -4013,7 +4013,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -4023,13 +4023,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 435.551667ms + duration: 278.257167ms - id: 112 request: proto: HTTP/1.1 @@ -4049,7 +4049,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4059,13 +4059,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.922917ms + duration: 287.063917ms - id: 113 request: proto: HTTP/1.1 @@ -4085,7 +4085,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4101,7 +4101,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 289.438459ms + duration: 279.071542ms - id: 114 request: proto: HTTP/1.1 @@ -4121,7 +4121,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -4131,13 +4131,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.946333ms + duration: 318.946042ms - id: 115 request: proto: HTTP/1.1 @@ -4157,7 +4157,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -4167,13 +4167,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.87125ms + duration: 305.698917ms - id: 116 request: proto: HTTP/1.1 @@ -4193,7 +4193,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -4203,13 +4203,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.268667ms + duration: 284.91825ms - id: 117 request: proto: HTTP/1.1 @@ -4229,7 +4229,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4239,13 +4239,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.294791ms + duration: 277.56825ms - id: 118 request: proto: HTTP/1.1 @@ -4265,7 +4265,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -4275,13 +4275,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 274.809042ms + duration: 275.784792ms - id: 119 request: proto: HTTP/1.1 @@ -4301,7 +4301,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4311,13 +4311,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.861958ms + duration: 278.919417ms - id: 120 request: proto: HTTP/1.1 @@ -4337,7 +4337,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4353,7 +4353,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.422583ms + duration: 275.665667ms - id: 121 request: proto: HTTP/1.1 @@ -4373,7 +4373,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -4383,13 +4383,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.972709ms + duration: 345.57675ms - id: 122 request: proto: HTTP/1.1 @@ -4409,7 +4409,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -4419,13 +4419,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.577292ms + duration: 277.222292ms - id: 123 request: proto: HTTP/1.1 @@ -4445,7 +4445,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -4455,13 +4455,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.430042ms + duration: 317.3665ms - id: 124 request: proto: HTTP/1.1 @@ -4481,7 +4481,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4491,13 +4491,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 337.852792ms + duration: 351.112791ms - id: 125 request: proto: HTTP/1.1 @@ -4517,7 +4517,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -4527,13 +4527,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 275.823375ms + duration: 303.493667ms - id: 126 request: proto: HTTP/1.1 @@ -4553,7 +4553,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4563,13 +4563,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.285ms + duration: 282.799625ms - id: 127 request: proto: HTTP/1.1 @@ -4589,7 +4589,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4605,7 +4605,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.788958ms + duration: 312.612ms - id: 128 request: proto: HTTP/1.1 @@ -4625,7 +4625,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -4635,13 +4635,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 383.679458ms + duration: 313.196583ms - id: 129 request: proto: HTTP/1.1 @@ -4661,7 +4661,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -4671,13 +4671,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 329.478833ms + duration: 407.961291ms - id: 130 request: proto: HTTP/1.1 @@ -4697,7 +4697,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -4707,13 +4707,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 334.944708ms + duration: 272.354209ms - id: 131 request: proto: HTTP/1.1 @@ -4733,7 +4733,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4743,13 +4743,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 332.562125ms + duration: 303.453667ms - id: 132 request: proto: HTTP/1.1 @@ -4768,7 +4768,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections/con_FqDbLCj1yF5ZD0Wd method: DELETE response: proto: HTTP/2.0 @@ -4784,7 +4784,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 351.54575ms + duration: 279.170042ms - id: 133 request: proto: HTTP/1.1 @@ -4804,7 +4804,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4814,13 +4814,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.028584ms + duration: 321.682583ms - id: 134 request: proto: HTTP/1.1 @@ -4840,7 +4840,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -4850,13 +4850,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 429.915625ms + duration: 285.653208ms - id: 135 request: proto: HTTP/1.1 @@ -4876,7 +4876,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4886,13 +4886,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.468792ms + duration: 284.970917ms - id: 136 request: proto: HTTP/1.1 @@ -4912,7 +4912,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4928,7 +4928,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.933166ms + duration: 342.763167ms - id: 137 request: proto: HTTP/1.1 @@ -4948,7 +4948,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -4958,13 +4958,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.18825ms + duration: 299.701292ms - id: 138 request: proto: HTTP/1.1 @@ -4984,7 +4984,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4994,13 +4994,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 297.325ms + duration: 336.455208ms - id: 139 request: proto: HTTP/1.1 @@ -5020,7 +5020,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5036,7 +5036,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.084875ms + duration: 356.242375ms - id: 140 request: proto: HTTP/1.1 @@ -5056,7 +5056,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -5066,13 +5066,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.86875ms + duration: 294.567125ms - id: 141 request: proto: HTTP/1.1 @@ -5092,7 +5092,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -5102,13 +5102,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.878917ms + duration: 439.145458ms - id: 142 request: proto: HTTP/1.1 @@ -5128,7 +5128,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -5138,13 +5138,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.812916ms + duration: 302.341666ms - id: 143 request: proto: HTTP/1.1 @@ -5164,7 +5164,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5174,13 +5174,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.180375ms + duration: 345.120792ms - id: 144 request: proto: HTTP/1.1 @@ -5200,7 +5200,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -5210,13 +5210,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.650417ms + duration: 302.783958ms - id: 145 request: proto: HTTP/1.1 @@ -5236,7 +5236,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5246,13 +5246,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.133667ms + duration: 285.000959ms - id: 146 request: proto: HTTP/1.1 @@ -5272,7 +5272,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5288,7 +5288,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.292333ms + duration: 301.462917ms - id: 147 request: proto: HTTP/1.1 @@ -5308,7 +5308,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -5318,13 +5318,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.637083ms + duration: 354.218625ms - id: 148 request: proto: HTTP/1.1 @@ -5344,7 +5344,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -5354,13 +5354,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.675875ms + duration: 286.958708ms - id: 149 request: proto: HTTP/1.1 @@ -5380,7 +5380,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -5390,13 +5390,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.440667ms + duration: 282.419167ms - id: 150 request: proto: HTTP/1.1 @@ -5416,7 +5416,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5426,13 +5426,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.787125ms + duration: 284.7395ms - id: 151 request: proto: HTTP/1.1 @@ -5452,7 +5452,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -5462,13 +5462,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.950959ms + duration: 322.429959ms - id: 152 request: proto: HTTP/1.1 @@ -5488,7 +5488,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5498,13 +5498,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.429583ms + duration: 406.397625ms - id: 153 request: proto: HTTP/1.1 @@ -5524,7 +5524,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5540,7 +5540,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.061917ms + duration: 310.822667ms - id: 154 request: proto: HTTP/1.1 @@ -5560,7 +5560,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -5570,13 +5570,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.470333ms + duration: 400.11225ms - id: 155 request: proto: HTTP/1.1 @@ -5596,7 +5596,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -5606,13 +5606,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.435916ms + duration: 387.434625ms - id: 156 request: proto: HTTP/1.1 @@ -5632,7 +5632,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -5642,13 +5642,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.043125ms + duration: 279.172708ms - id: 157 request: proto: HTTP/1.1 @@ -5668,7 +5668,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5678,13 +5678,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.214208ms + duration: 287.357875ms - id: 158 request: proto: HTTP/1.1 @@ -5704,7 +5704,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -5714,13 +5714,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 321.924542ms + duration: 276.731584ms - id: 159 request: proto: HTTP/1.1 @@ -5740,7 +5740,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5750,13 +5750,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.38875ms + duration: 307.592542ms - id: 160 request: proto: HTTP/1.1 @@ -5776,7 +5776,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5792,7 +5792,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.857167ms + duration: 321.992167ms - id: 161 request: proto: HTTP/1.1 @@ -5812,7 +5812,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -5822,13 +5822,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.143417ms + duration: 277.435541ms - id: 162 request: proto: HTTP/1.1 @@ -5848,7 +5848,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5858,13 +5858,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.41775ms + duration: 293.664042ms - id: 163 request: proto: HTTP/1.1 @@ -5884,7 +5884,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -5894,13 +5894,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.786542ms + duration: 276.975917ms - id: 164 request: proto: HTTP/1.1 @@ -5920,7 +5920,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -5930,13 +5930,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.963333ms + duration: 325.692084ms - id: 165 request: proto: HTTP/1.1 @@ -5956,7 +5956,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -5966,13 +5966,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 359.625333ms + duration: 288.866833ms - id: 166 request: proto: HTTP/1.1 @@ -5992,7 +5992,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -6002,13 +6002,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":1,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 388.297333ms + duration: 289.671709ms - id: 167 request: proto: HTTP/1.1 @@ -6028,7 +6028,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6044,7 +6044,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 356.0975ms + duration: 293.085292ms - id: 168 request: proto: HTTP/1.1 @@ -6063,7 +6063,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections/con_CjKC4AKplnzJcSCZ method: DELETE response: proto: HTTP/2.0 @@ -6079,7 +6079,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 335.720542ms + duration: 278.935958ms - id: 169 request: proto: HTTP/1.1 @@ -6099,7 +6099,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -6109,13 +6109,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 391.008292ms + duration: 469.272ms - id: 170 request: proto: HTTP/1.1 @@ -6135,7 +6135,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -6151,7 +6151,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 469.667167ms + duration: 306.712125ms - id: 171 request: proto: HTTP/1.1 @@ -6171,7 +6171,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6187,7 +6187,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 400.346833ms + duration: 360.619667ms - id: 172 request: proto: HTTP/1.1 @@ -6207,7 +6207,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -6217,13 +6217,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 338.56575ms + duration: 349.881666ms - id: 173 request: proto: HTTP/1.1 @@ -6243,7 +6243,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -6253,13 +6253,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.870542ms + duration: 322.863041ms - id: 174 request: proto: HTTP/1.1 @@ -6279,7 +6279,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -6289,13 +6289,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.103666ms + duration: 522.325667ms - id: 175 request: proto: HTTP/1.1 @@ -6315,7 +6315,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -6325,13 +6325,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.476791ms + duration: 345.485959ms - id: 176 request: proto: HTTP/1.1 @@ -6351,7 +6351,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -6367,7 +6367,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.560041ms + duration: 280.791291ms - id: 177 request: proto: HTTP/1.1 @@ -6387,7 +6387,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6403,7 +6403,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.212375ms + duration: 324.543167ms - id: 178 request: proto: HTTP/1.1 @@ -6423,7 +6423,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -6433,13 +6433,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.117416ms + duration: 361.382875ms - id: 179 request: proto: HTTP/1.1 @@ -6459,7 +6459,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -6469,13 +6469,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.821333ms + duration: 330.881292ms - id: 180 request: proto: HTTP/1.1 @@ -6495,7 +6495,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -6505,13 +6505,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.600333ms + duration: 305.772959ms - id: 181 request: proto: HTTP/1.1 @@ -6531,7 +6531,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -6541,13 +6541,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.095125ms + duration: 314.609166ms - id: 182 request: proto: HTTP/1.1 @@ -6567,7 +6567,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -6583,7 +6583,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.6455ms + duration: 310.416167ms - id: 183 request: proto: HTTP/1.1 @@ -6603,7 +6603,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6619,7 +6619,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.163542ms + duration: 342.143792ms - id: 184 request: proto: HTTP/1.1 @@ -6639,7 +6639,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -6649,13 +6649,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 312.127125ms + duration: 283.495791ms - id: 185 request: proto: HTTP/1.1 @@ -6675,7 +6675,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -6685,13 +6685,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.727833ms + duration: 278.008083ms - id: 186 request: proto: HTTP/1.1 @@ -6711,7 +6711,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -6721,13 +6721,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.412916ms + duration: 403.567459ms - id: 187 request: proto: HTTP/1.1 @@ -6747,7 +6747,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -6757,13 +6757,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.346042ms + duration: 283.507125ms - id: 188 request: proto: HTTP/1.1 @@ -6783,7 +6783,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -6799,7 +6799,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.503583ms + duration: 283.267875ms - id: 189 request: proto: HTTP/1.1 @@ -6819,7 +6819,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6835,7 +6835,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.592875ms + duration: 346.545625ms - id: 190 request: proto: HTTP/1.1 @@ -6855,7 +6855,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -6865,13 +6865,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 271.357125ms + duration: 329.786834ms - id: 191 request: proto: HTTP/1.1 @@ -6891,7 +6891,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -6901,13 +6901,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.9475ms + duration: 376.880458ms - id: 192 request: proto: HTTP/1.1 @@ -6927,7 +6927,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -6937,13 +6937,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.3005ms + duration: 280.731833ms - id: 193 request: proto: HTTP/1.1 @@ -6956,14 +6956,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":true} + {"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":true} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections method: POST response: proto: HTTP/2.0 @@ -6973,13 +6973,13 @@ interactions: trailer: {} content_length: 199 uncompressed: false - body: '{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 287.694583ms + duration: 297.299875ms - id: 194 request: proto: HTTP/1.1 @@ -6999,7 +6999,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -7009,13 +7009,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.668208ms + duration: 281.202334ms - id: 195 request: proto: HTTP/1.1 @@ -7028,14 +7028,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true} + {"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections method: POST response: proto: HTTP/2.0 @@ -7045,13 +7045,13 @@ interactions: trailer: {} content_length: 199 uncompressed: false - body: '{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 342.109333ms + duration: 291.960292ms - id: 196 request: proto: HTTP/1.1 @@ -7071,7 +7071,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -7081,13 +7081,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 409.43275ms + duration: 295.381083ms - id: 197 request: proto: HTTP/1.1 @@ -7107,7 +7107,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -7117,13 +7117,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.314667ms + duration: 274.476417ms - id: 198 request: proto: HTTP/1.1 @@ -7143,7 +7143,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -7153,13 +7153,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 815.409458ms + duration: 310.684875ms - id: 199 request: proto: HTTP/1.1 @@ -7179,7 +7179,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -7189,13 +7189,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 339.295917ms + duration: 279.343458ms - id: 200 request: proto: HTTP/1.1 @@ -7215,7 +7215,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -7225,13 +7225,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 347.741542ms + duration: 301.354833ms - id: 201 request: proto: HTTP/1.1 @@ -7251,7 +7251,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -7261,13 +7261,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 329.661792ms + duration: 293.343417ms - id: 202 request: proto: HTTP/1.1 @@ -7287,7 +7287,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -7297,13 +7297,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 353.418917ms + duration: 308.027042ms - id: 203 request: proto: HTTP/1.1 @@ -7323,7 +7323,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -7333,13 +7333,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 414.236208ms + duration: 286.162ms - id: 204 request: proto: HTTP/1.1 @@ -7359,7 +7359,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -7369,13 +7369,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 314.017458ms + duration: 277.243ms - id: 205 request: proto: HTTP/1.1 @@ -7395,7 +7395,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -7411,7 +7411,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.998583ms + duration: 340.02875ms - id: 206 request: proto: HTTP/1.1 @@ -7431,7 +7431,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -7441,13 +7441,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.106833ms + duration: 324.890875ms - id: 207 request: proto: HTTP/1.1 @@ -7467,7 +7467,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -7477,13 +7477,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.733042ms + duration: 331.124792ms - id: 208 request: proto: HTTP/1.1 @@ -7503,7 +7503,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -7513,13 +7513,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.705125ms + duration: 329.494583ms - id: 209 request: proto: HTTP/1.1 @@ -7539,7 +7539,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -7549,13 +7549,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.41825ms + duration: 344.297292ms - id: 210 request: proto: HTTP/1.1 @@ -7575,7 +7575,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -7585,13 +7585,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.28975ms + duration: 344.56ms - id: 211 request: proto: HTTP/1.1 @@ -7611,7 +7611,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -7621,13 +7621,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.748625ms + duration: 343.827459ms - id: 212 request: proto: HTTP/1.1 @@ -7647,7 +7647,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -7657,13 +7657,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.785792ms + duration: 345.17625ms - id: 213 request: proto: HTTP/1.1 @@ -7683,7 +7683,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -7693,13 +7693,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 347.705292ms + duration: 286.043792ms - id: 214 request: proto: HTTP/1.1 @@ -7719,7 +7719,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -7735,7 +7735,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.943625ms + duration: 312.824083ms - id: 215 request: proto: HTTP/1.1 @@ -7755,7 +7755,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -7765,13 +7765,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 407.287834ms + duration: 345.461291ms - id: 216 request: proto: HTTP/1.1 @@ -7791,7 +7791,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -7801,13 +7801,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 409.820584ms + duration: 294.322458ms - id: 217 request: proto: HTTP/1.1 @@ -7827,7 +7827,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -7843,7 +7843,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 312.956542ms + duration: 343.715875ms - id: 218 request: proto: HTTP/1.1 @@ -7863,7 +7863,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -7873,13 +7873,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_HgxKJOrr5NTL7sNU","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' + body: '{"id":"con_FqDbLCj1yF5ZD0Wd","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-1-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-1-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 297.325916ms + duration: 289.797125ms - id: 219 request: proto: HTTP/1.1 @@ -7899,7 +7899,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -7909,13 +7909,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"con_7sQpCJhrzP5vbDjX","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' + body: '{"id":"con_CjKC4AKplnzJcSCZ","options":{"mfa":{"active":true,"return_enroll_settings":true},"passwordPolicy":"good","passkey_options":{"challenge_ui":"both","local_enrollment_enabled":true,"progressive_enrollment_enabled":true},"strategy_version":2,"authentication_methods":{"passkey":{"enabled":false},"password":{"enabled":true}},"brute_force_protection":true},"strategy":"auth0","name":"Acceptance-Test-Connection-2-testaccorganizationconnections","is_domain_connection":false,"enabled_clients":[],"realms":["Acceptance-Test-Connection-2-testaccorganizationconnections"]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 390.472458ms + duration: 277.01575ms - id: 220 request: proto: HTTP/1.1 @@ -7935,7 +7935,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -7945,13 +7945,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 393.967834ms + duration: 298.223959ms - id: 221 request: proto: HTTP/1.1 @@ -7971,7 +7971,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -7981,13 +7981,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 398.916625ms + duration: 319.680792ms - id: 222 request: proto: HTTP/1.1 @@ -8007,7 +8007,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections/con_FqDbLCj1yF5ZD0Wd method: GET response: proto: HTTP/2.0 @@ -8017,13 +8017,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 404.595625ms + duration: 330.383792ms - id: 223 request: proto: HTTP/1.1 @@ -8043,7 +8043,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: GET response: proto: HTTP/2.0 @@ -8053,13 +8053,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_XVyR90qVyBOqnnWH","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' + body: '{"id":"org_cI6kS0o7kkC9vmgi","name":"some-org-testaccorganizationconnections","display_name":"testaccorganizationconnections"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 390.836ms + duration: 276.195458ms - id: 224 request: proto: HTTP/1.1 @@ -8079,7 +8079,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections/con_CjKC4AKplnzJcSCZ method: GET response: proto: HTTP/2.0 @@ -8089,13 +8089,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' + body: '{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 392.266208ms + duration: 277.936042ms - id: 225 request: proto: HTTP/1.1 @@ -8115,7 +8115,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -8125,13 +8125,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[{"connection_id":"con_7sQpCJhrzP5vbDjX","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_HgxKJOrr5NTL7sNU","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' + body: '{"enabled_connections":[{"connection_id":"con_CjKC4AKplnzJcSCZ","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-2-testaccorganizationconnections","strategy":"auth0"}},{"connection_id":"con_FqDbLCj1yF5ZD0Wd","assign_membership_on_login":true,"show_as_button":true,"connection":{"name":"Acceptance-Test-Connection-1-testaccorganizationconnections","strategy":"auth0"}}],"start":0,"limit":2,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.7815ms + duration: 287.827959ms - id: 226 request: proto: HTTP/1.1 @@ -8151,7 +8151,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -8167,7 +8167,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.707125ms + duration: 289.69525ms - id: 227 request: proto: HTTP/1.1 @@ -8186,7 +8186,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections/con_CjKC4AKplnzJcSCZ method: DELETE response: proto: HTTP/2.0 @@ -8202,7 +8202,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 307.231708ms + duration: 289.174708ms - id: 228 request: proto: HTTP/1.1 @@ -8221,7 +8221,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections/con_CjKC4AKplnzJcSCZ method: DELETE response: proto: HTTP/2.0 @@ -8237,7 +8237,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 413.371875ms + duration: 306.444541ms - id: 229 request: proto: HTTP/1.1 @@ -8256,7 +8256,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections/con_FqDbLCj1yF5ZD0Wd method: DELETE response: proto: HTTP/2.0 @@ -8272,7 +8272,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 790.737541ms + duration: 277.029959ms - id: 230 request: proto: HTTP/1.1 @@ -8291,7 +8291,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH/enabled_connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi/enabled_connections/con_FqDbLCj1yF5ZD0Wd method: DELETE response: proto: HTTP/2.0 @@ -8307,7 +8307,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 329.698334ms + duration: 469.627583ms - id: 231 request: proto: HTTP/1.1 @@ -8326,7 +8326,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_XVyR90qVyBOqnnWH + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_cI6kS0o7kkC9vmgi method: DELETE response: proto: HTTP/2.0 @@ -8342,7 +8342,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 302.344166ms + duration: 290.6025ms - id: 232 request: proto: HTTP/1.1 @@ -8361,7 +8361,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_7sQpCJhrzP5vbDjX + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_CjKC4AKplnzJcSCZ method: DELETE response: proto: HTTP/2.0 @@ -8371,13 +8371,13 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2024-05-27T09:24:03.980Z"}' + body: '{"deleted_at":"2024-05-27T13:27:43.684Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 385.232583ms + duration: 322.579292ms - id: 233 request: proto: HTTP/1.1 @@ -8396,7 +8396,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_HgxKJOrr5NTL7sNU + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/connections/con_FqDbLCj1yF5ZD0Wd method: DELETE response: proto: HTTP/2.0 @@ -8406,10 +8406,10 @@ interactions: trailer: {} content_length: 41 uncompressed: false - body: '{"deleted_at":"2024-05-27T09:24:04.376Z"}' + body: '{"deleted_at":"2024-05-27T13:27:43.987Z"}' headers: Content-Type: - application/json; charset=utf-8 status: 202 Accepted code: 202 - duration: 314.007292ms + duration: 289.695834ms diff --git a/test/data/recordings/TestAccOrganizationMember.yaml b/test/data/recordings/TestAccOrganizationMember.yaml index 73296e0f1..4c406e8de 100644 --- a/test/data/recordings/TestAccOrganizationMember.yaml +++ b/test/data/recordings/TestAccOrganizationMember.yaml @@ -30,13 +30,13 @@ interactions: trailer: {} content_length: 594 uncompressed: false - body: '{"created_at":"2024-05-27T09:19:59.612Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fcd5cb856cecf246b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.612Z","user_id":"auth0|6654503fcd5cb856cecf246b","username":"testaccorganizationmember11"}' + body: '{"created_at":"2024-05-27T14:31:37.637Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949465f0d3c058a33ba","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.637Z","user_id":"auth0|66549949465f0d3c058a33ba","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 580.742917ms + duration: 439.386167ms - id: 1 request: proto: HTTP/1.1 @@ -56,7 +56,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fcd5cb856cecf246b + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba method: GET response: proto: HTTP/2.0 @@ -66,13 +66,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.612Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fcd5cb856cecf246b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.612Z","user_id":"auth0|6654503fcd5cb856cecf246b","username":"testaccorganizationmember11"}' + body: '{"created_at":"2024-05-27T14:31:37.637Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949465f0d3c058a33ba","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.637Z","user_id":"auth0|66549949465f0d3c058a33ba","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 352.545375ms + duration: 315.610125ms - id: 2 request: proto: HTTP/1.1 @@ -102,13 +102,13 @@ interactions: trailer: {} content_length: 594 uncompressed: false - body: '{"created_at":"2024-05-27T09:20:05.892Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665450453a478dce1bb55032","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:05.893Z","user_id":"auth0|665450453a478dce1bb55032","username":"testaccorganizationmember22"}' + body: '{"created_at":"2024-05-27T14:31:38.405Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994a3d0a9374995dbe52","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:38.405Z","user_id":"auth0|6654994a3d0a9374995dbe52","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 452.016667ms + duration: 448.071625ms - id: 3 request: proto: HTTP/1.1 @@ -128,7 +128,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665450453a478dce1bb55032 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 method: GET response: proto: HTTP/2.0 @@ -138,13 +138,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:05.892Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665450453a478dce1bb55032","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:05.893Z","user_id":"auth0|665450453a478dce1bb55032","username":"testaccorganizationmember22"}' + body: '{"created_at":"2024-05-27T14:31:38.405Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994a3d0a9374995dbe52","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:38.405Z","user_id":"auth0|6654994a3d0a9374995dbe52","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 318.525584ms + duration: 293.138ms - id: 4 request: proto: HTTP/1.1 @@ -174,13 +174,13 @@ interactions: trailer: {} content_length: 116 uncompressed: false - body: '{"id":"org_3aXIGudTFUk9eqy6","display_name":"testaccorganizationmember","name":"some-org-testaccorganizationmember"}' + body: '{"id":"org_d5ivchkU2BNzWgUW","display_name":"testaccorganizationmember","name":"some-org-testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 333.303292ms + duration: 307.007042ms - id: 5 request: proto: HTTP/1.1 @@ -200,7 +200,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -210,13 +210,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 338.512ms + duration: 304.084042ms - id: 6 request: proto: HTTP/1.1 @@ -229,14 +229,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|6654503fcd5cb856cecf246b"]} + {"members":["auth0|66549949465f0d3c058a33ba"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members method: POST response: proto: HTTP/2.0 @@ -252,7 +252,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 393.86125ms + duration: 322.03825ms - id: 7 request: proto: HTTP/1.1 @@ -272,7 +272,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -282,13 +282,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTozOS42NDkwMDBVVEMsYXV0aDB8NjY1NDk5NDk0NjVmMGQzYzA1OGEzM2Jh"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.034375ms + duration: 325.193417ms - id: 8 request: proto: HTTP/1.1 @@ -308,7 +308,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTozOS42NDkwMDBVVEMsYXV0aDB8NjY1NDk5NDk0NjVmMGQzYzA1OGEzM2Jh&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -316,15 +316,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.574333ms + duration: 292.812625ms - id: 9 request: proto: HTTP/1.1 @@ -344,7 +344,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -354,13 +354,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 413.000708ms + duration: 288.953166ms - id: 10 request: proto: HTTP/1.1 @@ -380,7 +380,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -390,13 +390,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 803.346583ms + duration: 299.686625ms - id: 11 request: proto: HTTP/1.1 @@ -416,7 +416,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -426,13 +426,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"members":[{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTozOS42NDkwMDBVVEMsYXV0aDB8NjY1NDk5NDk0NjVmMGQzYzA1OGEzM2Jh"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.19075ms + duration: 298.919334ms - id: 12 request: proto: HTTP/1.1 @@ -452,7 +452,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTozOS42NDkwMDBVVEMsYXV0aDB8NjY1NDk5NDk0NjVmMGQzYzA1OGEzM2Jh&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -460,15 +460,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.596917ms + duration: 337.082542ms - id: 13 request: proto: HTTP/1.1 @@ -488,7 +488,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -498,13 +498,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.39275ms + duration: 282.111083ms - id: 14 request: proto: HTTP/1.1 @@ -524,7 +524,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fcd5cb856cecf246b + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -534,13 +534,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.612Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fcd5cb856cecf246b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.612Z","user_id":"auth0|6654503fcd5cb856cecf246b","username":"testaccorganizationmember11"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 349.738041ms + duration: 317.873458ms - id: 15 request: proto: HTTP/1.1 @@ -560,7 +560,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665450453a478dce1bb55032 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -570,13 +570,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:05.892Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665450453a478dce1bb55032","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:05.893Z","user_id":"auth0|665450453a478dce1bb55032","username":"testaccorganizationmember22"}' + body: '{"members":[{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTozOS42NDkwMDBVVEMsYXV0aDB8NjY1NDk5NDk0NjVmMGQzYzA1OGEzM2Jh"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 328.681917ms + duration: 317.755792ms - id: 16 request: proto: HTTP/1.1 @@ -596,7 +596,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTozOS42NDkwMDBVVEMsYXV0aDB8NjY1NDk5NDk0NjVmMGQzYzA1OGEzM2Jh&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -604,15 +604,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.356083ms + duration: 308.560583ms - id: 17 request: proto: HTTP/1.1 @@ -632,7 +632,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba method: GET response: proto: HTTP/2.0 @@ -642,13 +642,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"created_at":"2024-05-27T14:31:37.637Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949465f0d3c058a33ba","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.637Z","user_id":"auth0|66549949465f0d3c058a33ba","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 335.178542ms + duration: 277.299667ms - id: 18 request: proto: HTTP/1.1 @@ -668,7 +668,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 method: GET response: proto: HTTP/2.0 @@ -678,13 +678,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"created_at":"2024-05-27T14:31:38.405Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994a3d0a9374995dbe52","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:38.405Z","user_id":"auth0|6654994a3d0a9374995dbe52","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.681334ms + duration: 305.906667ms - id: 19 request: proto: HTTP/1.1 @@ -704,7 +704,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -714,13 +714,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545460f4306b7b1fa333bf","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":1}' + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.082083ms + duration: 301.478625ms - id: 20 request: proto: HTTP/1.1 @@ -740,7 +740,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -750,13 +750,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTozOS42NDkwMDBVVEMsYXV0aDB8NjY1NDk5NDk0NjVmMGQzYzA1OGEzM2Jh"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 330.663417ms + duration: 313.77925ms - id: 21 request: proto: HTTP/1.1 @@ -776,7 +776,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fcd5cb856cecf246b + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTozOS42NDkwMDBVVEMsYXV0aDB8NjY1NDk5NDk0NjVmMGQzYzA1OGEzM2Jh&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -784,15 +784,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.612Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fcd5cb856cecf246b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.612Z","user_id":"auth0|6654503fcd5cb856cecf246b","username":"testaccorganizationmember11"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.590916ms + duration: 290.883417ms - id: 22 request: proto: HTTP/1.1 @@ -812,7 +812,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665450453a478dce1bb55032 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -822,13 +822,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:05.892Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665450453a478dce1bb55032","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:05.893Z","user_id":"auth0|665450453a478dce1bb55032","username":"testaccorganizationmember22"}' + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 462.219834ms + duration: 301.677292ms - id: 23 request: proto: HTTP/1.1 @@ -848,7 +848,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -858,13 +858,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 459.8685ms + duration: 308.883291ms - id: 24 request: proto: HTTP/1.1 @@ -884,7 +884,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -894,13 +894,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTozOS42NDkwMDBVVEMsYXV0aDB8NjY1NDk5NDk0NjVmMGQzYzA1OGEzM2Jh"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 333.0135ms + duration: 307.18475ms - id: 25 request: proto: HTTP/1.1 @@ -913,30 +913,30 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|665450453a478dce1bb55032"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members - method: POST + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTozOS42NDkwMDBVVEMsYXV0aDB8NjY1NDk5NDk0NjVmMGQzYzA1OGEzM2Jh&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T09:37:37.080Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545461e957844eac7ce91b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.080Z","user_id":"auth0|66545461e957844eac7ce91b","username":"testaccorganizationmember22"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 353.726167ms + status: 200 OK + code: 200 + duration: 285.18575ms - id: 26 request: proto: HTTP/1.1 @@ -956,7 +956,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba method: GET response: proto: HTTP/2.0 @@ -966,13 +966,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450453a478dce1bb55032","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"created_at":"2024-05-27T14:31:37.637Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949465f0d3c058a33ba","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.637Z","user_id":"auth0|66549949465f0d3c058a33ba","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 425.441292ms + duration: 303.253166ms - id: 27 request: proto: HTTP/1.1 @@ -992,7 +992,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 method: GET response: proto: HTTP/2.0 @@ -1002,33 +1002,33 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"created_at":"2024-05-27T14:31:38.405Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994a3d0a9374995dbe52","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:38.405Z","user_id":"auth0|6654994a3d0a9374995dbe52","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.131375ms + duration: 301.507541ms - id: 28 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|66545461e957844eac7ce91b"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -1036,15 +1036,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 467.335667ms + duration: 468.258458ms - id: 29 request: proto: HTTP/1.1 @@ -1064,7 +1064,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1074,13 +1074,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450453a478dce1bb55032","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTozOS42NDkwMDBVVEMsYXV0aDB8NjY1NDk5NDk0NjVmMGQzYzA1OGEzM2Jh"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.316708ms + duration: 318.74525ms - id: 30 request: proto: HTTP/1.1 @@ -1100,7 +1100,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTozOS42NDkwMDBVVEMsYXV0aDB8NjY1NDk5NDk0NjVmMGQzYzA1OGEzM2Jh&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1108,51 +1108,51 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.234291ms + duration: 352.89075ms - id: 31 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 47 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"members":["auth0|6654994a3d0a9374995dbe52"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/enabled_connections?include_totals=true&page=0&per_page=100 - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 302.661084ms + status: 204 No Content + code: 204 + duration: 352.230791ms - id: 32 request: proto: HTTP/1.1 @@ -1172,7 +1172,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1182,13 +1182,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450453a478dce1bb55032","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 344.738167ms + duration: 436.029584ms - id: 33 request: proto: HTTP/1.1 @@ -1208,7 +1208,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fcd5cb856cecf246b + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1216,15 +1216,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.612Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fcd5cb856cecf246b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.612Z","user_id":"auth0|6654503fcd5cb856cecf246b","username":"testaccorganizationmember11"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.382375ms + duration: 354.261209ms - id: 34 request: proto: HTTP/1.1 @@ -1244,7 +1244,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665450453a478dce1bb55032 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -1254,13 +1254,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:05.892Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665450453a478dce1bb55032","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:05.893Z","user_id":"auth0|665450453a478dce1bb55032","username":"testaccorganizationmember22"}' + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.931833ms + duration: 284.34875ms - id: 35 request: proto: HTTP/1.1 @@ -1280,7 +1280,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1290,13 +1290,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.322ms + duration: 303.606292ms - id: 36 request: proto: HTTP/1.1 @@ -1316,7 +1316,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1326,13 +1326,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450453a478dce1bb55032","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.101291ms + duration: 308.049ms - id: 37 request: proto: HTTP/1.1 @@ -1352,7 +1352,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1360,15 +1360,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|665450453a478dce1bb55032","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 318.245042ms + duration: 286.18575ms - id: 38 request: proto: HTTP/1.1 @@ -1388,7 +1388,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -1398,13 +1398,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.471541ms + duration: 300.229125ms - id: 39 request: proto: HTTP/1.1 @@ -1424,7 +1424,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1434,13 +1434,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:37:37.080Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545461e957844eac7ce91b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.080Z","user_id":"auth0|66545461e957844eac7ce91b","username":"testaccorganizationmember22"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.367375ms + duration: 297.981333ms - id: 40 request: proto: HTTP/1.1 @@ -1460,7 +1460,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1470,13 +1470,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450453a478dce1bb55032","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.66725ms + duration: 316.136375ms - id: 41 request: proto: HTTP/1.1 @@ -1496,7 +1496,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1504,15 +1504,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|665450453a478dce1bb55032","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.6245ms + duration: 301.4085ms - id: 42 request: proto: HTTP/1.1 @@ -1532,7 +1532,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba method: GET response: proto: HTTP/2.0 @@ -1542,13 +1542,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450453a478dce1bb55032","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"created_at":"2024-05-27T14:31:37.637Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949465f0d3c058a33ba","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.637Z","user_id":"auth0|66549949465f0d3c058a33ba","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 314.857833ms + duration: 296.985917ms - id: 43 request: proto: HTTP/1.1 @@ -1568,7 +1568,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fcd5cb856cecf246b + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 method: GET response: proto: HTTP/2.0 @@ -1578,13 +1578,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.612Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fcd5cb856cecf246b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.612Z","user_id":"auth0|6654503fcd5cb856cecf246b","username":"testaccorganizationmember11"}' + body: '{"created_at":"2024-05-27T14:31:38.405Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994a3d0a9374995dbe52","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:38.405Z","user_id":"auth0|6654994a3d0a9374995dbe52","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 674.346375ms + duration: 323.812125ms - id: 44 request: proto: HTTP/1.1 @@ -1604,7 +1604,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665450453a478dce1bb55032 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -1614,13 +1614,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:05.892Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665450453a478dce1bb55032","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:05.893Z","user_id":"auth0|665450453a478dce1bb55032","username":"testaccorganizationmember22"}' + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 344.289667ms + duration: 301.877792ms - id: 45 request: proto: HTTP/1.1 @@ -1640,7 +1640,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1650,13 +1650,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 335.035208ms + duration: 387.233333ms - id: 46 request: proto: HTTP/1.1 @@ -1676,7 +1676,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1684,15 +1684,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.776530834s + duration: 302.148042ms - id: 47 request: proto: HTTP/1.1 @@ -1712,7 +1712,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1722,13 +1722,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:37:36.357Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545460f4306b7b1fa333bf","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:36.357Z","user_id":"auth0|66545460f4306b7b1fa333bf","username":"testaccorganizationmember11"}' + body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.502792ms + duration: 294.562917ms - id: 48 request: proto: HTTP/1.1 @@ -1748,7 +1748,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1756,15 +1756,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|665450453a478dce1bb55032","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 324.370334ms + duration: 311.953417ms - id: 49 request: proto: HTTP/1.1 @@ -1784,7 +1784,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -1794,13 +1794,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545461e957844eac7ce91b","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|66545460f4306b7b1fa333bf","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":50,"total":2}' + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.175792ms + duration: 275.636ms - id: 50 request: proto: HTTP/1.1 @@ -1820,7 +1820,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545461e957844eac7ce91b + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1830,13 +1830,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:37:37.080Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545461e957844eac7ce91b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:37:37.080Z","user_id":"auth0|66545461e957844eac7ce91b","username":"testaccorganizationmember22"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.785584ms + duration: 290.306458ms - id: 51 request: proto: HTTP/1.1 @@ -1856,7 +1856,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1866,13 +1866,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 313.883417ms + duration: 277.981291ms - id: 52 request: proto: HTTP/1.1 @@ -1892,7 +1892,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1900,15 +1900,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_G2o1nV1mHGSHCqk5","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.244416ms + duration: 306.450708ms - id: 53 request: proto: HTTP/1.1 @@ -1928,7 +1928,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1938,13 +1938,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.665084ms + duration: 295.386833ms - id: 54 request: proto: HTTP/1.1 @@ -1964,7 +1964,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=&include_fields=true&include_totals=true&per_page=50&take=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba method: GET response: proto: HTTP/2.0 @@ -1974,13 +1974,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545461e957844eac7ce91b"},{"user_id":"auth0|66545460f4306b7b1fa333bf"}],"next":"MjAyNC0wNS0yNyAwOTozNzo0OC4zODYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi"}' + body: '{"created_at":"2024-05-27T14:31:37.637Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949465f0d3c058a33ba","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.637Z","user_id":"auth0|66549949465f0d3c058a33ba","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.632458ms + duration: 295.467833ms - id: 55 request: proto: HTTP/1.1 @@ -2000,7 +2000,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozNzo0OC4zODYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi&include_fields=true&include_totals=true&per_page=50&take=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2008,88 +2008,88 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.417417ms + duration: 302.587166ms - id: 56 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|665450453a478dce1bb55032"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-05-27T14:31:38.405Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994a3d0a9374995dbe52","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:38.405Z","user_id":"auth0|6654994a3d0a9374995dbe52","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 316.134125ms - - id: 50 + status: 200 OK + code: 200 + duration: 292.5835ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|6654503fcd5cb856cecf246b"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 14 uncompressed: false - body: "" + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 316.06275ms - - id: 51 + status: 200 OK + code: 200 + duration: 317.952458ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2108,7 +2108,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2116,16 +2116,16 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.797334ms - - id: 52 + duration: 318.22ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2144,7 +2144,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -2154,14 +2154,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.225792ms - - id: 53 + duration: 314.618667ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2180,7 +2180,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -2188,16 +2188,16 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.723042ms - - id: 54 + duration: 266.741ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -2216,7 +2216,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fcd5cb856cecf246b + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2226,14 +2226,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.612Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fcd5cb856cecf246b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.612Z","user_id":"auth0|6654503fcd5cb856cecf246b","username":"testaccorganizationmember11"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.669458ms - - id: 55 + duration: 296.71375ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -2252,7 +2252,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665450453a478dce1bb55032 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2262,14 +2262,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:05.892Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665450453a478dce1bb55032","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:05.893Z","user_id":"auth0|665450453a478dce1bb55032","username":"testaccorganizationmember22"}' + body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 275.795125ms - - id: 56 + duration: 330.170542ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -2288,7 +2288,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2296,88 +2296,88 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.361709ms - - id: 57 + duration: 303.807292ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 47 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"members":["auth0|6654994a3d0a9374995dbe52"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 310.449584ms - - id: 58 + status: 204 No Content + code: 204 + duration: 477.656458ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 47 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"members":["auth0|66549949465f0d3c058a33ba"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/enabled_connections?include_totals=true&page=0&per_page=100 - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 287.202083ms - - id: 59 + status: 204 No Content + code: 204 + duration: 298.335416ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -2396,7 +2396,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -2404,16 +2404,16 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.473083ms - - id: 60 + duration: 285.495541ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -2432,7 +2432,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fcd5cb856cecf246b + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2442,14 +2442,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.612Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fcd5cb856cecf246b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.612Z","user_id":"auth0|6654503fcd5cb856cecf246b","username":"testaccorganizationmember11"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.129875ms - - id: 61 + duration: 380.39575ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -2468,7 +2468,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665450453a478dce1bb55032 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2476,16 +2476,16 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T09:20:05.892Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665450453a478dce1bb55032","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:05.893Z","user_id":"auth0|665450453a478dce1bb55032","username":"testaccorganizationmember22"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 336.044042ms - - id: 62 + duration: 471.634333ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -2504,7 +2504,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba method: GET response: proto: HTTP/2.0 @@ -2514,14 +2514,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"created_at":"2024-05-27T14:31:37.637Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949465f0d3c058a33ba","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.637Z","user_id":"auth0|66549949465f0d3c058a33ba","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.592875ms - - id: 63 + duration: 338.773875ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -2540,7 +2540,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 method: GET response: proto: HTTP/2.0 @@ -2550,14 +2550,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"created_at":"2024-05-27T14:31:38.405Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994a3d0a9374995dbe52","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:38.405Z","user_id":"auth0|6654994a3d0a9374995dbe52","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.017542ms - - id: 64 + duration: 347.181625ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -2576,7 +2576,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -2586,14 +2586,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.048583ms - - id: 65 + duration: 353.858833ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -2612,7 +2612,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -2620,16 +2620,16 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 314.538084ms - - id: 66 + duration: 420.402166ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -2648,7 +2648,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fcd5cb856cecf246b + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2658,14 +2658,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.612Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fcd5cb856cecf246b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.612Z","user_id":"auth0|6654503fcd5cb856cecf246b","username":"testaccorganizationmember11"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 276.923542ms - - id: 67 + duration: 351.781208ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -2684,7 +2684,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665450453a478dce1bb55032 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2692,16 +2692,16 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T09:20:05.892Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665450453a478dce1bb55032","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:05.893Z","user_id":"auth0|665450453a478dce1bb55032","username":"testaccorganizationmember22"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 443.616792ms - - id: 68 + duration: 308.138083ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -2720,7 +2720,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba method: GET response: proto: HTTP/2.0 @@ -2730,14 +2730,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"created_at":"2024-05-27T14:31:37.637Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949465f0d3c058a33ba","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.637Z","user_id":"auth0|66549949465f0d3c058a33ba","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.857083ms - - id: 69 + duration: 304.992375ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -2756,7 +2756,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 method: GET response: proto: HTTP/2.0 @@ -2766,14 +2766,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"created_at":"2024-05-27T14:31:38.405Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994a3d0a9374995dbe52","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:38.405Z","user_id":"auth0|6654994a3d0a9374995dbe52","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 362.783792ms - - id: 70 + duration: 317.134333ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -2792,7 +2792,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -2802,14 +2802,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.05025ms - - id: 71 + duration: 302.10775ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -2828,7 +2828,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -2836,16 +2836,16 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.169375ms - - id: 72 + duration: 291.061917ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -2864,7 +2864,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fcd5cb856cecf246b + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2874,14 +2874,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.612Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fcd5cb856cecf246b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.612Z","user_id":"auth0|6654503fcd5cb856cecf246b","username":"testaccorganizationmember11"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 371.648916ms - - id: 73 + duration: 313.849083ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -2900,7 +2900,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665450453a478dce1bb55032 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2908,16 +2908,412 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T09:20:05.892Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665450453a478dce1bb55032","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:05.893Z","user_id":"auth0|665450453a478dce1bb55032","username":"testaccorganizationmember22"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 351.223959ms + - id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-05-27T14:31:37.637Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949465f0d3c058a33ba","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.637Z","user_id":"auth0|66549949465f0d3c058a33ba","username":"testaccorganizationmember11"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 894.300958ms + - id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-05-27T14:31:38.405Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994a3d0a9374995dbe52","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:38.405Z","user_id":"auth0|6654994a3d0a9374995dbe52","username":"testaccorganizationmember22"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 306.072167ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 306.74225ms + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 310.989042ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 279.995416ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 272.970084ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-05-27T14:31:37.637Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949465f0d3c058a33ba","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.637Z","user_id":"auth0|66549949465f0d3c058a33ba","username":"testaccorganizationmember11"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 273.051583ms + - id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-05-27T14:31:38.405Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994a3d0a9374995dbe52","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:38.405Z","user_id":"auth0|6654994a3d0a9374995dbe52","username":"testaccorganizationmember22"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 281.804709ms + - id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 283.616625ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 297.282042ms + - id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 80 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"members":["auth0|66549949465f0d3c058a33ba","auth0|6654994a3d0a9374995dbe52"]} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 812.292916ms - - id: 74 + status: 204 No Content + code: 204 + duration: 298.004583ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -2936,7 +3332,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2946,14 +3342,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 324.849ms - - id: 75 + duration: 302.921541ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -2972,7 +3368,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2988,44 +3384,44 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 331.386541ms - - id: 76 + duration: 313.715209ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 80 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|6654503fcd5cb856cecf246b","auth0|665450453a478dce1bb55032"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members - method: POST + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-05-27T14:31:37.637Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949465f0d3c058a33ba","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.637Z","user_id":"auth0|66549949465f0d3c058a33ba","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 352.861917ms - - id: 77 + status: 200 OK + code: 200 + duration: 302.280166ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -3044,7 +3440,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 method: GET response: proto: HTTP/2.0 @@ -3054,14 +3450,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450453a478dce1bb55032","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"created_at":"2024-05-27T14:31:38.405Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994a3d0a9374995dbe52","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:38.405Z","user_id":"auth0|6654994a3d0a9374995dbe52","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 355.370958ms - - id: 78 + duration: 291.234417ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -3080,7 +3476,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fcd5cb856cecf246b + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -3088,16 +3484,16 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 317.107333ms - - id: 86 + duration: 308.61025ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -3116,7 +3512,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460f4306b7b1fa333bf + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3126,14 +3522,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.612Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fcd5cb856cecf246b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.612Z","user_id":"auth0|6654503fcd5cb856cecf246b","username":"testaccorganizationmember11"}' + body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.696208ms - - id: 79 + duration: 315.091292ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -3152,7 +3548,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665450453a478dce1bb55032 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3160,16 +3556,16 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T09:20:05.892Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665450453a478dce1bb55032","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:05.893Z","user_id":"auth0|665450453a478dce1bb55032","username":"testaccorganizationmember22"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.178459ms - - id: 80 + duration: 281.608833ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -3188,7 +3584,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3198,14 +3594,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 314.481042ms - - id: 81 + duration: 326.264625ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -3224,7 +3620,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3232,16 +3628,16 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|665450453a478dce1bb55032","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 313.045416ms - - id: 82 + duration: 292.878334ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -3260,7 +3656,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -3268,16 +3664,16 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.007125ms - - id: 91 + duration: 385.354625ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -3296,7 +3692,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3306,14 +3702,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450453a478dce1bb55032","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.625792ms - - id: 83 + duration: 354.431209ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -3332,7 +3728,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3342,14 +3738,50 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 273.159458ms - - id: 84 + duration: 293.61475ms + - id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 337.474167ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -3368,7 +3800,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3378,14 +3810,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.968ms - - id: 85 + duration: 355.319083ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -3404,7 +3836,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -3414,14 +3846,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450453a478dce1bb55032","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.71775ms - - id: 86 + duration: 355.170333ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -3440,7 +3872,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3456,8 +3888,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.816459ms - - id: 96 + duration: 285.766208ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -3476,7 +3908,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3486,14 +3918,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.867ms - - id: 87 + duration: 285.844042ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -3512,7 +3944,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3522,14 +3954,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450453a478dce1bb55032","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 317.787083ms - - id: 88 + duration: 319.311875ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -3548,7 +3980,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3556,16 +3988,16 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.148084ms - - id: 89 + duration: 276.700542ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -3584,7 +4016,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba method: GET response: proto: HTTP/2.0 @@ -3594,14 +4026,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450453a478dce1bb55032","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"created_at":"2024-05-27T14:31:37.637Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949465f0d3c058a33ba","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.637Z","user_id":"auth0|66549949465f0d3c058a33ba","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.957833ms - - id: 90 + duration: 273.35225ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -3620,7 +4052,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fcd5cb856cecf246b + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 method: GET response: proto: HTTP/2.0 @@ -3628,16 +4060,16 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 - uncompressed: false - body: '{"members":[]}' + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-05-27T14:31:38.405Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994a3d0a9374995dbe52","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:38.405Z","user_id":"auth0|6654994a3d0a9374995dbe52","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 350.2755ms - - id: 101 + duration: 325.428458ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -3656,7 +4088,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460f4306b7b1fa333bf + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -3666,14 +4098,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.612Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fcd5cb856cecf246b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.612Z","user_id":"auth0|6654503fcd5cb856cecf246b","username":"testaccorganizationmember11"}' + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.825083ms - - id: 91 + duration: 285.846ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -3692,7 +4124,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665450453a478dce1bb55032 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3702,14 +4134,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:05.892Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665450453a478dce1bb55032","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:05.893Z","user_id":"auth0|665450453a478dce1bb55032","username":"testaccorganizationmember22"}' + body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 392.745083ms - - id: 92 + duration: 288.60275ms + - id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -3728,7 +4160,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3736,16 +4168,16 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 377.766584ms - - id: 93 + duration: 299.238125ms + - id: 116 request: proto: HTTP/1.1 proto_major: 1 @@ -3764,7 +4196,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3774,14 +4206,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450453a478dce1bb55032","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 349.512833ms - - id: 94 + duration: 305.3965ms + - id: 117 request: proto: HTTP/1.1 proto_major: 1 @@ -3800,7 +4232,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3816,8 +4248,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.4565ms - - id: 106 + duration: 311.122875ms + - id: 118 request: proto: HTTP/1.1 proto_major: 1 @@ -3836,7 +4268,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -3846,14 +4278,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450453a478dce1bb55032","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 328.388416ms - - id: 95 + duration: 470.72425ms + - id: 119 request: proto: HTTP/1.1 proto_major: 1 @@ -3872,7 +4304,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3882,14 +4314,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 331.430708ms - - id: 96 + duration: 486.479209ms + - id: 120 request: proto: HTTP/1.1 proto_major: 1 @@ -3908,7 +4340,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3918,14 +4350,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450453a478dce1bb55032","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 331.615583ms - - id: 97 + duration: 283.870459ms + - id: 121 request: proto: HTTP/1.1 proto_major: 1 @@ -3944,7 +4376,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3952,16 +4384,16 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 352.329917ms - - id: 98 + duration: 307.634166ms + - id: 122 request: proto: HTTP/1.1 proto_major: 1 @@ -3980,7 +4412,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3990,14 +4422,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450453a478dce1bb55032","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 353.000875ms - - id: 99 + duration: 327.165042ms + - id: 123 request: proto: HTTP/1.1 proto_major: 1 @@ -4016,7 +4448,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4032,8 +4464,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.701583ms - - id: 112 + duration: 308.65325ms + - id: 124 request: proto: HTTP/1.1 proto_major: 1 @@ -4052,7 +4484,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -4062,14 +4494,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 313.037584ms - - id: 100 + duration: 299.423542ms + - id: 125 request: proto: HTTP/1.1 proto_major: 1 @@ -4088,7 +4520,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4104,8 +4536,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.17675ms - - id: 101 + duration: 320.812833ms + - id: 126 request: proto: HTTP/1.1 proto_major: 1 @@ -4124,7 +4556,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4134,14 +4566,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450453a478dce1bb55032","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 320.605875ms - - id: 102 + duration: 314.849875ms + - id: 127 request: proto: HTTP/1.1 proto_major: 1 @@ -4160,7 +4592,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fcd5cb856cecf246b + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4176,8 +4608,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.29075ms - - id: 116 + duration: 303.831958ms + - id: 128 request: proto: HTTP/1.1 proto_major: 1 @@ -4196,7 +4628,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460f4306b7b1fa333bf + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba method: GET response: proto: HTTP/2.0 @@ -4206,14 +4638,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.612Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fcd5cb856cecf246b","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.612Z","user_id":"auth0|6654503fcd5cb856cecf246b","username":"testaccorganizationmember11"}' + body: '{"created_at":"2024-05-27T14:31:37.637Z","email":"testaccorganizationmember1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949465f0d3c058a33ba","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember1@auth0.com","nickname":"testaccorganizationmember1","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.637Z","user_id":"auth0|66549949465f0d3c058a33ba","username":"testaccorganizationmember11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.070583ms - - id: 103 + duration: 310.601541ms + - id: 129 request: proto: HTTP/1.1 proto_major: 1 @@ -4232,7 +4664,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665450453a478dce1bb55032 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 method: GET response: proto: HTTP/2.0 @@ -4242,14 +4674,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:05.892Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"665450453a478dce1bb55032","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:05.893Z","user_id":"auth0|665450453a478dce1bb55032","username":"testaccorganizationmember22"}' + body: '{"created_at":"2024-05-27T14:31:38.405Z","email":"testaccorganizationmember2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994a3d0a9374995dbe52","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember2@auth0.com","nickname":"testaccorganizationmember2","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:38.405Z","user_id":"auth0|6654994a3d0a9374995dbe52","username":"testaccorganizationmember22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.648125ms - - id: 104 + duration: 303.04925ms + - id: 130 request: proto: HTTP/1.1 proto_major: 1 @@ -4268,7 +4700,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -4278,14 +4710,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.819583ms - - id: 105 + duration: 329.01525ms + - id: 131 request: proto: HTTP/1.1 proto_major: 1 @@ -4304,7 +4736,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4314,14 +4746,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450453a478dce1bb55032","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 328.686042ms - - id: 106 + duration: 332.966125ms + - id: 132 request: proto: HTTP/1.1 proto_major: 1 @@ -4340,7 +4772,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4356,8 +4788,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 351.715875ms - - id: 121 + duration: 298.400167ms + - id: 133 request: proto: HTTP/1.1 proto_major: 1 @@ -4376,7 +4808,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?include_totals=true&per_page=50 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4386,14 +4818,50 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450453a478dce1bb55032","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.299542ms - - id: 107 + duration: 313.421208ms + - id: 134 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 311.072666ms + - id: 135 request: proto: HTTP/1.1 proto_major: 1 @@ -4412,7 +4880,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -4422,14 +4890,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_3aXIGudTFUk9eqy6","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' + body: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 317.25475ms - - id: 108 + duration: 273.873709ms + - id: 136 request: proto: HTTP/1.1 proto_major: 1 @@ -4448,7 +4916,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4458,14 +4926,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450453a478dce1bb55032","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 320.434541ms - - id: 109 + duration: 320.097542ms + - id: 137 request: proto: HTTP/1.1 proto_major: 1 @@ -4484,7 +4952,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4500,8 +4968,44 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.113458ms - - id: 110 + duration: 280.450667ms + - id: 138 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 308.554417ms + - id: 139 request: proto: HTTP/1.1 proto_major: 1 @@ -4520,7 +5024,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4530,14 +5034,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|665450453a478dce1bb55032","email":"testaccorganizationmember2@auth0.com","picture":"https://s.gravatar.com/avatar/d2b4354eb17fcfc80dd6b1c648b1b505?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember2@auth0.com"},{"user_id":"auth0|6654503fcd5cb856cecf246b","email":"testaccorganizationmember1@auth0.com","picture":"https://s.gravatar.com/avatar/a3ca1ab654eee614bf23d07037dc77c6?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmember1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.030375ms - - id: 111 + duration: 281.010417ms + - id: 140 request: proto: HTTP/1.1 proto_major: 1 @@ -4556,7 +5060,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G2o1nV1mHGSHCqk5/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoxNC42NzYwMDBVVEMsYXV0aDB8NjY1NDU0NjFlOTU3ODQ0ZWFjN2NlOTFi&include_fields=true&include_totals=true&per_page=50&take=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4572,8 +5076,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.369083ms - - id: 127 + duration: 280.442167ms + - id: 141 request: proto: HTTP/1.1 proto_major: 1 @@ -4585,14 +5089,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|665450453a478dce1bb55032"]} + {"members":["auth0|6654994a3d0a9374995dbe52"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members method: DELETE response: proto: HTTP/2.0 @@ -4608,8 +5112,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 303.010334ms - - id: 112 + duration: 290.687042ms + - id: 142 request: proto: HTTP/1.1 proto_major: 1 @@ -4621,14 +5125,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|6654503fcd5cb856cecf246b"]} + {"members":["auth0|66549949465f0d3c058a33ba"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members method: DELETE response: proto: HTTP/2.0 @@ -4644,8 +5148,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 314.389959ms - - id: 113 + duration: 303.479042ms + - id: 143 request: proto: HTTP/1.1 proto_major: 1 @@ -4657,14 +5161,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|6654503fcd5cb856cecf246b","auth0|665450453a478dce1bb55032"]} + {"members":["auth0|66549949465f0d3c058a33ba","auth0|6654994a3d0a9374995dbe52"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6/members + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW/members method: DELETE response: proto: HTTP/2.0 @@ -4680,8 +5184,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 307.937417ms - - id: 114 + duration: 302.519ms + - id: 144 request: proto: HTTP/1.1 proto_major: 1 @@ -4699,7 +5203,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: DELETE response: proto: HTTP/2.0 @@ -4715,8 +5219,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 302.474ms - - id: 115 + duration: 287.126792ms + - id: 145 request: proto: HTTP/1.1 proto_major: 1 @@ -4734,7 +5238,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C665450453a478dce1bb55032 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 method: DELETE response: proto: HTTP/2.0 @@ -4750,8 +5254,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 330.379292ms - - id: 116 + duration: 404.878208ms + - id: 146 request: proto: HTTP/1.1 proto_major: 1 @@ -4769,7 +5273,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fcd5cb856cecf246b + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba method: DELETE response: proto: HTTP/2.0 @@ -4785,4 +5289,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 332.127542ms + duration: 337.511792ms diff --git a/test/data/recordings/TestAccOrganizationMemberRole.yaml b/test/data/recordings/TestAccOrganizationMemberRole.yaml index c7a7fcab9..e4d37332f 100644 --- a/test/data/recordings/TestAccOrganizationMemberRole.yaml +++ b/test/data/recordings/TestAccOrganizationMemberRole.yaml @@ -30,13 +30,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 409.740541ms + duration: 339.060334ms - id: 1 request: proto: HTTP/1.1 @@ -56,7 +56,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_uBmw8cn9bU9KQvgl + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_GWm8CJva5enbit3B method: GET response: proto: HTTP/2.0 @@ -66,13 +66,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 334.864208ms + duration: 279.125792ms - id: 2 request: proto: HTTP/1.1 @@ -102,13 +102,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 336.520625ms + duration: 316.842791ms - id: 3 request: proto: HTTP/1.1 @@ -128,7 +128,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_pNrYI9seTLk9Rwkk + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_albRPhQIt544srYJ method: GET response: proto: HTTP/2.0 @@ -138,13 +138,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.884042ms + duration: 294.837708ms - id: 4 request: proto: HTTP/1.1 @@ -174,13 +174,13 @@ interactions: trailer: {} content_length: 605 uncompressed: false - body: '{"created_at":"2024-05-27T09:20:07.364Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654504774b4f6b24c122886","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:07.364Z","user_id":"auth0|6654504774b4f6b24c122886","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-05-27T14:31:44.194Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549950465f0d3c058a33c0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:44.194Z","user_id":"auth0|66549950465f0d3c058a33c0","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 423.834333ms + duration: 456.727292ms - id: 5 request: proto: HTTP/1.1 @@ -200,7 +200,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654504774b4f6b24c122886 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549950465f0d3c058a33c0 method: GET response: proto: HTTP/2.0 @@ -210,13 +210,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:07.364Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654504774b4f6b24c122886","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:07.364Z","user_id":"auth0|6654504774b4f6b24c122886","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-05-27T14:31:44.194Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549950465f0d3c058a33c0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:44.194Z","user_id":"auth0|66549950465f0d3c058a33c0","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 355.185ms + duration: 298.569917ms - id: 6 request: proto: HTTP/1.1 @@ -246,13 +246,13 @@ interactions: trailer: {} content_length: 124 uncompressed: false - body: '{"id":"org_G6AuPjyppqjsNjee","display_name":"testaccorganizationmemberrole","name":"some-org-testaccorganizationmemberrole"}' + body: '{"id":"org_jqEAv3I274ZGVdDD","display_name":"testaccorganizationmemberrole","name":"some-org-testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 342.749833ms + duration: 308.977583ms - id: 7 request: proto: HTTP/1.1 @@ -272,7 +272,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD method: GET response: proto: HTTP/2.0 @@ -282,13 +282,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_G6AuPjyppqjsNjee","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_jqEAv3I274ZGVdDD","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 334.4755ms + duration: 294.49825ms - id: 8 request: proto: HTTP/1.1 @@ -301,14 +301,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|6654504774b4f6b24c122886"]} + {"members":["auth0|66549950465f0d3c058a33c0"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members method: POST response: proto: HTTP/2.0 @@ -324,7 +324,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 327.388667ms + duration: 332.300916ms - id: 9 request: proto: HTTP/1.1 @@ -344,7 +344,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -354,85 +354,85 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654504774b4f6b24c122886","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|66549950465f0d3c058a33c0"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.270625ms + duration: 311.361667ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 35 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"roles":["rol_uBmw8cn9bU9KQvgl"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles - method: POST + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 14 uncompressed: false - body: "" + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 313.825834ms + status: 200 OK + code: 200 + duration: 349.662625ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 35 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"roles":["rol_GWm8CJva5enbit3B"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles?include_totals=true&page=0&per_page=100 - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"roles":[{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":1}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 308.665834ms + status: 204 No Content + code: 204 + duration: 348.286167ms - id: 12 request: proto: HTTP/1.1 @@ -452,7 +452,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_uBmw8cn9bU9KQvgl + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -462,13 +462,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 297.708292ms + duration: 323.967375ms - id: 13 request: proto: HTTP/1.1 @@ -488,7 +488,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_pNrYI9seTLk9Rwkk + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_GWm8CJva5enbit3B method: GET response: proto: HTTP/2.0 @@ -498,13 +498,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.311125ms + duration: 395.691416ms - id: 14 request: proto: HTTP/1.1 @@ -524,7 +524,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654504774b4f6b24c122886 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_albRPhQIt544srYJ method: GET response: proto: HTTP/2.0 @@ -534,13 +534,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:07.364Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654504774b4f6b24c122886","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:07.364Z","user_id":"auth0|6654504774b4f6b24c122886","username":"testaccorganizationmemberrole"}' + body: '{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.409208ms + duration: 295.367167ms - id: 15 request: proto: HTTP/1.1 @@ -560,7 +560,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549950465f0d3c058a33c0 method: GET response: proto: HTTP/2.0 @@ -570,13 +570,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_G6AuPjyppqjsNjee","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-05-27T14:31:44.194Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549950465f0d3c058a33c0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:44.194Z","user_id":"auth0|66549950465f0d3c058a33c0","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 289.261958ms + duration: 303.707167ms - id: 16 request: proto: HTTP/1.1 @@ -596,7 +596,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD method: GET response: proto: HTTP/2.0 @@ -606,13 +606,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654504774b4f6b24c122886","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"id":"org_jqEAv3I274ZGVdDD","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.273292ms + duration: 306.917166ms - id: 17 request: proto: HTTP/1.1 @@ -632,7 +632,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -642,13 +642,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|66549950465f0d3c058a33c0"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 320.882167ms + duration: 308.44975ms - id: 18 request: proto: HTTP/1.1 @@ -668,7 +668,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_uBmw8cn9bU9KQvgl + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -676,15 +676,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 274.92175ms + duration: 305.4045ms - id: 19 request: proto: HTTP/1.1 @@ -704,7 +704,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_pNrYI9seTLk9Rwkk + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -714,13 +714,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.832917ms + duration: 293.035709ms - id: 20 request: proto: HTTP/1.1 @@ -740,7 +740,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654504774b4f6b24c122886 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_GWm8CJva5enbit3B method: GET response: proto: HTTP/2.0 @@ -750,13 +750,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:07.364Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654504774b4f6b24c122886","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:07.364Z","user_id":"auth0|6654504774b4f6b24c122886","username":"testaccorganizationmemberrole"}' + body: '{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.5705ms + duration: 280.661334ms - id: 21 request: proto: HTTP/1.1 @@ -776,7 +776,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_albRPhQIt544srYJ method: GET response: proto: HTTP/2.0 @@ -786,13 +786,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_G6AuPjyppqjsNjee","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 316.160542ms + duration: 277.559542ms - id: 22 request: proto: HTTP/1.1 @@ -812,7 +812,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549950465f0d3c058a33c0 method: GET response: proto: HTTP/2.0 @@ -822,13 +822,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654504774b4f6b24c122886","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"created_at":"2024-05-27T14:31:44.194Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549950465f0d3c058a33c0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:44.194Z","user_id":"auth0|66549950465f0d3c058a33c0","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 318.113292ms + duration: 299.423792ms - id: 23 request: proto: HTTP/1.1 @@ -848,7 +848,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD method: GET response: proto: HTTP/2.0 @@ -858,49 +858,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":1}' + body: '{"id":"org_jqEAv3I274ZGVdDD","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 317.36675ms + duration: 298.817375ms - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 35 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"roles":["rol_pNrYI9seTLk9Rwkk"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles - method: POST + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|66549950465f0d3c058a33c0"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 324.288708ms + status: 200 OK + code: 200 + duration: 311.293458ms - id: 25 request: proto: HTTP/1.1 @@ -920,7 +920,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -928,15 +928,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"roles":[{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.604708ms + duration: 296.915792ms - id: 26 request: proto: HTTP/1.1 @@ -956,7 +956,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_uBmw8cn9bU9KQvgl + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -966,49 +966,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 796.069833ms + duration: 332.268667ms - id: 27 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 35 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"roles":["rol_albRPhQIt544srYJ"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_pNrYI9seTLk9Rwkk - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 301.225667ms + status: 204 No Content + code: 204 + duration: 310.954209ms - id: 28 request: proto: HTTP/1.1 @@ -1028,7 +1028,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654504774b4f6b24c122886 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1038,13 +1038,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:07.364Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654504774b4f6b24c122886","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:07.364Z","user_id":"auth0|6654504774b4f6b24c122886","username":"testaccorganizationmemberrole"}' + body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 587.460583ms + duration: 327.262875ms - id: 29 request: proto: HTTP/1.1 @@ -1064,7 +1064,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_GWm8CJva5enbit3B method: GET response: proto: HTTP/2.0 @@ -1074,13 +1074,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_G6AuPjyppqjsNjee","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 345.58ms + duration: 305.193042ms - id: 30 request: proto: HTTP/1.1 @@ -1100,7 +1100,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_albRPhQIt544srYJ method: GET response: proto: HTTP/2.0 @@ -1110,13 +1110,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654504774b4f6b24c122886","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 335.373583ms + duration: 311.820083ms - id: 31 request: proto: HTTP/1.1 @@ -1136,7 +1136,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549950465f0d3c058a33c0 method: GET response: proto: HTTP/2.0 @@ -1146,13 +1146,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"created_at":"2024-05-27T14:31:44.194Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549950465f0d3c058a33c0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:44.194Z","user_id":"auth0|66549950465f0d3c058a33c0","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.776631834s + duration: 312.641834ms - id: 32 request: proto: HTTP/1.1 @@ -1172,7 +1172,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD method: GET response: proto: HTTP/2.0 @@ -1182,13 +1182,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"id":"org_jqEAv3I274ZGVdDD","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 346.661417ms + duration: 392.441417ms - id: 33 request: proto: HTTP/1.1 @@ -1208,7 +1208,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_uBmw8cn9bU9KQvgl + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1218,13 +1218,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"members":[{"user_id":"auth0|66549950465f0d3c058a33c0"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.183416ms + duration: 289.223542ms - id: 34 request: proto: HTTP/1.1 @@ -1244,7 +1244,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1252,15 +1252,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"roles":[{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.849917ms + duration: 290.731708ms - id: 35 request: proto: HTTP/1.1 @@ -1280,7 +1280,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1290,13 +1290,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 319.078708ms + duration: 343.990958ms - id: 36 request: proto: HTTP/1.1 @@ -1316,7 +1316,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_pNrYI9seTLk9Rwkk + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1326,13 +1326,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.293958ms + duration: 295.936542ms - id: 37 request: proto: HTTP/1.1 @@ -1352,7 +1352,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654504774b4f6b24c122886 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1362,13 +1362,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:07.364Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654504774b4f6b24c122886","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:07.364Z","user_id":"auth0|6654504774b4f6b24c122886","username":"testaccorganizationmemberrole"}' + body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 270.954375ms + duration: 406.04325ms - id: 38 request: proto: HTTP/1.1 @@ -1388,7 +1388,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1398,13 +1398,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_G6AuPjyppqjsNjee","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 297.749125ms + duration: 409.578958ms - id: 39 request: proto: HTTP/1.1 @@ -1424,7 +1424,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_GWm8CJva5enbit3B method: GET response: proto: HTTP/2.0 @@ -1434,85 +1434,85 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654504774b4f6b24c122886","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 312.159459ms + duration: 420.659584ms - id: 40 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 35 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"roles":["rol_pNrYI9seTLk9Rwkk"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_albRPhQIt544srYJ + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 295.651542ms + status: 200 OK + code: 200 + duration: 337.320959ms - id: 41 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 35 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"roles":["rol_uBmw8cn9bU9KQvgl"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549950465f0d3c058a33c0 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-05-27T14:31:44.194Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549950465f0d3c058a33c0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:44.194Z","user_id":"auth0|66549950465f0d3c058a33c0","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 294.299209ms + status: 200 OK + code: 200 + duration: 325.909458ms - id: 42 request: proto: HTTP/1.1 @@ -1532,7 +1532,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_uBmw8cn9bU9KQvgl + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD method: GET response: proto: HTTP/2.0 @@ -1542,13 +1542,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"org_jqEAv3I274ZGVdDD","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.320916ms + duration: 331.751541ms - id: 43 request: proto: HTTP/1.1 @@ -1568,7 +1568,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_pNrYI9seTLk9Rwkk + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1578,13 +1578,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"members":[{"user_id":"auth0|66549950465f0d3c058a33c0"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.0205ms + duration: 350.699084ms - id: 44 request: proto: HTTP/1.1 @@ -1604,7 +1604,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654504774b4f6b24c122886 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1612,87 +1612,87 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T09:20:07.364Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654504774b4f6b24c122886","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:07.364Z","user_id":"auth0|6654504774b4f6b24c122886","username":"testaccorganizationmemberrole"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.809084ms + duration: 355.674208ms - id: 45 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 35 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"roles":["rol_albRPhQIt544srYJ"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_G6AuPjyppqjsNjee","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 284.0145ms + status: 204 No Content + code: 204 + duration: 280.724084ms - id: 46 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 35 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"roles":["rol_GWm8CJva5enbit3B"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members?include_totals=true&page=0&per_page=100 - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|6654504774b4f6b24c122886","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":100,"total":1}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 295.245833ms + status: 204 No Content + code: 204 + duration: 309.808958ms - id: 47 request: proto: HTTP/1.1 @@ -1712,7 +1712,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_GWm8CJva5enbit3B method: GET response: proto: HTTP/2.0 @@ -1720,15 +1720,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 - uncompressed: false - body: '{"roles":[],"start":0,"limit":100,"total":0}' + content_length: -1 + uncompressed: true + body: '{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.12825ms + duration: 315.476375ms - id: 48 request: proto: HTTP/1.1 @@ -1748,7 +1748,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_uBmw8cn9bU9KQvgl + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_albRPhQIt544srYJ method: GET response: proto: HTTP/2.0 @@ -1758,13 +1758,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 273.626125ms + duration: 357.965375ms - id: 49 request: proto: HTTP/1.1 @@ -1784,7 +1784,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_pNrYI9seTLk9Rwkk + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549950465f0d3c058a33c0 method: GET response: proto: HTTP/2.0 @@ -1794,13 +1794,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"created_at":"2024-05-27T14:31:44.194Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549950465f0d3c058a33c0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:44.194Z","user_id":"auth0|66549950465f0d3c058a33c0","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 342.718458ms + duration: 314.3465ms - id: 50 request: proto: HTTP/1.1 @@ -1820,7 +1820,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654504774b4f6b24c122886 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD method: GET response: proto: HTTP/2.0 @@ -1830,13 +1830,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:07.364Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654504774b4f6b24c122886","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:07.364Z","user_id":"auth0|6654504774b4f6b24c122886","username":"testaccorganizationmemberrole"}' + body: '{"id":"org_jqEAv3I274ZGVdDD","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.894584ms + duration: 303.336084ms - id: 51 request: proto: HTTP/1.1 @@ -1856,7 +1856,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1866,13 +1866,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_G6AuPjyppqjsNjee","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"members":[{"user_id":"auth0|66549950465f0d3c058a33c0"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 482.774041ms + duration: 307.951708ms - id: 52 request: proto: HTTP/1.1 @@ -1892,7 +1892,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1900,15 +1900,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|6654504774b4f6b24c122886","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":100,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 358.734584ms + duration: 305.0415ms - id: 53 request: proto: HTTP/1.1 @@ -1928,7 +1928,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1944,7 +1944,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 321.358375ms + duration: 290.525875ms - id: 54 request: proto: HTTP/1.1 @@ -1964,7 +1964,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_uBmw8cn9bU9KQvgl + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_GWm8CJva5enbit3B method: GET response: proto: HTTP/2.0 @@ -1974,13 +1974,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 272.529292ms + duration: 308.883291ms - id: 55 request: proto: HTTP/1.1 @@ -2000,7 +2000,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_pNrYI9seTLk9Rwkk + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_albRPhQIt544srYJ method: GET response: proto: HTTP/2.0 @@ -2010,13 +2010,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.699041ms + duration: 294.476959ms - id: 56 request: proto: HTTP/1.1 @@ -2036,7 +2036,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654504774b4f6b24c122886 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549950465f0d3c058a33c0 method: GET response: proto: HTTP/2.0 @@ -2046,13 +2046,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:07.364Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654504774b4f6b24c122886","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:07.364Z","user_id":"auth0|6654504774b4f6b24c122886","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-05-27T14:31:44.194Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549950465f0d3c058a33c0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:44.194Z","user_id":"auth0|66549950465f0d3c058a33c0","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 313.463542ms + duration: 352.515625ms - id: 57 request: proto: HTTP/1.1 @@ -2072,7 +2072,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD method: GET response: proto: HTTP/2.0 @@ -2082,13 +2082,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_G6AuPjyppqjsNjee","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_jqEAv3I274ZGVdDD","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.218125ms + duration: 297.598334ms - id: 58 request: proto: HTTP/1.1 @@ -2108,7 +2108,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2118,13 +2118,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654504774b4f6b24c122886","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|66549950465f0d3c058a33c0"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.537125ms + duration: 314.682042ms - id: 59 request: proto: HTTP/1.1 @@ -2144,7 +2144,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2152,15 +2152,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 14 uncompressed: false - body: '{"roles":[],"start":0,"limit":100,"total":0}' + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.477292ms + duration: 306.551084ms - id: 60 request: proto: HTTP/1.1 @@ -2180,7 +2180,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_uBmw8cn9bU9KQvgl + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2188,15 +2188,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null}' + content_length: 44 + uncompressed: false + body: '{"roles":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.748375ms + duration: 300.098917ms - id: 61 request: proto: HTTP/1.1 @@ -2216,7 +2216,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_pNrYI9seTLk9Rwkk + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_GWm8CJva5enbit3B method: GET response: proto: HTTP/2.0 @@ -2226,13 +2226,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.655375ms + duration: 306.114459ms - id: 62 request: proto: HTTP/1.1 @@ -2252,7 +2252,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654504774b4f6b24c122886 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_albRPhQIt544srYJ method: GET response: proto: HTTP/2.0 @@ -2262,13 +2262,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:07.364Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654504774b4f6b24c122886","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:07.364Z","user_id":"auth0|6654504774b4f6b24c122886","username":"testaccorganizationmemberrole"}' + body: '{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.68625ms + duration: 274.611333ms - id: 63 request: proto: HTTP/1.1 @@ -2288,7 +2288,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549950465f0d3c058a33c0 method: GET response: proto: HTTP/2.0 @@ -2298,13 +2298,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_G6AuPjyppqjsNjee","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-05-27T14:31:44.194Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549950465f0d3c058a33c0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:44.194Z","user_id":"auth0|66549950465f0d3c058a33c0","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.461042ms + duration: 307.294625ms - id: 64 request: proto: HTTP/1.1 @@ -2324,7 +2324,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD method: GET response: proto: HTTP/2.0 @@ -2334,13 +2334,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654504774b4f6b24c122886","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"id":"org_jqEAv3I274ZGVdDD","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.299459ms + duration: 323.858417ms - id: 65 request: proto: HTTP/1.1 @@ -2360,7 +2360,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2368,51 +2368,51 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 - uncompressed: false - body: '{"roles":[],"start":0,"limit":100,"total":0}' + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|66549950465f0d3c058a33c0"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 297.205709ms + duration: 326.989042ms - id: 66 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 58 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"roles":["rol_pNrYI9seTLk9Rwkk","rol_uBmw8cn9bU9KQvgl"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles - method: POST + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 14 uncompressed: false - body: "" + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 324.637542ms + status: 200 OK + code: 200 + duration: 307.860459ms - id: 67 request: proto: HTTP/1.1 @@ -2432,7 +2432,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2440,15 +2440,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"roles":[{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + content_length: 44 + uncompressed: false + body: '{"roles":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.873625ms + duration: 335.175583ms - id: 68 request: proto: HTTP/1.1 @@ -2468,7 +2468,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_uBmw8cn9bU9KQvgl + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_GWm8CJva5enbit3B method: GET response: proto: HTTP/2.0 @@ -2478,13 +2478,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.588ms + duration: 334.192542ms - id: 69 request: proto: HTTP/1.1 @@ -2504,7 +2504,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_pNrYI9seTLk9Rwkk + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_albRPhQIt544srYJ method: GET response: proto: HTTP/2.0 @@ -2514,13 +2514,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.589083ms + duration: 282.16525ms - id: 70 request: proto: HTTP/1.1 @@ -2540,7 +2540,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654504774b4f6b24c122886 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549950465f0d3c058a33c0 method: GET response: proto: HTTP/2.0 @@ -2550,13 +2550,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:07.364Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654504774b4f6b24c122886","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:07.364Z","user_id":"auth0|6654504774b4f6b24c122886","username":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-05-27T14:31:44.194Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549950465f0d3c058a33c0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:44.194Z","user_id":"auth0|66549950465f0d3c058a33c0","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.788125ms + duration: 276.755792ms - id: 71 request: proto: HTTP/1.1 @@ -2576,7 +2576,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD method: GET response: proto: HTTP/2.0 @@ -2586,13 +2586,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_G6AuPjyppqjsNjee","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"org_jqEAv3I274ZGVdDD","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.61075ms + duration: 275.783333ms - id: 72 request: proto: HTTP/1.1 @@ -2612,7 +2612,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2622,13 +2622,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654504774b4f6b24c122886","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|66549950465f0d3c058a33c0"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.1965ms + duration: 616.497125ms - id: 73 request: proto: HTTP/1.1 @@ -2648,7 +2648,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2656,15 +2656,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"roles":[{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 314.267875ms + duration: 358.3155ms - id: 74 request: proto: HTTP/1.1 @@ -2684,7 +2684,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2692,51 +2692,51 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"roles":[{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + content_length: 44 + uncompressed: false + body: '{"roles":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.021791ms + duration: 383.493ms - id: 75 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 58 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"roles":["rol_albRPhQIt544srYJ","rol_GWm8CJva5enbit3B"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles?include_totals=true&page=0&per_page=100 - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"roles":[{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 317.002ms + status: 204 No Content + code: 204 + duration: 351.603166ms - id: 76 request: proto: HTTP/1.1 @@ -2756,7 +2756,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_uBmw8cn9bU9KQvgl + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2766,13 +2766,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.671958ms + duration: 338.235917ms - id: 77 request: proto: HTTP/1.1 @@ -2792,7 +2792,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_pNrYI9seTLk9Rwkk + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_GWm8CJva5enbit3B method: GET response: proto: HTTP/2.0 @@ -2802,13 +2802,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.004583ms + duration: 430.752458ms - id: 78 request: proto: HTTP/1.1 @@ -2828,7 +2828,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654504774b4f6b24c122886 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_albRPhQIt544srYJ method: GET response: proto: HTTP/2.0 @@ -2838,13 +2838,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:07.364Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654504774b4f6b24c122886","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:07.364Z","user_id":"auth0|6654504774b4f6b24c122886","username":"testaccorganizationmemberrole"}' + body: '{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 349.366333ms + duration: 352.603292ms - id: 79 request: proto: HTTP/1.1 @@ -2864,7 +2864,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549950465f0d3c058a33c0 method: GET response: proto: HTTP/2.0 @@ -2874,13 +2874,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_G6AuPjyppqjsNjee","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"created_at":"2024-05-27T14:31:44.194Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549950465f0d3c058a33c0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:44.194Z","user_id":"auth0|66549950465f0d3c058a33c0","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 377.618958ms + duration: 284.296167ms - id: 80 request: proto: HTTP/1.1 @@ -2900,7 +2900,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD method: GET response: proto: HTTP/2.0 @@ -2910,13 +2910,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654504774b4f6b24c122886","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"id":"org_jqEAv3I274ZGVdDD","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 349.622125ms + duration: 299.733167ms - id: 81 request: proto: HTTP/1.1 @@ -2936,7 +2936,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2946,13 +2946,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|66549950465f0d3c058a33c0"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 328.314916ms + duration: 312.760208ms - id: 82 request: proto: HTTP/1.1 @@ -2972,7 +2972,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2980,15 +2980,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"roles":[{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 331.661583ms + duration: 310.857542ms - id: 83 request: proto: HTTP/1.1 @@ -3008,7 +3008,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3018,13 +3018,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 344.058708ms + duration: 299.067292ms - id: 84 request: proto: HTTP/1.1 @@ -3044,7 +3044,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_uBmw8cn9bU9KQvgl + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3054,13 +3054,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null}' + body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 352.620791ms + duration: 352.972958ms - id: 85 request: proto: HTTP/1.1 @@ -3080,7 +3080,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_pNrYI9seTLk9Rwkk + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3090,13 +3090,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}' + body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.61425ms + duration: 314.790708ms - id: 86 request: proto: HTTP/1.1 @@ -3116,7 +3116,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654504774b4f6b24c122886 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_GWm8CJva5enbit3B method: GET response: proto: HTTP/2.0 @@ -3126,13 +3126,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:07.364Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654504774b4f6b24c122886","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:07.364Z","user_id":"auth0|6654504774b4f6b24c122886","username":"testaccorganizationmemberrole"}' + body: '{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.851708ms + duration: 606.064875ms - id: 87 request: proto: HTTP/1.1 @@ -3152,7 +3152,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_albRPhQIt544srYJ method: GET response: proto: HTTP/2.0 @@ -3162,13 +3162,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_G6AuPjyppqjsNjee","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + body: '{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 275.971625ms + duration: 295.155584ms - id: 88 request: proto: HTTP/1.1 @@ -3188,7 +3188,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549950465f0d3c058a33c0 method: GET response: proto: HTTP/2.0 @@ -3198,13 +3198,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654504774b4f6b24c122886","email":"testaccorganizationmemberrole@auth0.com","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberrole@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"created_at":"2024-05-27T14:31:44.194Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549950465f0d3c058a33c0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:44.194Z","user_id":"auth0|66549950465f0d3c058a33c0","username":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.609625ms + duration: 412.91225ms - id: 89 request: proto: HTTP/1.1 @@ -3224,7 +3224,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD method: GET response: proto: HTTP/2.0 @@ -3234,13 +3234,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"id":"org_jqEAv3I274ZGVdDD","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.190458ms + duration: 305.622542ms - id: 90 request: proto: HTTP/1.1 @@ -3260,7 +3260,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3270,13 +3270,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|66549950465f0d3c058a33c0"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.283167ms + duration: 319.059083ms - id: 91 request: proto: HTTP/1.1 @@ -3296,7 +3296,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3304,213 +3304,539 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"roles":[{"id":"rol_uBmw8cn9bU9KQvgl","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_pNrYI9seTLk9Rwkk","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 325.026958ms + duration: 279.714416ms - id: 92 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 35 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"roles":["rol_pNrYI9seTLk9Rwkk"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 296.262916ms + status: 200 OK + code: 200 + duration: 282.965042ms - id: 93 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 35 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"roles":["rol_uBmw8cn9bU9KQvgl"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 292.262875ms + status: 200 OK + code: 200 + duration: 316.04525ms - id: 94 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 58 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"roles":["rol_pNrYI9seTLk9Rwkk","rol_uBmw8cn9bU9KQvgl"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members/auth0%7C6654504774b4f6b24c122886/roles - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 310.205833ms + status: 200 OK + code: 200 + duration: 286.542166ms - id: 95 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|6654504774b4f6b24c122886"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee/members - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_GWm8CJva5enbit3B + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 310.541917ms + status: 200 OK + code: 200 + duration: 276.196708ms - id: 96 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" - body: "" + body: | + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_G6AuPjyppqjsNjee - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_albRPhQIt544srYJ + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 309.594542ms - - id: 97 + status: 200 OK + code: 200 + duration: 290.152417ms + - id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549950465f0d3c058a33c0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-05-27T14:31:44.194Z","email":"testaccorganizationmemberrole@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549950465f0d3c058a33c0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberrole@auth0.com","nickname":"testaccorganizationmemberrole","picture":"https://s.gravatar.com/avatar/2f292cb29015c947ee6a3701a1871127?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:44.194Z","user_id":"auth0|66549950465f0d3c058a33c0","username":"testaccorganizationmemberrole"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 467.094416ms + - id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_jqEAv3I274ZGVdDD","name":"some-org-testaccorganizationmemberrole","display_name":"testaccorganizationmemberrole"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 468.591959ms + - id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|66549950465f0d3c058a33c0"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 320.871792ms + - id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NS40NDUwMDBVVEMsYXV0aDB8NjY1NDk5NTA0NjVmMGQzYzA1OGEzM2Mw&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 283.008625ms + - id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 295.188583ms + - id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 320.950334ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"roles":[{"id":"rol_GWm8CJva5enbit3B","name":"Test Reader - testaccorganizationmemberrole","description":null},{"id":"rol_albRPhQIt544srYJ","name":"Test Writer - testaccorganizationmemberrole","description":null}],"start":0,"limit":100,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 316.697958ms + - id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 35 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"roles":["rol_albRPhQIt544srYJ"]} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 285.6055ms + - id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 35 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" + body: | + {"roles":["rol_GWm8CJva5enbit3B"]} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 295.95125ms + - id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 58 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"roles":["rol_albRPhQIt544srYJ","rol_GWm8CJva5enbit3B"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654504774b4f6b24c122886 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members/auth0%7C66549950465f0d3c058a33c0/roles method: DELETE response: proto: HTTP/2.0 @@ -3526,8 +3852,114 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 333.901584ms - - id: 98 + duration: 409.987958ms + - id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 47 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"members":["auth0|66549950465f0d3c058a33c0"]} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD/members + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 319.516542ms + - id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_jqEAv3I274ZGVdDD + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 307.463083ms + - id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549950465f0d3c058a33c0 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 470.380459ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -3546,7 +3978,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_pNrYI9seTLk9Rwkk + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_albRPhQIt544srYJ method: DELETE response: proto: HTTP/2.0 @@ -3562,8 +3994,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 329.383834ms - - id: 99 + duration: 345.341458ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -3582,7 +4014,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_uBmw8cn9bU9KQvgl + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_GWm8CJva5enbit3B method: DELETE response: proto: HTTP/2.0 @@ -3598,4 +4030,4 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.220458ms + duration: 344.755125ms diff --git a/test/data/recordings/TestAccOrganizationMemberRoles.yaml b/test/data/recordings/TestAccOrganizationMemberRoles.yaml index 81d2f4fca..534fcbb8e 100644 --- a/test/data/recordings/TestAccOrganizationMemberRoles.yaml +++ b/test/data/recordings/TestAccOrganizationMemberRoles.yaml @@ -30,13 +30,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 416.102583ms + duration: 309.99375ms - id: 1 request: proto: HTTP/1.1 @@ -56,7 +56,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_zMJ1XijjNGxLqpOj + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5IRGu9hQhsfJiRMh method: GET response: proto: HTTP/2.0 @@ -66,13 +66,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 334.795083ms + duration: 287.776625ms - id: 2 request: proto: HTTP/1.1 @@ -102,13 +102,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 337.548875ms + duration: 329.104792ms - id: 3 request: proto: HTTP/1.1 @@ -128,7 +128,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_2JGb4YpXnm5z5X1B + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7NH4y009gMs7Mjrk method: GET response: proto: HTTP/2.0 @@ -138,13 +138,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 350.464708ms + duration: 308.663709ms - id: 4 request: proto: HTTP/1.1 @@ -174,13 +174,13 @@ interactions: trailer: {} content_length: 609 uncompressed: false - body: '{"created_at":"2024-05-27T09:20:06.212Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654504674b4f6b24c122885","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:06.212Z","user_id":"auth0|6654504674b4f6b24c122885","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-05-27T14:40:53.312Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549b753a478dce1bb587a9","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:40:53.312Z","user_id":"auth0|66549b753a478dce1bb587a9","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 426.574542ms + duration: 445.170542ms - id: 5 request: proto: HTTP/1.1 @@ -200,7 +200,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654504674b4f6b24c122885 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549b753a478dce1bb587a9 method: GET response: proto: HTTP/2.0 @@ -210,13 +210,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:06.212Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654504674b4f6b24c122885","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:06.212Z","user_id":"auth0|6654504674b4f6b24c122885","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-05-27T14:40:53.312Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549b753a478dce1bb587a9","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:40:53.312Z","user_id":"auth0|66549b753a478dce1bb587a9","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.736833ms + duration: 319.121583ms - id: 6 request: proto: HTTP/1.1 @@ -246,13 +246,13 @@ interactions: trailer: {} content_length: 126 uncompressed: false - body: '{"id":"org_2Q101BKmlD8ZeYcr","display_name":"testaccorganizationmemberroles","name":"some-org-testaccorganizationmemberroles"}' + body: '{"id":"org_Av4ysp7eBTCrWjZY","display_name":"testaccorganizationmemberroles","name":"some-org-testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 380.354125ms + duration: 315.156ms - id: 7 request: proto: HTTP/1.1 @@ -272,7 +272,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY method: GET response: proto: HTTP/2.0 @@ -282,13 +282,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2Q101BKmlD8ZeYcr","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"org_Av4ysp7eBTCrWjZY","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 402.745166ms + duration: 313.634792ms - id: 8 request: proto: HTTP/1.1 @@ -301,14 +301,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|6654504674b4f6b24c122885"]} + {"members":["auth0|66549b753a478dce1bb587a9"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members method: POST response: proto: HTTP/2.0 @@ -324,7 +324,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 315.141292ms + duration: 321.004208ms - id: 9 request: proto: HTTP/1.1 @@ -344,7 +344,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -354,85 +354,85 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654504674b4f6b24c122885","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|66549b753a478dce1bb587a9"}],"next":"MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 326.193583ms + duration: 331.470458ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 35 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"roles":["rol_zMJ1XijjNGxLqpOj"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles - method: POST + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 14 uncompressed: false - body: "" + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 363.211042ms + status: 200 OK + code: 200 + duration: 308.727291ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 35 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"roles":["rol_5IRGu9hQhsfJiRMh"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles?include_totals=true&page=0&per_page=100 - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"roles":[{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 322.160583ms + status: 204 No Content + code: 204 + duration: 319.44825ms - id: 12 request: proto: HTTP/1.1 @@ -452,7 +452,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_zMJ1XijjNGxLqpOj + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -462,13 +462,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 320.751417ms + duration: 295.853208ms - id: 13 request: proto: HTTP/1.1 @@ -488,7 +488,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_2JGb4YpXnm5z5X1B + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5IRGu9hQhsfJiRMh method: GET response: proto: HTTP/2.0 @@ -498,13 +498,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.026917ms + duration: 337.199041ms - id: 14 request: proto: HTTP/1.1 @@ -524,7 +524,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654504674b4f6b24c122885 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7NH4y009gMs7Mjrk method: GET response: proto: HTTP/2.0 @@ -534,13 +534,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:06.212Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654504674b4f6b24c122885","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:06.212Z","user_id":"auth0|6654504674b4f6b24c122885","username":"testaccorganizationmemberroles"}' + body: '{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.531417ms + duration: 297.807041ms - id: 15 request: proto: HTTP/1.1 @@ -560,7 +560,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549b753a478dce1bb587a9 method: GET response: proto: HTTP/2.0 @@ -570,13 +570,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2Q101BKmlD8ZeYcr","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-05-27T14:40:53.312Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549b753a478dce1bb587a9","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:40:53.312Z","user_id":"auth0|66549b753a478dce1bb587a9","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.21425ms + duration: 377.106167ms - id: 16 request: proto: HTTP/1.1 @@ -596,7 +596,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY method: GET response: proto: HTTP/2.0 @@ -606,13 +606,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654504674b4f6b24c122885","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"id":"org_Av4ysp7eBTCrWjZY","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.678041ms + duration: 345.85375ms - id: 17 request: proto: HTTP/1.1 @@ -632,7 +632,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -642,13 +642,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|66549b753a478dce1bb587a9"}],"next":"MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 332.983334ms + duration: 301.513375ms - id: 18 request: proto: HTTP/1.1 @@ -668,7 +668,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_zMJ1XijjNGxLqpOj + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -676,15 +676,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.952209ms + duration: 318.358709ms - id: 19 request: proto: HTTP/1.1 @@ -704,7 +704,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_2JGb4YpXnm5z5X1B + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -714,13 +714,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.933333ms + duration: 350.973125ms - id: 20 request: proto: HTTP/1.1 @@ -740,7 +740,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654504674b4f6b24c122885 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5IRGu9hQhsfJiRMh method: GET response: proto: HTTP/2.0 @@ -750,13 +750,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:06.212Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654504674b4f6b24c122885","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:06.212Z","user_id":"auth0|6654504674b4f6b24c122885","username":"testaccorganizationmemberroles"}' + body: '{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.155583ms + duration: 426.411834ms - id: 21 request: proto: HTTP/1.1 @@ -776,7 +776,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7NH4y009gMs7Mjrk method: GET response: proto: HTTP/2.0 @@ -786,13 +786,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2Q101BKmlD8ZeYcr","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 328.891417ms + duration: 269.991917ms - id: 22 request: proto: HTTP/1.1 @@ -812,7 +812,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549b753a478dce1bb587a9 method: GET response: proto: HTTP/2.0 @@ -822,13 +822,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654504674b4f6b24c122885","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"created_at":"2024-05-27T14:40:53.312Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549b753a478dce1bb587a9","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:40:53.312Z","user_id":"auth0|66549b753a478dce1bb587a9","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 326.77525ms + duration: 316.085917ms - id: 23 request: proto: HTTP/1.1 @@ -848,7 +848,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY method: GET response: proto: HTTP/2.0 @@ -858,49 +858,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' + body: '{"id":"org_Av4ysp7eBTCrWjZY","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 452.398708ms + duration: 276.456208ms - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 35 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"roles":["rol_2JGb4YpXnm5z5X1B"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles - method: POST + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|66549b753a478dce1bb587a9"}],"next":"MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 331.200666ms + status: 200 OK + code: 200 + duration: 309.357834ms - id: 25 request: proto: HTTP/1.1 @@ -920,7 +920,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -928,15 +928,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"roles":[{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 313.051167ms + duration: 291.195083ms - id: 26 request: proto: HTTP/1.1 @@ -956,7 +956,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_zMJ1XijjNGxLqpOj + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -966,49 +966,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 352.738625ms + duration: 344.495125ms - id: 27 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 35 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"roles":["rol_7NH4y009gMs7Mjrk"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_2JGb4YpXnm5z5X1B - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 349.760709ms + status: 204 No Content + code: 204 + duration: 312.709291ms - id: 28 request: proto: HTTP/1.1 @@ -1028,7 +1028,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654504674b4f6b24c122885 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1038,13 +1038,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:06.212Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654504674b4f6b24c122885","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:06.212Z","user_id":"auth0|6654504674b4f6b24c122885","username":"testaccorganizationmemberroles"}' + body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 422.799666ms + duration: 303.601709ms - id: 29 request: proto: HTTP/1.1 @@ -1064,7 +1064,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5IRGu9hQhsfJiRMh method: GET response: proto: HTTP/2.0 @@ -1074,13 +1074,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2Q101BKmlD8ZeYcr","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.2955ms + duration: 274.261458ms - id: 30 request: proto: HTTP/1.1 @@ -1100,7 +1100,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7NH4y009gMs7Mjrk method: GET response: proto: HTTP/2.0 @@ -1110,13 +1110,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654504674b4f6b24c122885","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.914875ms + duration: 302.139416ms - id: 31 request: proto: HTTP/1.1 @@ -1136,7 +1136,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549b753a478dce1bb587a9 method: GET response: proto: HTTP/2.0 @@ -1146,13 +1146,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"created_at":"2024-05-27T14:40:53.312Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549b753a478dce1bb587a9","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:40:53.312Z","user_id":"auth0|66549b753a478dce1bb587a9","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 322.2515ms + duration: 302.150417ms - id: 32 request: proto: HTTP/1.1 @@ -1172,7 +1172,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_zMJ1XijjNGxLqpOj + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY method: GET response: proto: HTTP/2.0 @@ -1182,13 +1182,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"org_Av4ysp7eBTCrWjZY","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.14625ms + duration: 313.677833ms - id: 33 request: proto: HTTP/1.1 @@ -1208,7 +1208,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_2JGb4YpXnm5z5X1B + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1218,13 +1218,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"members":[{"user_id":"auth0|66549b753a478dce1bb587a9"}],"next":"MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.351333ms + duration: 323.111417ms - id: 34 request: proto: HTTP/1.1 @@ -1244,7 +1244,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654504674b4f6b24c122885 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1252,15 +1252,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T09:20:06.212Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654504674b4f6b24c122885","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:06.212Z","user_id":"auth0|6654504674b4f6b24c122885","username":"testaccorganizationmemberroles"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 270.43625ms + duration: 304.998792ms - id: 35 request: proto: HTTP/1.1 @@ -1280,7 +1280,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1290,13 +1290,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2Q101BKmlD8ZeYcr","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.578417ms + duration: 356.067917ms - id: 36 request: proto: HTTP/1.1 @@ -1316,7 +1316,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5IRGu9hQhsfJiRMh method: GET response: proto: HTTP/2.0 @@ -1326,13 +1326,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654504674b4f6b24c122885","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.695958ms + duration: 292.191208ms - id: 37 request: proto: HTTP/1.1 @@ -1352,7 +1352,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7NH4y009gMs7Mjrk method: GET response: proto: HTTP/2.0 @@ -1362,49 +1362,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.292208ms + duration: 311.322375ms - id: 38 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 35 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"roles":["rol_zMJ1XijjNGxLqpOj"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549b753a478dce1bb587a9 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-05-27T14:40:53.312Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549b753a478dce1bb587a9","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:40:53.312Z","user_id":"auth0|66549b753a478dce1bb587a9","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 325.882833ms + status: 200 OK + code: 200 + duration: 307.636958ms - id: 39 request: proto: HTTP/1.1 @@ -1424,7 +1424,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY method: GET response: proto: HTTP/2.0 @@ -1434,13 +1434,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' + body: '{"id":"org_Av4ysp7eBTCrWjZY","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 329.3765ms + duration: 375.061125ms - id: 40 request: proto: HTTP/1.1 @@ -1460,7 +1460,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_zMJ1XijjNGxLqpOj + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1470,13 +1470,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"members":[{"user_id":"auth0|66549b753a478dce1bb587a9"}],"next":"MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.87725ms + duration: 403.074875ms - id: 41 request: proto: HTTP/1.1 @@ -1496,7 +1496,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_2JGb4YpXnm5z5X1B + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1504,15 +1504,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.258417ms + duration: 320.982625ms - id: 42 request: proto: HTTP/1.1 @@ -1532,7 +1532,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654504674b4f6b24c122885 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1542,49 +1542,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:06.212Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654504674b4f6b24c122885","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:06.212Z","user_id":"auth0|6654504674b4f6b24c122885","username":"testaccorganizationmemberroles"}' + body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 276.428916ms + duration: 389.516042ms - id: 43 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 35 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"roles":["rol_5IRGu9hQhsfJiRMh"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_2Q101BKmlD8ZeYcr","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 278.356833ms + status: 204 No Content + code: 204 + duration: 329.562542ms - id: 44 request: proto: HTTP/1.1 @@ -1604,7 +1604,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1614,13 +1614,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654504674b4f6b24c122885","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 330.668334ms + duration: 381.0065ms - id: 45 request: proto: HTTP/1.1 @@ -1640,7 +1640,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5IRGu9hQhsfJiRMh method: GET response: proto: HTTP/2.0 @@ -1650,13 +1650,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' + body: '{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.783583ms + duration: 304.474584ms - id: 46 request: proto: HTTP/1.1 @@ -1676,7 +1676,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_zMJ1XijjNGxLqpOj + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7NH4y009gMs7Mjrk method: GET response: proto: HTTP/2.0 @@ -1686,13 +1686,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 318.430291ms + duration: 317.663917ms - id: 47 request: proto: HTTP/1.1 @@ -1712,7 +1712,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_2JGb4YpXnm5z5X1B + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549b753a478dce1bb587a9 method: GET response: proto: HTTP/2.0 @@ -1722,13 +1722,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"created_at":"2024-05-27T14:40:53.312Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549b753a478dce1bb587a9","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:40:53.312Z","user_id":"auth0|66549b753a478dce1bb587a9","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 463.30025ms + duration: 309.310333ms - id: 48 request: proto: HTTP/1.1 @@ -1748,7 +1748,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654504674b4f6b24c122885 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY method: GET response: proto: HTTP/2.0 @@ -1758,13 +1758,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:06.212Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654504674b4f6b24c122885","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:06.212Z","user_id":"auth0|6654504674b4f6b24c122885","username":"testaccorganizationmemberroles"}' + body: '{"id":"org_Av4ysp7eBTCrWjZY","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 334.752125ms + duration: 320.649583ms - id: 49 request: proto: HTTP/1.1 @@ -1784,7 +1784,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1794,13 +1794,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2Q101BKmlD8ZeYcr","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"members":[{"user_id":"auth0|66549b753a478dce1bb587a9"}],"next":"MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.775933458s + duration: 294.654458ms - id: 50 request: proto: HTTP/1.1 @@ -1820,7 +1820,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1828,15 +1828,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|6654504674b4f6b24c122885","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":100,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.0915ms + duration: 343.0195ms - id: 51 request: proto: HTTP/1.1 @@ -1856,7 +1856,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1866,49 +1866,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 329.654375ms + duration: 352.508458ms - id: 52 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 35 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"roles":["rol_2JGb4YpXnm5z5X1B"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5IRGu9hQhsfJiRMh + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 294.101958ms + status: 200 OK + code: 200 + duration: 334.044833ms - id: 53 request: proto: HTTP/1.1 @@ -1928,7 +1928,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7NH4y009gMs7Mjrk method: GET response: proto: HTTP/2.0 @@ -1936,15 +1936,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 - uncompressed: false - body: '{"roles":[],"start":0,"limit":100,"total":0}' + content_length: -1 + uncompressed: true + body: '{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.530958ms + duration: 342.008375ms - id: 54 request: proto: HTTP/1.1 @@ -1964,7 +1964,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_zMJ1XijjNGxLqpOj + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549b753a478dce1bb587a9 method: GET response: proto: HTTP/2.0 @@ -1974,13 +1974,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"created_at":"2024-05-27T14:40:53.312Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549b753a478dce1bb587a9","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:40:53.312Z","user_id":"auth0|66549b753a478dce1bb587a9","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.462917ms + duration: 346.732208ms - id: 55 request: proto: HTTP/1.1 @@ -2000,7 +2000,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_2JGb4YpXnm5z5X1B + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY method: GET response: proto: HTTP/2.0 @@ -2010,13 +2010,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"org_Av4ysp7eBTCrWjZY","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 268.131125ms + duration: 272.701625ms - id: 56 request: proto: HTTP/1.1 @@ -2036,7 +2036,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654504674b4f6b24c122885 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2046,13 +2046,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:06.212Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654504674b4f6b24c122885","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:06.212Z","user_id":"auth0|6654504674b4f6b24c122885","username":"testaccorganizationmemberroles"}' + body: '{"members":[{"user_id":"auth0|66549b753a478dce1bb587a9"}],"next":"MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.505416ms + duration: 466.30775ms - id: 57 request: proto: HTTP/1.1 @@ -2072,7 +2072,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2080,15 +2080,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_2Q101BKmlD8ZeYcr","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.783542ms + duration: 296.805208ms - id: 58 request: proto: HTTP/1.1 @@ -2108,7 +2108,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2118,49 +2118,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654504674b4f6b24c122885","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"roles":[{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 308.108542ms + duration: 280.184167ms - id: 59 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 35 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"roles":["rol_7NH4y009gMs7Mjrk"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles?include_totals=true&page=0&per_page=100 - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44 + content_length: 0 uncompressed: false - body: '{"roles":[],"start":0,"limit":100,"total":0}' + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 298.069583ms + status: 204 No Content + code: 204 + duration: 290.224792ms - id: 60 request: proto: HTTP/1.1 @@ -2180,7 +2180,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2196,7 +2196,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.447291ms + duration: 325.35375ms - id: 61 request: proto: HTTP/1.1 @@ -2216,7 +2216,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_zMJ1XijjNGxLqpOj + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5IRGu9hQhsfJiRMh method: GET response: proto: HTTP/2.0 @@ -2226,13 +2226,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.354625ms + duration: 285.308333ms - id: 62 request: proto: HTTP/1.1 @@ -2252,7 +2252,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_2JGb4YpXnm5z5X1B + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7NH4y009gMs7Mjrk method: GET response: proto: HTTP/2.0 @@ -2262,13 +2262,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.552541ms + duration: 299.900417ms - id: 63 request: proto: HTTP/1.1 @@ -2288,7 +2288,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654504674b4f6b24c122885 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549b753a478dce1bb587a9 method: GET response: proto: HTTP/2.0 @@ -2298,13 +2298,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:06.212Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654504674b4f6b24c122885","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:06.212Z","user_id":"auth0|6654504674b4f6b24c122885","username":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-05-27T14:40:53.312Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549b753a478dce1bb587a9","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:40:53.312Z","user_id":"auth0|66549b753a478dce1bb587a9","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 297.712417ms + duration: 649.85975ms - id: 64 request: proto: HTTP/1.1 @@ -2324,7 +2324,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY method: GET response: proto: HTTP/2.0 @@ -2334,13 +2334,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2Q101BKmlD8ZeYcr","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"org_Av4ysp7eBTCrWjZY","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.51325ms + duration: 292.335083ms - id: 65 request: proto: HTTP/1.1 @@ -2360,7 +2360,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2370,49 +2370,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654504674b4f6b24c122885","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|66549b753a478dce1bb587a9"}],"next":"MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 289.686292ms + duration: 292.1745ms - id: 66 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 35 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"roles":["rol_zMJ1XijjNGxLqpOj"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles - method: POST + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 14 uncompressed: false - body: "" + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 296.689542ms + status: 200 OK + code: 200 + duration: 306.112834ms - id: 67 request: proto: HTTP/1.1 @@ -2432,7 +2432,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2440,51 +2440,51 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"roles":[{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' + content_length: 44 + uncompressed: false + body: '{"roles":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.806834ms + duration: 315.472917ms - id: 68 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 35 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"roles":["rol_2JGb4YpXnm5z5X1B"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles - method: POST + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5IRGu9hQhsfJiRMh + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 379.812292ms + status: 200 OK + code: 200 + duration: 291.365ms - id: 69 request: proto: HTTP/1.1 @@ -2504,7 +2504,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2512,15 +2512,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"roles":[{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + content_length: 44 + uncompressed: false + body: '{"roles":[],"start":0,"limit":100,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 317.105459ms + duration: 300.885333ms - id: 70 request: proto: HTTP/1.1 @@ -2540,7 +2540,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_zMJ1XijjNGxLqpOj + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7NH4y009gMs7Mjrk method: GET response: proto: HTTP/2.0 @@ -2550,13 +2550,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.545833ms + duration: 288.684083ms - id: 71 request: proto: HTTP/1.1 @@ -2576,7 +2576,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_2JGb4YpXnm5z5X1B + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549b753a478dce1bb587a9 method: GET response: proto: HTTP/2.0 @@ -2586,13 +2586,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"created_at":"2024-05-27T14:40:53.312Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549b753a478dce1bb587a9","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:40:53.312Z","user_id":"auth0|66549b753a478dce1bb587a9","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.852166ms + duration: 315.209125ms - id: 72 request: proto: HTTP/1.1 @@ -2612,7 +2612,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654504674b4f6b24c122885 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY method: GET response: proto: HTTP/2.0 @@ -2622,13 +2622,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:06.212Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654504674b4f6b24c122885","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:06.212Z","user_id":"auth0|6654504674b4f6b24c122885","username":"testaccorganizationmemberroles"}' + body: '{"id":"org_Av4ysp7eBTCrWjZY","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.412917ms + duration: 276.3445ms - id: 73 request: proto: HTTP/1.1 @@ -2648,7 +2648,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2658,13 +2658,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2Q101BKmlD8ZeYcr","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"members":[{"user_id":"auth0|66549b753a478dce1bb587a9"}],"next":"MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.819ms + duration: 330.083792ms - id: 74 request: proto: HTTP/1.1 @@ -2684,7 +2684,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2692,51 +2692,51 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|6654504674b4f6b24c122885","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":100,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 320.243292ms + duration: 283.099209ms - id: 75 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 35 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"roles":["rol_5IRGu9hQhsfJiRMh"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles?include_totals=true&page=0&per_page=100 - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"roles":[{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 428.4095ms + status: 204 No Content + code: 204 + duration: 326.738417ms - id: 76 request: proto: HTTP/1.1 @@ -2756,7 +2756,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2766,49 +2766,49 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":1}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 329.728875ms + duration: 311.819708ms - id: 77 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 5 + content_length: 35 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - null + {"roles":["rol_7NH4y009gMs7Mjrk"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles?include_totals=true&page=0&per_page=100 - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"roles":[{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 338.189834ms + status: 204 No Content + code: 204 + duration: 328.477542ms - id: 78 request: proto: HTTP/1.1 @@ -2828,7 +2828,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_zMJ1XijjNGxLqpOj + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2838,13 +2838,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.837333ms + duration: 369.832542ms - id: 79 request: proto: HTTP/1.1 @@ -2864,7 +2864,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_2JGb4YpXnm5z5X1B + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5IRGu9hQhsfJiRMh method: GET response: proto: HTTP/2.0 @@ -2874,13 +2874,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.639458ms + duration: 341.864542ms - id: 80 request: proto: HTTP/1.1 @@ -2900,7 +2900,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654504674b4f6b24c122885 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7NH4y009gMs7Mjrk method: GET response: proto: HTTP/2.0 @@ -2910,13 +2910,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:06.212Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654504674b4f6b24c122885","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:06.212Z","user_id":"auth0|6654504674b4f6b24c122885","username":"testaccorganizationmemberroles"}' + body: '{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 296.820792ms + duration: 399.657541ms - id: 81 request: proto: HTTP/1.1 @@ -2936,7 +2936,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549b753a478dce1bb587a9 method: GET response: proto: HTTP/2.0 @@ -2946,13 +2946,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2Q101BKmlD8ZeYcr","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"created_at":"2024-05-27T14:40:53.312Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549b753a478dce1bb587a9","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:40:53.312Z","user_id":"auth0|66549b753a478dce1bb587a9","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 297.77525ms + duration: 316.085333ms - id: 82 request: proto: HTTP/1.1 @@ -2972,7 +2972,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY method: GET response: proto: HTTP/2.0 @@ -2982,13 +2982,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654504674b4f6b24c122885","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"id":"org_Av4ysp7eBTCrWjZY","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.900292ms + duration: 310.537167ms - id: 83 request: proto: HTTP/1.1 @@ -3008,7 +3008,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3018,13 +3018,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|66549b753a478dce1bb587a9"}],"next":"MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.79575ms + duration: 411.944416ms - id: 84 request: proto: HTTP/1.1 @@ -3044,7 +3044,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3052,15 +3052,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"roles":[{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.138583ms + duration: 473.083709ms - id: 85 request: proto: HTTP/1.1 @@ -3080,7 +3080,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3090,13 +3090,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.01175ms + duration: 362.453333ms - id: 86 request: proto: HTTP/1.1 @@ -3116,7 +3116,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_zMJ1XijjNGxLqpOj + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3126,13 +3126,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null}' + body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.238209ms + duration: 470.682ms - id: 87 request: proto: HTTP/1.1 @@ -3152,7 +3152,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_2JGb4YpXnm5z5X1B + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3162,13 +3162,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}' + body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 270.839375ms + duration: 353.693041ms - id: 88 request: proto: HTTP/1.1 @@ -3188,7 +3188,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654504674b4f6b24c122885 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5IRGu9hQhsfJiRMh method: GET response: proto: HTTP/2.0 @@ -3198,13 +3198,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:06.212Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654504674b4f6b24c122885","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:06.212Z","user_id":"auth0|6654504674b4f6b24c122885","username":"testaccorganizationmemberroles"}' + body: '{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 273.823833ms + duration: 417.825291ms - id: 89 request: proto: HTTP/1.1 @@ -3224,7 +3224,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7NH4y009gMs7Mjrk method: GET response: proto: HTTP/2.0 @@ -3234,13 +3234,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_2Q101BKmlD8ZeYcr","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + body: '{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 277.509208ms + duration: 302.912292ms - id: 90 request: proto: HTTP/1.1 @@ -3260,7 +3260,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549b753a478dce1bb587a9 method: GET response: proto: HTTP/2.0 @@ -3270,13 +3270,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654504674b4f6b24c122885","email":"testaccorganizationmemberroles@auth0.com","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmemberroles@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"created_at":"2024-05-27T14:40:53.312Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549b753a478dce1bb587a9","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:40:53.312Z","user_id":"auth0|66549b753a478dce1bb587a9","username":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.064959ms + duration: 290.227042ms - id: 91 request: proto: HTTP/1.1 @@ -3296,7 +3296,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY method: GET response: proto: HTTP/2.0 @@ -3306,13 +3306,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"id":"org_Av4ysp7eBTCrWjZY","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.427209ms + duration: 303.196542ms - id: 92 request: proto: HTTP/1.1 @@ -3332,7 +3332,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3342,13 +3342,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"roles":[{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|66549b753a478dce1bb587a9"}],"next":"MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.000667ms + duration: 320.597292ms - id: 93 request: proto: HTTP/1.1 @@ -3368,7 +3368,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3376,160 +3376,592 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"roles":[{"id":"rol_zMJ1XijjNGxLqpOj","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_2JGb4YpXnm5z5X1B","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 313.071833ms + duration: 321.098667ms - id: 94 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 58 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"roles":["rol_2JGb4YpXnm5z5X1B","rol_zMJ1XijjNGxLqpOj"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 301.913333ms + status: 200 OK + code: 200 + duration: 300.25975ms - id: 95 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 35 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"roles":["rol_2JGb4YpXnm5z5X1B"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 313.443667ms + status: 200 OK + code: 200 + duration: 297.180292ms - id: 96 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 35 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"roles":["rol_zMJ1XijjNGxLqpOj"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members/auth0%7C6654504674b4f6b24c122885/roles - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 309.431084ms + status: 200 OK + code: 200 + duration: 319.35625ms - id: 97 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 5 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|6654504674b4f6b24c122885"]} + null form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr/members - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5IRGu9hQhsfJiRMh + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 - uncompressed: false - body: "" + content_length: -1 + uncompressed: true + body: '{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 317.049916ms + status: 200 OK + code: 200 + duration: 312.3475ms - id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7NH4y009gMs7Mjrk + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 277.4985ms + - id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549b753a478dce1bb587a9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-05-27T14:40:53.312Z","email":"testaccorganizationmemberroles@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549b753a478dce1bb587a9","provider":"auth0","isSocial":false}],"name":"testaccorganizationmemberroles@auth0.com","nickname":"testaccorganizationmemberroles","picture":"https://s.gravatar.com/avatar/53048e95790ce1a9876aed96af03fbf1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:40:53.312Z","user_id":"auth0|66549b753a478dce1bb587a9","username":"testaccorganizationmemberroles"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 307.186708ms + - id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_Av4ysp7eBTCrWjZY","name":"some-org-testaccorganizationmemberroles","display_name":"testaccorganizationmemberroles"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 281.528375ms + - id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"members":[{"user_id":"auth0|66549b753a478dce1bb587a9"}],"next":"MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 415.747708ms + - id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDo0MDo1NC42MjAwMDBVVEMsYXV0aDB8NjY1NDliNzUzYTQ3OGRjZTFiYjU4N2E5&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 309.29625ms + - id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 308.400083ms + - id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 305.833708ms + - id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles?include_totals=true&page=0&per_page=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"roles":[{"id":"rol_5IRGu9hQhsfJiRMh","name":"Test Reader - testaccorganizationmemberroles","description":null},{"id":"rol_7NH4y009gMs7Mjrk","name":"Test Writer - testaccorganizationmemberroles","description":null}],"start":0,"limit":100,"total":2}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 311.274ms + - id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 58 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"roles":["rol_5IRGu9hQhsfJiRMh","rol_7NH4y009gMs7Mjrk"]} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 316.150791ms + - id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 35 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"roles":["rol_7NH4y009gMs7Mjrk"]} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 314.96225ms + - id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 35 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"roles":["rol_5IRGu9hQhsfJiRMh"]} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members/auth0%7C66549b753a478dce1bb587a9/roles + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 308.19225ms + - id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 47 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + {"members":["auth0|66549b753a478dce1bb587a9"]} + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY/members + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Type: + - application/json; charset=utf-8 + status: 204 No Content + code: 204 + duration: 286.242209ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -3547,7 +3979,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2Q101BKmlD8ZeYcr + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_Av4ysp7eBTCrWjZY method: DELETE response: proto: HTTP/2.0 @@ -3563,8 +3995,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 286.267333ms - - id: 99 + duration: 291.142917ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -3582,7 +4014,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654504674b4f6b24c122885 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549b753a478dce1bb587a9 method: DELETE response: proto: HTTP/2.0 @@ -3598,8 +4030,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 393.05075ms - - id: 100 + duration: 385.200459ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -3618,7 +4050,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_2JGb4YpXnm5z5X1B + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_7NH4y009gMs7Mjrk method: DELETE response: proto: HTTP/2.0 @@ -3634,8 +4066,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 374.160791ms - - id: 101 + duration: 308.568708ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -3654,7 +4086,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_zMJ1XijjNGxLqpOj + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5IRGu9hQhsfJiRMh method: DELETE response: proto: HTTP/2.0 @@ -3670,4 +4102,4 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 345.6815ms + duration: 317.531666ms diff --git a/test/data/recordings/TestAccOrganizationMembers.yaml b/test/data/recordings/TestAccOrganizationMembers.yaml index 979a572ef..757e58bbf 100644 --- a/test/data/recordings/TestAccOrganizationMembers.yaml +++ b/test/data/recordings/TestAccOrganizationMembers.yaml @@ -30,13 +30,13 @@ interactions: trailer: {} content_length: 598 uncompressed: false - body: '{"created_at":"2024-05-27T09:19:59.618Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fe957844eac7ce6a5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.618Z","user_id":"auth0|6654503fe957844eac7ce6a5","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 587.592125ms + duration: 462.31675ms - id: 1 request: proto: HTTP/1.1 @@ -56,7 +56,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -66,13 +66,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.618Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fe957844eac7ce6a5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.618Z","user_id":"auth0|6654503fe957844eac7ce6a5","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 352.042083ms + duration: 300.609584ms - id: 2 request: proto: HTTP/1.1 @@ -102,13 +102,13 @@ interactions: trailer: {} content_length: 598 uncompressed: false - body: '{"created_at":"2024-05-27T09:20:00.542Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545040e539b35aea954fb7","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:00.542Z","user_id":"auth0|66545040e539b35aea954fb7","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 518.475292ms + duration: 460.970625ms - id: 3 request: proto: HTTP/1.1 @@ -128,7 +128,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545040e539b35aea954fb7 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -138,13 +138,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:00.542Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545040e539b35aea954fb7","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:00.542Z","user_id":"auth0|66545040e539b35aea954fb7","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.796875ms + duration: 283.520625ms - id: 4 request: proto: HTTP/1.1 @@ -174,13 +174,13 @@ interactions: trailer: {} content_length: 118 uncompressed: false - body: '{"id":"org_qOwDheZwk7lYAeq3","display_name":"testaccorganizationmembers","name":"some-org-testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","display_name":"testaccorganizationmembers","name":"some-org-testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 201 Created code: 201 - duration: 334.042375ms + duration: 288.133125ms - id: 5 request: proto: HTTP/1.1 @@ -200,7 +200,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -210,13 +210,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 320.919083ms + duration: 310.658875ms - id: 6 request: proto: HTTP/1.1 @@ -229,14 +229,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|6654503fe957844eac7ce6a5"]} + {"members":["auth0|66549949cd5cb856cecf5af3"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members method: POST response: proto: HTTP/2.0 @@ -252,7 +252,7 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 361.804ms + duration: 292.730375ms - id: 7 request: proto: HTTP/1.1 @@ -272,7 +272,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -282,13 +282,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NC45MDQwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.028834ms + duration: 303.717375ms - id: 8 request: proto: HTTP/1.1 @@ -308,7 +308,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NC45MDQwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -316,15 +316,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 319.194375ms + duration: 311.044541ms - id: 9 request: proto: HTTP/1.1 @@ -344,7 +344,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -354,13 +354,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.618Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fe957844eac7ce6a5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.618Z","user_id":"auth0|6654503fe957844eac7ce6a5","username":"testaccorganizationmembers11"}' + body: '{"members":[{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NC45MDQwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 325.681458ms + duration: 368.904125ms - id: 10 request: proto: HTTP/1.1 @@ -380,7 +380,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NC45MDQwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -388,15 +388,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"members":[{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":1}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 337.432ms + duration: 275.948583ms - id: 11 request: proto: HTTP/1.1 @@ -416,7 +416,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545040e539b35aea954fb7 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -426,13 +426,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:00.542Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545040e539b35aea954fb7","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:00.542Z","user_id":"auth0|66545040e539b35aea954fb7","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 333.927834ms + duration: 295.492625ms - id: 12 request: proto: HTTP/1.1 @@ -452,7 +452,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -462,13 +462,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"members":[{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0NC45MDQwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 324.209125ms + duration: 418.773875ms - id: 13 request: proto: HTTP/1.1 @@ -488,7 +488,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -498,14 +498,86 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_mRHRJXtNHq1ErxNt","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 323.342166ms + duration: 302.402833ms - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo0NC45MDQwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 281.771708ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 297.239083ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -517,14 +589,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|6654503fe957844eac7ce6a5"]} + {"members":["auth0|66549949cd5cb856cecf5af3"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members method: DELETE response: proto: HTTP/2.0 @@ -540,8 +612,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 316.564375ms - - id: 14 + duration: 329.860458ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -560,7 +632,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -570,14 +642,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.618Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fe957844eac7ce6a5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.618Z","user_id":"auth0|6654503fe957844eac7ce6a5","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 303.133917ms - - id: 15 + duration: 511.856459ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -596,7 +668,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545040e539b35aea954fb7 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -606,14 +678,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:00.542Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545040e539b35aea954fb7","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:00.542Z","user_id":"auth0|66545040e539b35aea954fb7","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 380.49275ms - - id: 16 + duration: 343.243583ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -632,7 +704,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -642,14 +714,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 319.408625ms - - id: 17 + duration: 422.7405ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -668,7 +740,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -678,14 +750,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.618Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fe957844eac7ce6a5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.618Z","user_id":"auth0|6654503fe957844eac7ce6a5","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.214375ms - - id: 18 + duration: 278.562209ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -704,7 +776,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545040e539b35aea954fb7 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -714,14 +786,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:00.542Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545040e539b35aea954fb7","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:00.542Z","user_id":"auth0|66545040e539b35aea954fb7","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.905375ms - - id: 19 + duration: 299.674625ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -740,7 +812,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -750,14 +822,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.822375ms - - id: 20 + duration: 299.974125ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -776,7 +848,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -792,8 +864,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.218875ms - - id: 21 + duration: 279.858208ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -812,7 +884,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -828,8 +900,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.768ms - - id: 22 + duration: 296.531167ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -848,7 +920,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -858,14 +930,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.866291ms - - id: 23 + duration: 300.69275ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -884,7 +956,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -900,8 +972,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.08875ms - - id: 24 + duration: 306.788084ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -920,7 +992,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -936,8 +1008,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.136125ms - - id: 25 + duration: 300.204458ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -956,7 +1028,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -966,14 +1038,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 290.218875ms - - id: 26 + duration: 302.64625ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -992,7 +1064,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1008,8 +1080,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.978042ms - - id: 27 + duration: 300.938417ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1028,7 +1100,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1044,8 +1116,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.051542ms - - id: 28 + duration: 299.418042ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1064,7 +1136,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -1074,14 +1146,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.618Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fe957844eac7ce6a5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.618Z","user_id":"auth0|6654503fe957844eac7ce6a5","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 315.431875ms - - id: 29 + duration: 309.544334ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1100,7 +1172,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545040e539b35aea954fb7 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -1110,14 +1182,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:00.542Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545040e539b35aea954fb7","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:00.542Z","user_id":"auth0|66545040e539b35aea954fb7","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 316.137792ms - - id: 30 + duration: 274.482792ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1136,7 +1208,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -1146,14 +1218,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.980708ms - - id: 31 + duration: 315.367709ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1172,7 +1244,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1188,8 +1260,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.310084ms - - id: 32 + duration: 296.033584ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1208,7 +1280,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -1218,14 +1290,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 274.808ms - - id: 33 + duration: 294.997125ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1244,7 +1316,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1260,8 +1332,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.059167ms - - id: 34 + duration: 282.15175ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1280,7 +1352,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1296,8 +1368,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.0565ms - - id: 35 + duration: 298.116292ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1316,7 +1388,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -1326,14 +1398,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.618Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fe957844eac7ce6a5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.618Z","user_id":"auth0|6654503fe957844eac7ce6a5","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 391.2045ms - - id: 36 + duration: 284.500583ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1352,7 +1424,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545040e539b35aea954fb7 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -1362,14 +1434,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:00.542Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545040e539b35aea954fb7","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:00.542Z","user_id":"auth0|66545040e539b35aea954fb7","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.897ms - - id: 37 + duration: 321.77825ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1388,7 +1460,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -1398,14 +1470,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.731875ms - - id: 38 + duration: 298.037ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -1424,7 +1496,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1440,8 +1512,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.364166ms - - id: 39 + duration: 429.018625ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -1453,14 +1525,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|6654503fe957844eac7ce6a5"]} + {"members":["auth0|66549949cd5cb856cecf5af3"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members method: POST response: proto: HTTP/2.0 @@ -1476,8 +1548,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 314.659375ms - - id: 40 + duration: 297.339959ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -1496,7 +1568,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1506,14 +1578,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.127083ms - - id: 41 + duration: 313.214916ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -1532,7 +1604,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1548,8 +1620,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 297.705ms - - id: 43 + duration: 297.375042ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -1568,7 +1640,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -1578,14 +1650,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.086709ms - - id: 42 + duration: 333.801542ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -1604,7 +1676,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1620,8 +1692,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 330.706042ms - - id: 43 + duration: 301.303917ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -1640,7 +1712,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1650,14 +1722,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 493.084291ms - - id: 44 + duration: 317.549625ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -1676,7 +1748,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1692,8 +1764,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.481ms - - id: 47 + duration: 301.828625ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -1712,7 +1784,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -1722,14 +1794,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 346.151958ms - - id: 45 + duration: 328.097375ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -1748,7 +1820,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -1764,8 +1836,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.780922541s - - id: 46 + duration: 328.524042ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -1784,7 +1856,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1794,14 +1866,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 320.211792ms - - id: 47 + duration: 352.566792ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -1820,7 +1892,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1836,8 +1908,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.529833ms - - id: 51 + duration: 337.751834ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -1856,7 +1928,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -1866,14 +1938,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.618Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fe957844eac7ce6a5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.618Z","user_id":"auth0|6654503fe957844eac7ce6a5","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.259541ms - - id: 48 + duration: 422.761083ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -1892,7 +1964,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545040e539b35aea954fb7 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -1902,14 +1974,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:00.542Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545040e539b35aea954fb7","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:00.542Z","user_id":"auth0|66545040e539b35aea954fb7","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.427584ms - - id: 49 + duration: 345.366ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -1928,7 +2000,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -1938,14 +2010,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.714ms - - id: 50 + duration: 298.049417ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -1964,7 +2036,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -1974,14 +2046,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.194ms - - id: 51 + duration: 310.149666ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2000,7 +2072,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2016,8 +2088,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.67475ms - - id: 56 + duration: 279.054208ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2036,7 +2108,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -2046,14 +2118,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.823ms - - id: 52 + duration: 295.967583ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2072,7 +2144,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2088,8 +2160,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 330.794958ms - - id: 53 + duration: 341.711292ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2108,7 +2180,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2118,14 +2190,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.329125ms - - id: 54 + duration: 304.952667ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -2144,7 +2216,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2160,8 +2232,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.351959ms - - id: 60 + duration: 315.498917ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -2180,7 +2252,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -2190,14 +2262,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.618Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fe957844eac7ce6a5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.618Z","user_id":"auth0|6654503fe957844eac7ce6a5","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.446333ms - - id: 55 + duration: 295.177ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -2216,7 +2288,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545040e539b35aea954fb7 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -2226,14 +2298,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:00.542Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545040e539b35aea954fb7","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:00.542Z","user_id":"auth0|66545040e539b35aea954fb7","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 289.310167ms - - id: 56 + duration: 288.60725ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -2252,7 +2324,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -2262,14 +2334,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.832166ms - - id: 57 + duration: 299.855041ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -2288,7 +2360,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2298,14 +2370,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.666875ms - - id: 58 + duration: 432.589167ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -2324,7 +2396,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoxMC44NTAwMDBVVEMsYXV0aDB8NjY1NDU0NjBjZDVjYjg1NmNlY2YyNmNm&include_fields=true&include_totals=true&per_page=50&take=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2340,8 +2412,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.763208ms - - id: 65 + duration: 308.944916ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -2353,14 +2425,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|66545040e539b35aea954fb7"]} + {"members":["auth0|6654994f3a478dce1bb585d0"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members method: POST response: proto: HTTP/2.0 @@ -2376,8 +2448,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 286.939875ms - - id: 59 + duration: 289.251625ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -2396,7 +2468,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2406,14 +2478,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545040e539b35aea954fb7","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.959292ms - - id: 60 + duration: 301.484458ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -2432,7 +2504,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2448,8 +2520,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 332.045958ms - - id: 68 + duration: 287.70825ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -2468,7 +2540,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -2478,14 +2550,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.162417ms - - id: 61 + duration: 480.42275ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -2504,7 +2576,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2520,8 +2592,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 289.98975ms - - id: 62 + duration: 295.403916ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -2540,7 +2612,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2550,14 +2622,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545040e539b35aea954fb7","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.771542ms - - id: 63 + duration: 295.461334ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -2576,7 +2648,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2592,8 +2664,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 366.484125ms - - id: 72 + duration: 307.792ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -2612,7 +2684,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -2622,14 +2694,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.749584ms - - id: 64 + duration: 310.7325ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -2648,7 +2720,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2664,8 +2736,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.119125ms - - id: 65 + duration: 292.9665ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -2684,7 +2756,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2694,14 +2766,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545040e539b35aea954fb7","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 322.540417ms - - id: 66 + duration: 311.121667ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -2720,7 +2792,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2736,8 +2808,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 319.847875ms - - id: 76 + duration: 281.805291ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -2756,7 +2828,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -2766,14 +2838,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.618Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fe957844eac7ce6a5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.618Z","user_id":"auth0|6654503fe957844eac7ce6a5","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 270.086083ms - - id: 67 + duration: 307.437333ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -2792,7 +2864,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545040e539b35aea954fb7 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -2802,14 +2874,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:00.542Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545040e539b35aea954fb7","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:00.542Z","user_id":"auth0|66545040e539b35aea954fb7","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 273.981ms - - id: 68 + duration: 270.764542ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -2828,7 +2900,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -2838,14 +2910,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 276.282583ms - - id: 69 + duration: 305.754959ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -2864,7 +2936,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2874,14 +2946,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545040e539b35aea954fb7","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 341.767833ms - - id: 70 + duration: 294.036917ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -2900,7 +2972,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2916,8 +2988,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 292.204875ms - - id: 81 + duration: 313.13975ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -2936,7 +3008,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -2946,14 +3018,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 273.568167ms - - id: 71 + duration: 275.431583ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -2972,7 +3044,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -2988,8 +3060,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.864708ms - - id: 72 + duration: 285.31425ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -3008,7 +3080,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3018,14 +3090,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545040e539b35aea954fb7","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 334.040083ms - - id: 73 + duration: 295.429916ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -3044,7 +3116,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3060,8 +3132,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.389667ms - - id: 85 + duration: 420.818667ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -3080,7 +3152,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -3090,14 +3162,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.618Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fe957844eac7ce6a5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.618Z","user_id":"auth0|6654503fe957844eac7ce6a5","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.926583ms - - id: 74 + duration: 313.26575ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -3116,7 +3188,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545040e539b35aea954fb7 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -3126,14 +3198,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:00.542Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545040e539b35aea954fb7","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:00.542Z","user_id":"auth0|66545040e539b35aea954fb7","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 274.9065ms - - id: 75 + duration: 307.7075ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -3152,7 +3224,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -3162,14 +3234,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.715042ms - - id: 76 + duration: 345.359542ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -3188,7 +3260,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3198,14 +3270,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545040e539b35aea954fb7","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 291.362958ms - - id: 77 + duration: 354.493667ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -3224,7 +3296,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoyMC4wMTYwMDBVVEMsYXV0aDB8NjY1NDU0NjE3NGI0ZjZiMjRjMTIyYWU1&include_fields=true&include_totals=true&per_page=50&take=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3240,8 +3312,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 401.059208ms - - id: 90 + duration: 292.2975ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -3253,14 +3325,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|6654503fe957844eac7ce6a5"]} + {"members":["auth0|66549949cd5cb856cecf5af3"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members method: DELETE response: proto: HTTP/2.0 @@ -3276,8 +3348,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 285.836958ms - - id: 78 + duration: 298.130459ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -3296,7 +3368,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -3306,14 +3378,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.674334ms - - id: 79 + duration: 301.221458ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -3332,7 +3404,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3348,8 +3420,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.55675ms - - id: 80 + duration: 302.551625ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -3368,7 +3440,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3378,14 +3450,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545040e539b35aea954fb7","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.568667ms - - id: 81 + duration: 293.571333ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -3404,7 +3476,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3420,8 +3492,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.720125ms - - id: 95 + duration: 300.700084ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -3440,7 +3512,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -3450,14 +3522,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 297.166833ms - - id: 82 + duration: 275.81075ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -3476,7 +3548,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3492,8 +3564,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.350666ms - - id: 83 + duration: 282.924125ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -3512,7 +3584,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3522,14 +3594,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545040e539b35aea954fb7","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.819ms - - id: 84 + duration: 304.610209ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -3548,7 +3620,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3564,8 +3636,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 311.155292ms - - id: 99 + duration: 465.170083ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -3584,7 +3656,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -3594,14 +3666,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.618Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fe957844eac7ce6a5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.618Z","user_id":"auth0|6654503fe957844eac7ce6a5","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 520.27ms - - id: 85 + duration: 303.057625ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -3620,7 +3692,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545040e539b35aea954fb7 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -3630,14 +3702,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:00.542Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545040e539b35aea954fb7","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:00.542Z","user_id":"auth0|66545040e539b35aea954fb7","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.497334ms - - id: 86 + duration: 302.820166ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -3656,7 +3728,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -3666,14 +3738,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.627208ms - - id: 87 + duration: 293.177959ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -3692,7 +3764,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3702,14 +3774,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545040e539b35aea954fb7","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 316.195875ms - - id: 88 + duration: 305.703458ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -3728,7 +3800,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3744,8 +3816,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 382.795375ms - - id: 104 + duration: 291.227292ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -3764,7 +3836,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -3774,14 +3846,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.542041ms - - id: 89 + duration: 298.591125ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -3800,7 +3872,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -3816,8 +3888,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.087166ms - - id: 90 + duration: 285.425458ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -3836,7 +3908,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3846,14 +3918,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545040e539b35aea954fb7","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 327.256834ms - - id: 91 + duration: 296.850334ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -3872,7 +3944,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3888,8 +3960,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 354.584792ms - - id: 108 + duration: 317.183708ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -3908,7 +3980,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -3918,14 +3990,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.618Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fe957844eac7ce6a5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.618Z","user_id":"auth0|6654503fe957844eac7ce6a5","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.840583ms - - id: 92 + duration: 289.606958ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -3944,7 +4016,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545040e539b35aea954fb7 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -3954,14 +4026,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:00.542Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545040e539b35aea954fb7","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:00.542Z","user_id":"auth0|66545040e539b35aea954fb7","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.216875ms - - id: 93 + duration: 350.612042ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -3980,7 +4052,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -3990,14 +4062,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 289.614333ms - - id: 94 + duration: 308.442916ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -4016,7 +4088,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4026,14 +4098,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545040e539b35aea954fb7","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"}],"start":0,"limit":100,"total":1}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.089625ms - - id: 95 + duration: 313.323167ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -4052,7 +4124,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt/members?fields=user_id&from=MjAyNC0wNS0yNyAwOTozODoyMC4wMTYwMDBVVEMsYXV0aDB8NjY1NDU0NjE3NGI0ZjZiMjRjMTIyYWU1&include_fields=true&include_totals=true&per_page=50&take=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4068,8 +4140,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 287.058542ms - - id: 113 + duration: 306.56275ms + - id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -4081,14 +4153,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|66545040e539b35aea954fb7"]} + {"members":["auth0|6654994f3a478dce1bb585d0"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members method: DELETE response: proto: HTTP/2.0 @@ -4104,8 +4176,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 307.857334ms - - id: 96 + duration: 286.618292ms + - id: 116 request: proto: HTTP/1.1 proto_major: 1 @@ -4124,7 +4196,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -4134,14 +4206,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 276.877333ms - - id: 97 + duration: 307.281166ms + - id: 117 request: proto: HTTP/1.1 proto_major: 1 @@ -4160,7 +4232,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4176,8 +4248,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.199709ms - - id: 98 + duration: 309.359667ms + - id: 118 request: proto: HTTP/1.1 proto_major: 1 @@ -4196,7 +4268,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4212,8 +4284,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 268.888875ms - - id: 99 + duration: 298.571292ms + - id: 119 request: proto: HTTP/1.1 proto_major: 1 @@ -4232,7 +4304,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -4242,14 +4314,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.153375ms - - id: 100 + duration: 301.688708ms + - id: 120 request: proto: HTTP/1.1 proto_major: 1 @@ -4268,7 +4340,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4284,8 +4356,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.089791ms - - id: 101 + duration: 316.975416ms + - id: 121 request: proto: HTTP/1.1 proto_major: 1 @@ -4304,7 +4376,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4320,8 +4392,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.023125ms - - id: 102 + duration: 313.033459ms + - id: 122 request: proto: HTTP/1.1 proto_major: 1 @@ -4340,7 +4412,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -4350,14 +4422,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.618Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fe957844eac7ce6a5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.618Z","user_id":"auth0|6654503fe957844eac7ce6a5","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 306.041833ms - - id: 103 + duration: 351.490917ms + - id: 123 request: proto: HTTP/1.1 proto_major: 1 @@ -4376,7 +4448,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545040e539b35aea954fb7 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -4386,14 +4458,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:00.542Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545040e539b35aea954fb7","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:00.542Z","user_id":"auth0|66545040e539b35aea954fb7","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 398.272084ms - - id: 104 + duration: 283.757167ms + - id: 124 request: proto: HTTP/1.1 proto_major: 1 @@ -4412,7 +4484,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -4422,14 +4494,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 404.347083ms - - id: 105 + duration: 324.269375ms + - id: 125 request: proto: HTTP/1.1 proto_major: 1 @@ -4448,7 +4520,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4464,8 +4536,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 367.045458ms - - id: 106 + duration: 349.703375ms + - id: 126 request: proto: HTTP/1.1 proto_major: 1 @@ -4484,7 +4556,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -4494,14 +4566,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 339.4155ms - - id: 107 + duration: 348.978417ms + - id: 127 request: proto: HTTP/1.1 proto_major: 1 @@ -4520,7 +4592,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4536,8 +4608,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.497292ms - - id: 108 + duration: 429.459167ms + - id: 128 request: proto: HTTP/1.1 proto_major: 1 @@ -4556,7 +4628,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4572,8 +4644,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.591166ms - - id: 109 + duration: 352.713958ms + - id: 129 request: proto: HTTP/1.1 proto_major: 1 @@ -4592,7 +4664,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -4600,16 +4672,16 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 - uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + content_length: -1 + uncompressed: true + body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.380291ms - - id: 110 + duration: 283.20525ms + - id: 130 request: proto: HTTP/1.1 proto_major: 1 @@ -4628,7 +4700,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4636,16 +4708,16 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.618Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fe957844eac7ce6a5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.618Z","user_id":"auth0|6654503fe957844eac7ce6a5","username":"testaccorganizationmembers11"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.431708ms - - id: 111 + duration: 312.142667ms + - id: 131 request: proto: HTTP/1.1 proto_major: 1 @@ -4664,7 +4736,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545040e539b35aea954fb7 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -4674,14 +4746,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:00.542Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545040e539b35aea954fb7","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:00.542Z","user_id":"auth0|66545040e539b35aea954fb7","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 285.934042ms - - id: 112 + duration: 270.354708ms + - id: 132 request: proto: HTTP/1.1 proto_major: 1 @@ -4700,7 +4772,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -4710,14 +4782,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 331.479375ms - - id: 113 + duration: 306.568625ms + - id: 133 request: proto: HTTP/1.1 proto_major: 1 @@ -4736,7 +4808,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -4746,14 +4818,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.146333ms - - id: 114 + duration: 371.709542ms + - id: 134 request: proto: HTTP/1.1 proto_major: 1 @@ -4772,7 +4844,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4788,8 +4860,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 326.366791ms - - id: 115 + duration: 297.987959ms + - id: 135 request: proto: HTTP/1.1 proto_major: 1 @@ -4808,7 +4880,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4824,8 +4896,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.9395ms - - id: 116 + duration: 361.904125ms + - id: 136 request: proto: HTTP/1.1 proto_major: 1 @@ -4844,7 +4916,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -4854,14 +4926,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 336.36775ms - - id: 117 + duration: 279.155416ms + - id: 137 request: proto: HTTP/1.1 proto_major: 1 @@ -4880,7 +4952,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4896,8 +4968,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 328.413625ms - - id: 118 + duration: 354.682875ms + - id: 138 request: proto: HTTP/1.1 proto_major: 1 @@ -4916,7 +4988,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4932,8 +5004,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 354.267625ms - - id: 119 + duration: 416.736541ms + - id: 139 request: proto: HTTP/1.1 proto_major: 1 @@ -4952,7 +5024,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -4962,14 +5034,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.618Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fe957844eac7ce6a5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.618Z","user_id":"auth0|6654503fe957844eac7ce6a5","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 351.83275ms - - id: 120 + duration: 327.916625ms + - id: 140 request: proto: HTTP/1.1 proto_major: 1 @@ -4988,7 +5060,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545040e539b35aea954fb7 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -4998,14 +5070,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:00.542Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545040e539b35aea954fb7","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:00.542Z","user_id":"auth0|66545040e539b35aea954fb7","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.0995ms - - id: 121 + duration: 382.198042ms + - id: 141 request: proto: HTTP/1.1 proto_major: 1 @@ -5024,7 +5096,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -5034,14 +5106,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 314.3045ms - - id: 122 + duration: 398.371042ms + - id: 142 request: proto: HTTP/1.1 proto_major: 1 @@ -5060,7 +5132,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -5070,14 +5142,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.141792ms - - id: 123 + duration: 316.226958ms + - id: 143 request: proto: HTTP/1.1 proto_major: 1 @@ -5096,7 +5168,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5112,8 +5184,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 328.86625ms - - id: 124 + duration: 321.436625ms + - id: 144 request: proto: HTTP/1.1 proto_major: 1 @@ -5132,7 +5204,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5148,8 +5220,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.921333ms - - id: 125 + duration: 328.860375ms + - id: 145 request: proto: HTTP/1.1 proto_major: 1 @@ -5168,7 +5240,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -5178,14 +5250,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.618Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fe957844eac7ce6a5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.618Z","user_id":"auth0|6654503fe957844eac7ce6a5","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.833792ms - - id: 126 + duration: 300.849583ms + - id: 146 request: proto: HTTP/1.1 proto_major: 1 @@ -5204,7 +5276,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545040e539b35aea954fb7 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -5214,14 +5286,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:00.542Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545040e539b35aea954fb7","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:00.542Z","user_id":"auth0|66545040e539b35aea954fb7","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.534083ms - - id: 127 + duration: 329.134958ms + - id: 147 request: proto: HTTP/1.1 proto_major: 1 @@ -5240,7 +5312,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -5250,14 +5322,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.234208ms - - id: 128 + duration: 306.679584ms + - id: 148 request: proto: HTTP/1.1 proto_major: 1 @@ -5276,7 +5348,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -5286,14 +5358,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.19575ms - - id: 129 + duration: 293.788833ms + - id: 149 request: proto: HTTP/1.1 proto_major: 1 @@ -5312,7 +5384,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5328,8 +5400,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.71ms - - id: 130 + duration: 384.273959ms + - id: 150 request: proto: HTTP/1.1 proto_major: 1 @@ -5348,7 +5420,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5364,8 +5436,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 321.872042ms - - id: 131 + duration: 307.878708ms + - id: 151 request: proto: HTTP/1.1 proto_major: 1 @@ -5384,7 +5456,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -5394,14 +5466,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.618Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fe957844eac7ce6a5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.618Z","user_id":"auth0|6654503fe957844eac7ce6a5","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.508125ms - - id: 132 + duration: 309.686291ms + - id: 152 request: proto: HTTP/1.1 proto_major: 1 @@ -5420,7 +5492,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545040e539b35aea954fb7 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -5430,14 +5502,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:00.542Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545040e539b35aea954fb7","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:00.542Z","user_id":"auth0|66545040e539b35aea954fb7","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.889334ms - - id: 133 + duration: 323.824584ms + - id: 153 request: proto: HTTP/1.1 proto_major: 1 @@ -5456,7 +5528,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -5466,14 +5538,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.096417ms - - id: 134 + duration: 302.026416ms + - id: 154 request: proto: HTTP/1.1 proto_major: 1 @@ -5492,7 +5564,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -5502,14 +5574,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.941666ms - - id: 135 + duration: 320.053375ms + - id: 155 request: proto: HTTP/1.1 proto_major: 1 @@ -5528,7 +5600,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5544,8 +5616,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.762875ms - - id: 136 + duration: 315.871583ms + - id: 156 request: proto: HTTP/1.1 proto_major: 1 @@ -5564,7 +5636,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5580,8 +5652,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.746667ms - - id: 137 + duration: 306.160417ms + - id: 157 request: proto: HTTP/1.1 proto_major: 1 @@ -5600,7 +5672,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -5610,14 +5682,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.618Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fe957844eac7ce6a5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.618Z","user_id":"auth0|6654503fe957844eac7ce6a5","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.833084ms - - id: 138 + duration: 384.703458ms + - id: 158 request: proto: HTTP/1.1 proto_major: 1 @@ -5636,7 +5708,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545040e539b35aea954fb7 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -5646,14 +5718,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:00.542Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545040e539b35aea954fb7","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:00.542Z","user_id":"auth0|66545040e539b35aea954fb7","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.83525ms - - id: 139 + duration: 344.691ms + - id: 159 request: proto: HTTP/1.1 proto_major: 1 @@ -5672,7 +5744,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -5682,14 +5754,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.74225ms - - id: 140 + duration: 368.538875ms + - id: 160 request: proto: HTTP/1.1 proto_major: 1 @@ -5701,14 +5773,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|66545040e539b35aea954fb7"]} + {"members":["auth0|66549949cd5cb856cecf5af3"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members method: POST response: proto: HTTP/2.0 @@ -5724,8 +5796,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 297.184833ms - - id: 141 + duration: 353.468125ms + - id: 161 request: proto: HTTP/1.1 proto_major: 1 @@ -5737,14 +5809,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|6654503fe957844eac7ce6a5"]} + {"members":["auth0|6654994f3a478dce1bb585d0"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members method: POST response: proto: HTTP/2.0 @@ -5760,8 +5832,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 326.0825ms - - id: 142 + duration: 353.596125ms + - id: 162 request: proto: HTTP/1.1 proto_major: 1 @@ -5780,7 +5852,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5790,14 +5862,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545040e539b35aea954fb7","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 307.440916ms - - id: 143 + duration: 353.534708ms + - id: 163 request: proto: HTTP/1.1 proto_major: 1 @@ -5816,7 +5888,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5826,14 +5898,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545040e539b35aea954fb7","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 352.463417ms - - id: 144 + duration: 353.430583ms + - id: 164 request: proto: HTTP/1.1 proto_major: 1 @@ -5852,7 +5924,79 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 427.988125ms + - id: 165 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 428.239667ms + - id: 166 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -5862,14 +6006,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.618Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fe957844eac7ce6a5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.618Z","user_id":"auth0|6654503fe957844eac7ce6a5","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.600792ms - - id: 145 + duration: 312.45725ms + - id: 167 request: proto: HTTP/1.1 proto_major: 1 @@ -5888,7 +6032,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545040e539b35aea954fb7 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -5898,14 +6042,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:00.542Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545040e539b35aea954fb7","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:00.542Z","user_id":"auth0|66545040e539b35aea954fb7","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 321.414417ms - - id: 146 + duration: 307.449208ms + - id: 168 request: proto: HTTP/1.1 proto_major: 1 @@ -5924,7 +6068,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -5934,14 +6078,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 317.110708ms - - id: 147 + duration: 292.999125ms + - id: 169 request: proto: HTTP/1.1 proto_major: 1 @@ -5960,7 +6104,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5970,14 +6114,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545040e539b35aea954fb7","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 315.327375ms - - id: 148 + duration: 303.514542ms + - id: 170 request: proto: HTTP/1.1 proto_major: 1 @@ -5996,7 +6140,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6006,14 +6150,86 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545040e539b35aea954fb7","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 322.249209ms - - id: 149 + duration: 319.217ms + - id: 171 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 382.061167ms + - id: 172 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 397.585917ms + - id: 173 request: proto: HTTP/1.1 proto_major: 1 @@ -6032,7 +6248,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6042,14 +6258,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545040e539b35aea954fb7","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.956666ms - - id: 150 + duration: 295.250333ms + - id: 174 request: proto: HTTP/1.1 proto_major: 1 @@ -6068,7 +6284,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6084,8 +6300,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 321.775375ms - - id: 169 + duration: 299.07475ms + - id: 175 request: proto: HTTP/1.1 proto_major: 1 @@ -6104,7 +6320,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -6114,14 +6330,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 399.551459ms - - id: 151 + duration: 407.225416ms + - id: 176 request: proto: HTTP/1.1 proto_major: 1 @@ -6140,7 +6356,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -6156,8 +6372,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 408.492292ms - - id: 152 + duration: 408.023875ms + - id: 177 request: proto: HTTP/1.1 proto_major: 1 @@ -6176,7 +6392,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6186,14 +6402,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545040e539b35aea954fb7","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 409.642875ms - - id: 153 + duration: 312.463916ms + - id: 178 request: proto: HTTP/1.1 proto_major: 1 @@ -6212,7 +6428,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6228,8 +6444,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.212125ms - - id: 173 + duration: 289.679417ms + - id: 179 request: proto: HTTP/1.1 proto_major: 1 @@ -6248,7 +6464,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -6258,14 +6474,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.618Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fe957844eac7ce6a5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.618Z","user_id":"auth0|6654503fe957844eac7ce6a5","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 334.238708ms - - id: 154 + duration: 304.265791ms + - id: 180 request: proto: HTTP/1.1 proto_major: 1 @@ -6284,7 +6500,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545040e539b35aea954fb7 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -6294,14 +6510,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:00.542Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545040e539b35aea954fb7","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:00.542Z","user_id":"auth0|66545040e539b35aea954fb7","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 331.611416ms - - id: 155 + duration: 294.252208ms + - id: 181 request: proto: HTTP/1.1 proto_major: 1 @@ -6320,7 +6536,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -6330,14 +6546,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 351.008583ms - - id: 156 + duration: 304.539833ms + - id: 182 request: proto: HTTP/1.1 proto_major: 1 @@ -6356,7 +6572,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6366,14 +6582,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545040e539b35aea954fb7","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 334.556791ms - - id: 157 + duration: 284.10475ms + - id: 183 request: proto: HTTP/1.1 proto_major: 1 @@ -6392,7 +6608,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6402,14 +6618,50 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545040e539b35aea954fb7","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 335.095417ms - - id: 158 + duration: 292.893292ms + - id: 184 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 283.432042ms + - id: 185 request: proto: HTTP/1.1 proto_major: 1 @@ -6428,7 +6680,43 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 287.736291ms + - id: 186 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6438,14 +6726,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545040e539b35aea954fb7","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 351.483083ms - - id: 159 + duration: 294.057208ms + - id: 187 request: proto: HTTP/1.1 proto_major: 1 @@ -6464,7 +6752,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6480,8 +6768,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 353.373375ms - - id: 180 + duration: 287.803209ms + - id: 188 request: proto: HTTP/1.1 proto_major: 1 @@ -6500,7 +6788,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -6510,14 +6798,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 350.736417ms - - id: 160 + duration: 278.973041ms + - id: 189 request: proto: HTTP/1.1 proto_major: 1 @@ -6536,7 +6824,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -6552,8 +6840,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 418.379292ms - - id: 161 + duration: 277.831208ms + - id: 190 request: proto: HTTP/1.1 proto_major: 1 @@ -6572,7 +6860,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6582,14 +6870,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545040e539b35aea954fb7","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 530.77175ms - - id: 162 + duration: 285.331667ms + - id: 191 request: proto: HTTP/1.1 proto_major: 1 @@ -6608,7 +6896,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6624,8 +6912,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 428.200041ms - - id: 184 + duration: 299.050333ms + - id: 192 request: proto: HTTP/1.1 proto_major: 1 @@ -6644,7 +6932,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -6654,14 +6942,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.302208ms - - id: 163 + duration: 282.586666ms + - id: 193 request: proto: HTTP/1.1 proto_major: 1 @@ -6680,7 +6968,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -6696,8 +6984,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 321.458792ms - - id: 164 + duration: 338.160333ms + - id: 194 request: proto: HTTP/1.1 proto_major: 1 @@ -6716,7 +7004,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6726,14 +7014,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545040e539b35aea954fb7","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 289.972125ms - - id: 165 + duration: 408.698666ms + - id: 195 request: proto: HTTP/1.1 proto_major: 1 @@ -6752,7 +7040,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6768,8 +7056,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 318.688125ms - - id: 188 + duration: 283.663542ms + - id: 196 request: proto: HTTP/1.1 proto_major: 1 @@ -6788,7 +7076,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545460cd5cb856cecf26cf + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -6798,14 +7086,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:19:59.618Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654503fe957844eac7ce6a5","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:19:59.618Z","user_id":"auth0|6654503fe957844eac7ce6a5","username":"testaccorganizationmembers11"}' + body: '{"created_at":"2024-05-27T14:31:37.638Z","email":"testaccorganizationmembers1@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66549949cd5cb856cecf5af3","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers1@auth0.com","nickname":"testaccorganizationmembers1","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:37.639Z","user_id":"auth0|66549949cd5cb856cecf5af3","username":"testaccorganizationmembers11"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 320.165583ms - - id: 166 + duration: 301.85825ms + - id: 197 request: proto: HTTP/1.1 proto_major: 1 @@ -6824,7 +7112,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545040e539b35aea954fb7 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -6834,14 +7122,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"created_at":"2024-05-27T09:20:00.542Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"66545040e539b35aea954fb7","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T09:20:00.542Z","user_id":"auth0|66545040e539b35aea954fb7","username":"testaccorganizationmembers22"}' + body: '{"created_at":"2024-05-27T14:31:43.709Z","email":"testaccorganizationmembers2@auth0.com","email_verified":false,"identities":[{"connection":"Username-Password-Authentication","user_id":"6654994f3a478dce1bb585d0","provider":"auth0","isSocial":false}],"name":"testaccorganizationmembers2@auth0.com","nickname":"testaccorganizationmembers2","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2024-05-27T14:31:43.709Z","user_id":"auth0|6654994f3a478dce1bb585d0","username":"testaccorganizationmembers22"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 315.498ms - - id: 167 + duration: 322.830916ms + - id: 198 request: proto: HTTP/1.1 proto_major: 1 @@ -6860,7 +7148,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -6870,14 +7158,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 301.1245ms - - id: 168 + duration: 414.279167ms + - id: 199 request: proto: HTTP/1.1 proto_major: 1 @@ -6896,7 +7184,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6906,14 +7194,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545040e539b35aea954fb7","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 322.894ms - - id: 169 + duration: 468.779ms + - id: 200 request: proto: HTTP/1.1 proto_major: 1 @@ -6932,7 +7220,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6942,14 +7230,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545040e539b35aea954fb7","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 327.548959ms - - id: 170 + duration: 468.679125ms + - id: 201 request: proto: HTTP/1.1 proto_major: 1 @@ -6968,7 +7256,79 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 357.012917ms + - id: 202 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 356.838458ms + - id: 203 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6978,14 +7338,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545040e539b35aea954fb7","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 315.386041ms - - id: 171 + duration: 283.138125ms + - id: 204 request: proto: HTTP/1.1 proto_major: 1 @@ -7004,7 +7364,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -7020,8 +7380,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.943333ms - - id: 195 + duration: 332.269334ms + - id: 205 request: proto: HTTP/1.1 proto_major: 1 @@ -7040,7 +7400,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_mRHRJXtNHq1ErxNt + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -7050,14 +7410,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.754625ms - - id: 172 + duration: 352.303583ms + - id: 206 request: proto: HTTP/1.1 proto_major: 1 @@ -7076,7 +7436,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -7092,8 +7452,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.489791ms - - id: 173 + duration: 348.546791ms + - id: 207 request: proto: HTTP/1.1 proto_major: 1 @@ -7112,7 +7472,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -7122,33 +7482,69 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"members":[{"user_id":"auth0|66545040e539b35aea954fb7","email":"testaccorganizationmembers2@auth0.com","picture":"https://s.gravatar.com/avatar/89bb41f83b53cf422764a9d5a9bad2f1?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers2@auth0.com"},{"user_id":"auth0|6654503fe957844eac7ce6a5","email":"testaccorganizationmembers1@auth0.com","picture":"https://s.gravatar.com/avatar/4f34aa9f8f57ca4c76491ba399a9d6c2?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","name":"testaccorganizationmembers1@auth0.com"}],"start":0,"limit":100,"total":2}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 328.651417ms - - id: 174 + duration: 425.768333ms + - id: 208 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 80 + content_length: 5 + transfer_encoding: [] + trailer: {} + host: terraform-provider-auth0-dev.eu.auth0.com + remote_addr: "" + request_uri: "" + body: | + null + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - Go-Auth0/1.4.1 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14 + uncompressed: false + body: '{"members":[]}' + headers: + Content-Type: + - application/json; charset=utf-8 + status: 200 OK + code: 200 + duration: 350.564292ms + - id: 209 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 47 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|6654503fe957844eac7ce6a5","auth0|66545040e539b35aea954fb7"]} + {"members":["auth0|66549949cd5cb856cecf5af3"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members method: DELETE response: proto: HTTP/2.0 @@ -7164,27 +7560,27 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 289.045292ms - - id: 175 + duration: 282.197458ms + - id: 210 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 47 + content_length: 80 transfer_encoding: [] trailer: {} host: terraform-provider-auth0-dev.eu.auth0.com remote_addr: "" request_uri: "" body: | - {"members":["auth0|6654503fe957844eac7ce6a5"]} + {"members":["auth0|66549949cd5cb856cecf5af3","auth0|6654994f3a478dce1bb585d0"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members method: DELETE response: proto: HTTP/2.0 @@ -7200,8 +7596,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 309.575958ms - - id: 176 + duration: 313.037417ms + - id: 211 request: proto: HTTP/1.1 proto_major: 1 @@ -7213,14 +7609,14 @@ interactions: remote_addr: "" request_uri: "" body: | - {"members":["auth0|66545040e539b35aea954fb7"]} + {"members":["auth0|6654994f3a478dce1bb585d0"]} form: {} headers: Content-Type: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3/members + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members method: DELETE response: proto: HTTP/2.0 @@ -7236,8 +7632,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 309.459708ms - - id: 177 + duration: 283.234167ms + - id: 212 request: proto: HTTP/1.1 proto_major: 1 @@ -7255,7 +7651,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: DELETE response: proto: HTTP/2.0 @@ -7271,8 +7667,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 319.035459ms - - id: 178 + duration: 307.356958ms + - id: 213 request: proto: HTTP/1.1 proto_major: 1 @@ -7290,7 +7686,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66545040e539b35aea954fb7 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: DELETE response: proto: HTTP/2.0 @@ -7306,8 +7702,8 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 318.679959ms - - id: 179 + duration: 359.742167ms + - id: 214 request: proto: HTTP/1.1 proto_major: 1 @@ -7325,7 +7721,7 @@ interactions: - application/json User-Agent: - Go-Auth0/1.4.1 - url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 method: DELETE response: proto: HTTP/2.0 @@ -7341,4 +7737,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 354.233875ms + duration: 306.012834ms From ac4d3da3b010b2848ff24408a4fead6509af085f Mon Sep 17 00:00:00 2001 From: Kunal Dawar Date: Mon, 27 May 2024 20:17:42 +0530 Subject: [PATCH 4/8] Fix linting issues. --- internal/auth0/organization/data_source.go | 3 ++- internal/auth0/organization/resource_members.go | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/internal/auth0/organization/data_source.go b/internal/auth0/organization/data_source.go index e237e2c8e..35975ca4b 100644 --- a/internal/auth0/organization/data_source.go +++ b/internal/auth0/organization/data_source.go @@ -145,7 +145,8 @@ func fetchAllOrganizationMembers(ctx context.Context, api *management.Management } for _, member := range membersList.Members { - foundMembers = append(foundMembers, &member) + memberCopy := member + foundMembers = append(foundMembers, &memberCopy) } if !membersList.HasNext() { diff --git a/internal/auth0/organization/resource_members.go b/internal/auth0/organization/resource_members.go index 48818ee83..6739d34c3 100644 --- a/internal/auth0/organization/resource_members.go +++ b/internal/auth0/organization/resource_members.go @@ -3,6 +3,7 @@ package organization import ( "context" "fmt" + "github.com/auth0/go-auth0/management" "github.com/google/go-cmp/cmp" From 959cd4942a400388d000c09637772553f6fd16e9 Mon Sep 17 00:00:00 2001 From: Kunal Dawar Date: Mon, 27 May 2024 20:39:55 +0530 Subject: [PATCH 5/8] Refactor removed unnecessary point references to members --- internal/auth0/organization/data_source.go | 22 +++++++++++-------- internal/auth0/organization/flatten.go | 6 ++--- .../auth0/organization/resource_member.go | 2 +- .../auth0/organization/resource_members.go | 2 +- 4 files changed, 18 insertions(+), 14 deletions(-) diff --git a/internal/auth0/organization/data_source.go b/internal/auth0/organization/data_source.go index 35975ca4b..8d48ac0be 100644 --- a/internal/auth0/organization/data_source.go +++ b/internal/auth0/organization/data_source.go @@ -127,17 +127,23 @@ func fetchAllOrganizationConnections(ctx context.Context, api *management.Manage return foundConnections, nil } -func fetchAllOrganizationMembers(ctx context.Context, api *management.Management, organizationID string) ([]*management.OrganizationMember, error) { - var foundMembers []*management.OrganizationMember +func fetchAllOrganizationMembers( + ctx context.Context, + api *management.Management, + organizationID string, +) ([]management.OrganizationMember, error) { + var foundMembers []management.OrganizationMember var from string - firstTime := true + + options := []management.RequestOption{ + management.Take(100), + management.IncludeFields("user_id"), + } for { - var options []management.RequestOption - if !firstTime { + if from != "" { options = append(options, management.From(from)) } - options = append(options, management.Take(100), management.IncludeFields("user_id")) membersList, err := api.Organization.Members(ctx, organizationID, options...) if err != nil { @@ -145,8 +151,7 @@ func fetchAllOrganizationMembers(ctx context.Context, api *management.Management } for _, member := range membersList.Members { - memberCopy := member - foundMembers = append(foundMembers, &memberCopy) + foundMembers = append(foundMembers, member) } if !membersList.HasNext() { @@ -154,7 +159,6 @@ func fetchAllOrganizationMembers(ctx context.Context, api *management.Management } from = membersList.Next - firstTime = false } return foundMembers, nil diff --git a/internal/auth0/organization/flatten.go b/internal/auth0/organization/flatten.go index 6a81fb26f..dd05631a3 100644 --- a/internal/auth0/organization/flatten.go +++ b/internal/auth0/organization/flatten.go @@ -21,7 +21,7 @@ func flattenOrganizationForDataSource( data *schema.ResourceData, organization *management.Organization, connections []*management.OrganizationConnection, - members []*management.OrganizationMember, + members []management.OrganizationMember, ) error { result := multierror.Append( flattenOrganization(data, organization), @@ -98,7 +98,7 @@ func flattenOrganizationMemberRole(data *schema.ResourceData, role management.Or return result.ErrorOrNil() } -func flattenOrganizationMembers(data *schema.ResourceData, members []*management.OrganizationMember) error { +func flattenOrganizationMembers(data *schema.ResourceData, members []management.OrganizationMember) error { result := multierror.Append( data.Set("organization_id", data.Id()), data.Set("members", flattenOrganizationMembersSlice(members)), @@ -107,7 +107,7 @@ func flattenOrganizationMembers(data *schema.ResourceData, members []*management return result.ErrorOrNil() } -func flattenOrganizationMembersSlice(members []*management.OrganizationMember) []string { +func flattenOrganizationMembersSlice(members []management.OrganizationMember) []string { if len(members) == 0 { return nil } diff --git a/internal/auth0/organization/resource_member.go b/internal/auth0/organization/resource_member.go index 6123e0703..06b291c13 100644 --- a/internal/auth0/organization/resource_member.go +++ b/internal/auth0/organization/resource_member.go @@ -65,7 +65,7 @@ func readOrganizationMember(ctx context.Context, data *schema.ResourceData, meta userID := data.Get("user_id").(string) for _, member := range members { - if member.UserID != nil && *member.UserID == userID { + if member.GetUserID() == userID { return nil } } diff --git a/internal/auth0/organization/resource_members.go b/internal/auth0/organization/resource_members.go index 6739d34c3..72ad21799 100644 --- a/internal/auth0/organization/resource_members.go +++ b/internal/auth0/organization/resource_members.go @@ -140,7 +140,7 @@ func deleteOrganizationMembers(ctx context.Context, data *schema.ResourceData, m func guardAgainstErasingUnwantedMembers( organizationID string, - alreadyMembers []*management.OrganizationMember, + alreadyMembers []management.OrganizationMember, memberIDsToAdd []string, ) diag.Diagnostics { if len(alreadyMembers) == 0 { From 13a1178f242fdba081828238602ea8cc7d7f022c Mon Sep 17 00:00:00 2001 From: Kunal Dawar Date: Mon, 27 May 2024 20:42:34 +0530 Subject: [PATCH 6/8] fixed reference --- internal/acctest/sweep/organizations.go | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/internal/acctest/sweep/organizations.go b/internal/acctest/sweep/organizations.go index 53253398d..f35fdab22 100644 --- a/internal/acctest/sweep/organizations.go +++ b/internal/acctest/sweep/organizations.go @@ -24,14 +24,13 @@ func Organizations() { var result *multierror.Error var from string - firstTime := true - + options := []management.RequestOption{ + management.Take(100), + } for { - var options []management.RequestOption - if !firstTime { + if from != "" { options = append(options, management.From(from)) } - options = append(options, management.Take(100)) organizationList, err := api.Organization.List(ctx, options...) if err != nil { @@ -56,7 +55,6 @@ func Organizations() { } from = organizationList.Next - firstTime = false } return result.ErrorOrNil() From a02fd4dcb021c60a140aa44076f652d53b043468 Mon Sep 17 00:00:00 2001 From: Kunal Dawar Date: Mon, 27 May 2024 20:44:46 +0530 Subject: [PATCH 7/8] Fixed Lint issues. --- internal/auth0/organization/data_source.go | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/internal/auth0/organization/data_source.go b/internal/auth0/organization/data_source.go index 8d48ac0be..b98c8992a 100644 --- a/internal/auth0/organization/data_source.go +++ b/internal/auth0/organization/data_source.go @@ -150,10 +150,7 @@ func fetchAllOrganizationMembers( return nil, err } - for _, member := range membersList.Members { - foundMembers = append(foundMembers, member) - } - + foundMembers = append(foundMembers, membersList.Members...) if !membersList.HasNext() { break } From cab32442df36a927fcb881c2546df8a03ae06f76 Mon Sep 17 00:00:00 2001 From: Kunal Dawar Date: Mon, 27 May 2024 20:51:47 +0530 Subject: [PATCH 8/8] Refactor flattenOrganizationForDataSource to use flattenOrganizationMembersSlice --- internal/auth0/organization/flatten.go | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/internal/auth0/organization/flatten.go b/internal/auth0/organization/flatten.go index dd05631a3..a042176ce 100644 --- a/internal/auth0/organization/flatten.go +++ b/internal/auth0/organization/flatten.go @@ -26,18 +26,9 @@ func flattenOrganizationForDataSource( result := multierror.Append( flattenOrganization(data, organization), data.Set("connections", flattenOrganizationEnabledConnections(connections)), + data.Set("members", flattenOrganizationMembersSlice(members)), ) - var memberIDs []string - for _, member := range members { - memberIDs = append(memberIDs, member.GetUserID()) - } - - err := data.Set("members", memberIDs) - if err != nil { - result = multierror.Append(result, err) - } - return result.ErrorOrNil() }