diff --git a/internal/acctest/sweep/organizations.go b/internal/acctest/sweep/organizations.go index 1cbf9d6dc..f35fdab22 100644 --- a/internal/acctest/sweep/organizations.go +++ b/internal/acctest/sweep/organizations.go @@ -22,10 +22,17 @@ func Organizations() { return err } - var page int var result *multierror.Error + var from string + options := []management.RequestOption{ + management.Take(100), + } for { - organizationList, err := api.Organization.List(ctx, management.Page(page)) + if from != "" { + options = append(options, management.From(from)) + } + + organizationList, err := api.Organization.List(ctx, options...) if err != nil { return err } @@ -42,10 +49,12 @@ func Organizations() { log.Printf("[DEBUG] ✗ %s", organization.GetName()) } } + if !organizationList.HasNext() { break } - page++ + + from = organizationList.Next } return result.ErrorOrNil() diff --git a/internal/auth0/organization/data_source.go b/internal/auth0/organization/data_source.go index e0850fa73..b98c8992a 100644 --- a/internal/auth0/organization/data_source.go +++ b/internal/auth0/organization/data_source.go @@ -127,25 +127,35 @@ 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) - var page int +func fetchAllOrganizationMembers( + ctx context.Context, + api *management.Management, + organizationID string, +) ([]management.OrganizationMember, error) { + var foundMembers []management.OrganizationMember + var from string + + options := []management.RequestOption{ + management.Take(100), + management.IncludeFields("user_id"), + } for { - members, err := api.Organization.Members(ctx, organizationID, management.Page(page), management.PerPage(100)) - if err != nil { - return nil, err + if from != "" { + options = append(options, management.From(from)) } - for _, member := range members.Members { - foundMembers = append(foundMembers, member.GetUserID()) + membersList, err := api.Organization.Members(ctx, organizationID, options...) + if err != nil { + return nil, err } - if !members.HasNext() { + foundMembers = append(foundMembers, membersList.Members...) + if !membersList.HasNext() { break } - page++ + from = membersList.Next } return foundMembers, nil diff --git a/internal/auth0/organization/flatten.go b/internal/auth0/organization/flatten.go index 816df752d..a042176ce 100644 --- a/internal/auth0/organization/flatten.go +++ b/internal/auth0/organization/flatten.go @@ -21,12 +21,12 @@ 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), + data.Set("members", flattenOrganizationMembersSlice(members)), ) return result.ErrorOrNil() @@ -102,7 +102,6 @@ func flattenOrganizationMembersSlice(members []management.OrganizationMember) [] if len(members) == 0 { return nil } - flattenedMembers := make([]string, 0) for _, member := range members { flattenedMembers = append(flattenedMembers, member.GetUserID()) diff --git a/internal/auth0/organization/resource_member.go b/internal/auth0/organization/resource_member.go index de71fee96..06b291c13 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.GetUserID() == userID { return nil } } diff --git a/internal/auth0/organization/resource_members.go b/internal/auth0/organization/resource_members.go index 6b90bf1ad..72ad21799 100644 --- a/internal/auth0/organization/resource_members.go +++ b/internal/auth0/organization/resource_members.go @@ -5,6 +5,7 @@ import ( "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 +50,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 +80,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)) 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 ed72c2a90..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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 e91d9ba19..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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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.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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 @@ -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: 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 5fd701b41..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: '{"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: 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: '{"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: 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,49 +894,49 @@ 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 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: 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: 0 + content_length: 14 uncompressed: false - body: "" + 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,13 +1002,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: 305.131375ms + duration: 301.507541ms - 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_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 @@ -1038,13 +1038,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: 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 @@ -1440,7 +1440,7 @@ interactions: - 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: '{"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: 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,87 +1756,87 @@ 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 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/organizations/org_d5ivchkU2BNzWgUW + 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_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 316.134125ms + status: 200 OK + code: 200 + duration: 275.636ms - 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|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/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: 316.06275ms + status: 200 OK + code: 200 + 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_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 @@ -1866,13 +1866,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: 286.797334ms + 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_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=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: '{"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: 291.225792ms + 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_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 @@ -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: '{"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: 284.723042ms + 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/users/auth0%7C6654503fcd5cb856cecf246b + 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: '{"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: 278.669458ms + 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/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 @@ -2010,13 +2010,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|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 275.795125ms + duration: 302.587166ms - 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_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 method: GET response: proto: HTTP/2.0 @@ -2046,13 +2046,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: 300.361709ms + duration: 292.5835ms - 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_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 @@ -2080,15 +2080,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: 310.449584ms + duration: 317.952458ms - 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_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=MjAyNC0wNS0yNyAxNDozMTo0OS41OTEwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2116,15 +2116,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: 287.202083ms + duration: 318.22ms - 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_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 @@ -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: '{"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 + duration: 314.618667ms - 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/users/auth0%7C6654503fcd5cb856cecf246b + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -2190,13 +2190,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: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.129875ms + duration: 266.741ms - 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/users/auth0%7C665450453a478dce1bb55032 + 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,13 +2226,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: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 336.044042ms + duration: 296.71375ms - 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_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 @@ -2262,13 +2262,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: 292.592875ms + duration: 330.170542ms - 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_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,87 +2296,87 @@ 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.017542ms + 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/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: 282.048583ms + 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/members?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: 46 + content_length: 0 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 314.538084ms + status: 204 No Content + code: 204 + duration: 298.335416ms - 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/users/auth0%7C6654503fcd5cb856cecf246b + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -2406,13 +2406,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: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 276.923542ms + duration: 285.495541ms - 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/users/auth0%7C665450453a478dce1bb55032 + 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,13 +2442,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: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 443.616792ms + duration: 380.39575ms - 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/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 @@ -2476,15 +2476,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: 278.857083ms + duration: 471.634333ms - 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_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949465f0d3c058a33ba method: GET response: proto: HTTP/2.0 @@ -2514,13 +2514,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: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: 362.783792ms + duration: 338.773875ms - 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/organizations/org_3aXIGudTFUk9eqy6/enabled_connections?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 @@ -2550,13 +2550,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + 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.05025ms + duration: 347.181625ms - 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_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 @@ -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: '{"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 + duration: 353.858833ms - 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%7C6654503fcd5cb856cecf246b + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -2622,13 +2622,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: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 371.648916ms + duration: 420.402166ms - 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/users/auth0%7C665450453a478dce1bb55032 + 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,13 +2658,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: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 812.292916ms + duration: 351.781208ms - 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_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 @@ -2692,15 +2692,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: 324.849ms + duration: 308.138083ms - id: 75 request: proto: HTTP/1.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/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 @@ -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: '{"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: 331.386541ms + duration: 304.992375ms - 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|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%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: 352.861917ms + status: 200 OK + code: 200 + duration: 317.134333ms - 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/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 @@ -2802,13 +2802,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: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 355.370958ms + duration: 302.10775ms - 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%7C6654503fcd5cb856cecf246b + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -2838,13 +2838,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: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.696208ms + duration: 291.061917ms - 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/users/auth0%7C665450453a478dce1bb55032 + 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,13 +2874,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: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.178459ms + duration: 313.849083ms - 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_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 @@ -2908,15 +2908,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: 314.481042ms + duration: 351.223959ms - 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_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 @@ -2946,13 +2946,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: 313.045416ms + duration: 894.300958ms - 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_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 @@ -2982,13 +2982,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: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: 284.625792ms + duration: 306.072167ms - 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_3aXIGudTFUk9eqy6 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_d5ivchkU2BNzWgUW method: GET response: proto: HTTP/2.0 @@ -3018,13 +3018,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: 273.159458ms + duration: 306.74225ms - 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_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 @@ -3054,13 +3054,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: 304.968ms + duration: 310.989042ms - 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_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 @@ -3090,13 +3090,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: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.71775ms + duration: 279.995416ms - 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/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 @@ -3124,15 +3124,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: 287.867ms + duration: 272.970084ms - 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_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 @@ -3162,13 +3162,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: 317.787083ms + duration: 273.051583ms - 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_3aXIGudTFUk9eqy6/enabled_connections?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 @@ -3198,13 +3198,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + 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: 284.148084ms + duration: 281.804709ms - 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_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 @@ -3234,13 +3234,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: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.957833ms + duration: 283.616625ms - 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/users/auth0%7C6654503fcd5cb856cecf246b + 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 @@ -3268,51 +3268,51 @@ 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: 307.825083ms + duration: 297.282042ms - id: 91 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|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/users/auth0%7C665450453a478dce1bb55032 - 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: '{"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: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 392.745083ms + status: 204 No Content + code: 204 + duration: 298.004583ms - 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_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,13 +3342,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":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 377.766584ms + duration: 302.921541ms - 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_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 @@ -3376,15 +3376,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: 349.512833ms + duration: 313.715209ms - id: 94 request: proto: HTTP/1.1 @@ -3404,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_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 @@ -3414,13 +3414,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: 328.388416ms + duration: 302.280166ms - id: 95 request: proto: HTTP/1.1 @@ -3440,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 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994a3d0a9374995dbe52 method: GET response: proto: HTTP/2.0 @@ -3450,13 +3450,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: 331.430708ms + duration: 291.234417ms - id: 96 request: proto: HTTP/1.1 @@ -3476,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_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 @@ -3486,13 +3486,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: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 331.615583ms + duration: 308.61025ms - id: 97 request: proto: HTTP/1.1 @@ -3512,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_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 @@ -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|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 352.329917ms + duration: 315.091292ms - id: 98 request: proto: HTTP/1.1 @@ -3548,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_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 @@ -3556,15 +3556,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: 353.000875ms + duration: 281.608833ms - id: 99 request: proto: HTTP/1.1 @@ -3584,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 @@ -3594,13 +3594,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":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 313.037584ms + duration: 326.264625ms - id: 100 request: proto: HTTP/1.1 @@ -3620,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/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 @@ -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: 291.17675ms + duration: 292.878334ms - id: 101 request: proto: HTTP/1.1 @@ -3656,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 @@ -3666,13 +3666,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: '{"id":"org_d5ivchkU2BNzWgUW","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 320.605875ms + duration: 385.354625ms - id: 102 request: proto: HTTP/1.1 @@ -3692,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%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 @@ -3702,13 +3702,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: 305.070583ms + duration: 354.431209ms - id: 103 request: proto: HTTP/1.1 @@ -3728,7 +3728,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 @@ -3738,13 +3738,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|6654994a3d0a9374995dbe52"},{"user_id":"auth0|66549949465f0d3c058a33ba"}],"next":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.648125ms + duration: 293.61475ms - id: 104 request: proto: HTTP/1.1 @@ -3764,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_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 @@ -3772,15 +3772,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: 294.819583ms + duration: 337.474167ms - id: 105 request: proto: HTTP/1.1 @@ -3800,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/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 @@ -3810,13 +3810,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":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 328.686042ms + duration: 355.319083ms - id: 106 request: proto: HTTP/1.1 @@ -3836,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 @@ -3846,13 +3846,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: '{"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.299542ms + duration: 355.170333ms - id: 107 request: proto: HTTP/1.1 @@ -3872,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 @@ -3880,15 +3880,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: 317.25475ms + duration: 285.766208ms - id: 108 request: proto: HTTP/1.1 @@ -3908,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_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,13 +3918,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: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 320.434541ms + duration: 285.844042ms - id: 109 request: proto: HTTP/1.1 @@ -3944,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/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 @@ -3954,13 +3954,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":"MjAyNC0wNS0yNyAxNDozMjoxMi43MDAwMDBVVEMsYXV0aDB8NjY1NDk5NGEzZDBhOTM3NDk5NWRiZTUy"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 304.113458ms + duration: 319.311875ms - id: 110 request: proto: HTTP/1.1 @@ -3980,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/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 @@ -3988,124 +3988,1204 @@ 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: 305.030375ms + duration: 276.700542ms - 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|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%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: 303.010334ms + status: 200 OK + code: 200 + duration: 273.35225ms - 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|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/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: 314.389959ms + status: 200 OK + code: 200 + duration: 325.428458ms - 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|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: DELETE + 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: 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: 285.846ms + - id: 114 + 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: -1 + uncompressed: true + 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.60275ms + - 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_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: 299.238125ms + - 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/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: -1 + uncompressed: true + 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.3965ms + - 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/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.122875ms + - 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_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: 470.72425ms + - 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_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: -1 + uncompressed: true + 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: 486.479209ms + - 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_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: 283.870459ms + - 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_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: 307.634166ms + - 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_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: -1 + uncompressed: true + 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: 327.165042ms + - 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_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.65325ms + - 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_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: 299.423542ms + - 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_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: 320.812833ms + - 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_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: -1 + uncompressed: true + 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.849875ms + - id: 127 + 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: 303.831958ms + - id: 128 + 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: 310.601541ms + - id: 129 + 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: 303.04925ms + - id: 130 + 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: 329.01525ms + - id: 131 + 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: -1 + uncompressed: true + 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: 332.966125ms + - id: 132 + 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: 298.400167ms + - id: 133 + 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: -1 + uncompressed: true + 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: 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 + 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: 273.873709ms + - id: 136 + 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: -1 + uncompressed: true + 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.097542ms + - id: 137 + 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: 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 + 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: -1 + uncompressed: true + 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: 281.010417ms + - id: 140 + 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: 280.442167ms + - id: 141 + 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|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: 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.937417ms - - id: 114 + duration: 290.687042ms + - id: 142 + 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|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_d5ivchkU2BNzWgUW/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: 303.479042ms + - id: 143 + 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: 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: 302.519ms + - id: 144 request: proto: HTTP/1.1 proto_major: 1 @@ -4123,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 @@ -4139,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 @@ -4158,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 @@ -4174,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 @@ -4193,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 @@ -4209,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 f018693a8..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,49 +462,49 @@ 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 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|6654503fe957844eac7ce6a5"]} + 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_qOwDheZwk7lYAeq3/members - method: DELETE + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 + 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: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: 204 No Content - code: 204 - duration: 316.564375ms + status: 200 OK + code: 200 + duration: 302.402833ms - 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%7C6654503fe957844eac7ce6a5 + 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 @@ -532,15 +532,15 @@ 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: 303.133917ms + duration: 281.771708ms - 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%7C66545040e539b35aea954fb7 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -570,49 +570,49 @@ 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: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 380.49275ms + duration: 297.239083ms - id: 16 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|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 - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/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_qOwDheZwk7lYAeq3","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: 319.408625ms + status: 204 No Content + code: 204 + duration: 329.860458ms - 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%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -642,13 +642,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: 291.214375ms + duration: 511.856459ms - 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/users/auth0%7C66545040e539b35aea954fb7 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -678,13 +678,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: 281.905375ms + duration: 343.243583ms - 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_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -714,13 +714,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: 304.822375ms + duration: 422.7405ms - 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_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 @@ -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: '{"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: 293.218875ms + duration: 278.562209ms - 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_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -784,15 +784,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-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: 300.768ms + duration: 299.674625ms - 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_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -822,13 +822,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: 284.866291ms + duration: 299.974125ms - 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_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/members?fields=user_id&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: '{"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: 300.08875ms + duration: 279.858208ms - 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_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 @@ -892,15 +892,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: 301.136125ms + duration: 296.531167ms - 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_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -930,13 +930,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: 290.218875ms + duration: 300.69275ms - 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_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 @@ -972,7 +972,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.978042ms + duration: 306.788084ms - 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_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 @@ -1000,15 +1000,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: 301.051542ms + duration: 300.204458ms - 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%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -1038,13 +1038,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: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 315.431875ms + duration: 302.64625ms - 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/users/auth0%7C66545040e539b35aea954fb7 + 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 @@ -1074,13 +1074,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: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 316.137792ms + duration: 300.938417ms - 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_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 @@ -1108,15 +1108,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","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: 280.980708ms + duration: 299.418042ms - 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_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 @@ -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: '{"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.310084ms + duration: 309.544334ms - 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_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -1182,13 +1182,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","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: 274.808ms + duration: 274.482792ms - 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_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 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_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.059167ms + duration: 315.367709ms - 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_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 @@ -1252,15 +1252,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: 302.0565ms + duration: 296.033584ms - 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/users/auth0%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -1290,13 +1290,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: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 391.2045ms + duration: 294.997125ms - 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%7C66545040e539b35aea954fb7 + 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 @@ -1326,13 +1326,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: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 286.897ms + duration: 282.15175ms - 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_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 @@ -1360,15 +1360,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","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: 284.731875ms + duration: 298.116292ms - 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_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 @@ -1396,51 +1396,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: '{"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: 293.364166ms + duration: 284.500583ms - 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|6654503fe957844eac7ce6a5"]} + 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_qOwDheZwk7lYAeq3/members - method: POST + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 + 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: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: 204 No Content - code: 204 - duration: 314.659375ms + status: 200 OK + code: 200 + duration: 321.77825ms - 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_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -1470,13 +1470,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: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.127083ms + duration: 298.037ms - 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_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 @@ -1504,51 +1504,51 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","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: 292.086709ms + duration: 429.018625ms - id: 42 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|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/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_2cLRyELw4VaWu2le/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: 330.706042ms + status: 204 No Content + code: 204 + duration: 297.339959ms - 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_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 @@ -1578,13 +1578,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":"MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 493.084291ms + duration: 313.214916ms - 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_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 @@ -1612,15 +1612,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","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: 346.151958ms + duration: 297.375042ms - 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_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 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: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 1.780922541s + duration: 333.801542ms - 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_qOwDheZwk7lYAeq3/members?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 @@ -1686,13 +1686,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: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 320.211792ms + duration: 301.303917ms - 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/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 @@ -1722,13 +1722,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":"MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 279.259541ms + duration: 317.549625ms - 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%7C66545040e539b35aea954fb7 + 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 @@ -1756,15 +1756,15 @@ interactions: proto_minor: 0 transfer_encoding: [] 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"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.427584ms + duration: 301.828625ms - 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_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -1794,13 +1794,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: 295.714ms + duration: 328.097375ms - 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_qOwDheZwk7lYAeq3/members?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 @@ -1830,13 +1830,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: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 299.194ms + duration: 328.524042ms - 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_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 @@ -1866,13 +1866,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":"MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.823ms + duration: 352.566792ms - 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_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/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz&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: '{"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: 330.794958ms + duration: 337.751834ms - 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_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 @@ -1938,13 +1938,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: '{"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.329125ms + duration: 422.761083ms - 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/users/auth0%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -1974,13 +1974,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: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.446333ms + duration: 345.366ms - 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/users/auth0%7C66545040e539b35aea954fb7 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -2010,13 +2010,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: '{"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.310167ms + duration: 298.049417ms - 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_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 @@ -2046,13 +2046,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":"MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 310.832166ms + duration: 310.149666ms - 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_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=MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2080,51 +2080,51 @@ 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: 294.666875ms + duration: 279.054208ms - 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|66545040e539b35aea954fb7"]} + 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_qOwDheZwk7lYAeq3/members - method: POST + 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: 0 - uncompressed: false - body: "" + 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: 204 No Content - code: 204 - duration: 286.939875ms + status: 200 OK + code: 200 + duration: 295.967583ms - 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_qOwDheZwk7lYAeq3/members?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 @@ -2154,13 +2154,13 @@ 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: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 293.959292ms + duration: 341.711292ms - 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_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 @@ -2190,13 +2190,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":"MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 284.162417ms + duration: 304.952667ms - 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_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/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -2224,15 +2224,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: 289.98975ms + duration: 315.498917ms - 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_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 @@ -2262,13 +2262,13 @@ 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: '{"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: 307.771542ms + duration: 295.177ms - 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_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -2298,13 +2298,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","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: 292.749584ms + duration: 288.60725ms - 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_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 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_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 305.119125ms + duration: 299.855041ms - 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_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 @@ -2370,13 +2370,13 @@ 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|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMTo1OS44OTAwMDBVVEMsYXV0aDB8NjY1NDk5NDljZDVjYjg1NmNlY2Y1YWYz"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 322.540417ms + duration: 432.589167ms - 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/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 @@ -2404,51 +2404,51 @@ 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: 270.086083ms + duration: 308.944916ms - id: 67 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|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/users/auth0%7C66545040e539b35aea954fb7 - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members + method: POST 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: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"}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 273.981ms + status: 204 No Content + code: 204 + duration: 289.251625ms - 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/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 @@ -2478,13 +2478,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + 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: 276.282583ms + duration: 301.484458ms - 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_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=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=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: '{"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}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 341.767833ms + duration: 287.70825ms - 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/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -2550,13 +2550,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: 273.568167ms + duration: 480.42275ms - 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_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 @@ -2592,7 +2592,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 283.864708ms + duration: 295.403916ms - 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_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 @@ -2622,13 +2622,13 @@ 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 + duration: 295.461334ms - 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/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 @@ -2656,15 +2656,15 @@ 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: 295.926583ms + duration: 307.792ms - 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/users/auth0%7C66545040e539b35aea954fb7 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -2694,13 +2694,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: '{"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.9065ms + duration: 310.7325ms - id: 75 request: proto: HTTP/1.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_qOwDheZwk7lYAeq3 + 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 @@ -2730,13 +2730,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","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: 286.715042ms + duration: 292.9665ms - 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_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 @@ -2766,49 +2766,49 @@ 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 + duration: 311.121667ms - 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|6654503fe957844eac7ce6a5"]} + 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_qOwDheZwk7lYAeq3/members - method: DELETE + 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 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: 285.836958ms + status: 200 OK + code: 200 + duration: 281.805291ms - 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/organizations/org_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -2838,13 +2838,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + 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: 283.674334ms + duration: 307.437333ms - 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_qOwDheZwk7lYAeq3/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 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: '{"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.55675ms + duration: 270.764542ms - 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_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -2910,13 +2910,13 @@ 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: '{"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.568667ms + duration: 305.754959ms - 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_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 @@ -2946,13 +2946,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + 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: 297.166833ms + duration: 294.036917ms - 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_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/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&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: '{"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: 285.350666ms + duration: 313.13975ms - 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_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -3018,13 +3018,13 @@ 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: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 294.819ms + duration: 275.431583ms - 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/users/auth0%7C6654503fe957844eac7ce6a5 + 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 @@ -3054,13 +3054,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: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 520.27ms + duration: 285.31425ms - 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/users/auth0%7C66545040e539b35aea954fb7 + 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 @@ -3090,13 +3090,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: '{"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: 305.497334ms + duration: 295.429916ms - 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/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 @@ -3124,15 +3124,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","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: 304.627208ms + duration: 420.818667ms - 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_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 @@ -3162,13 +3162,13 @@ 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: '{"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: 316.195875ms + duration: 313.26575ms - 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_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -3198,13 +3198,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","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: 299.542041ms + duration: 307.7075ms - 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_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 method: GET response: proto: HTTP/2.0 @@ -3234,13 +3234,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + 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.087166ms + duration: 345.359542ms - 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_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 @@ -3270,13 +3270,13 @@ 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"},{"user_id":"auth0|66549949cd5cb856cecf5af3"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 327.256834ms + duration: 354.493667ms - 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/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 @@ -3304,51 +3304,51 @@ 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: 302.840583ms + duration: 292.2975ms - id: 92 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|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/users/auth0%7C66545040e539b35aea954fb7 - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/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":"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"}' + content_length: 0 + uncompressed: false + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 286.216875ms + status: 204 No Content + code: 204 + duration: 298.130459ms - 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_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -3378,13 +3378,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: 289.614333ms + duration: 301.221458ms - id: 94 request: proto: HTTP/1.1 @@ -3404,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/members?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 @@ -3414,49 +3414,49 @@ 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: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 298.089625ms + duration: 302.551625ms - 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|66545040e539b35aea954fb7"]} + 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_qOwDheZwk7lYAeq3/members - method: DELETE + 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 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|6654994f3a478dce1bb585d0"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 307.857334ms + status: 200 OK + code: 200 + duration: 293.571333ms - id: 96 request: proto: HTTP/1.1 @@ -3476,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 @@ -3484,15 +3484,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","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: 276.877333ms + duration: 300.700084ms - id: 97 request: proto: HTTP/1.1 @@ -3512,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_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 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: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 282.199709ms + duration: 275.81075ms - id: 98 request: proto: HTTP/1.1 @@ -3548,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/members?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 @@ -3556,15 +3556,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: 268.888875ms + duration: 282.924125ms - id: 99 request: proto: HTTP/1.1 @@ -3584,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 + 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 @@ -3594,13 +3594,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 309.153375ms + duration: 304.610209ms - id: 100 request: proto: HTTP/1.1 @@ -3620,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_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/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&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: 305.089791ms + duration: 465.170083ms - id: 101 request: proto: HTTP/1.1 @@ -3656,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_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 @@ -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: '{"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.023125ms + duration: 303.057625ms - id: 102 request: proto: HTTP/1.1 @@ -3692,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%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -3702,13 +3702,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: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: 306.041833ms + duration: 302.820166ms - id: 103 request: proto: HTTP/1.1 @@ -3728,7 +3728,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/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -3738,13 +3738,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: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 398.272084ms + duration: 293.177959ms - id: 104 request: proto: HTTP/1.1 @@ -3764,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 + 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 @@ -3774,13 +3774,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 404.347083ms + duration: 305.703458ms - id: 105 request: proto: HTTP/1.1 @@ -3800,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/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=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&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: 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: 367.045458ms + duration: 291.227292ms - id: 106 request: proto: HTTP/1.1 @@ -3836,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_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -3846,13 +3846,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: 339.4155ms + duration: 298.591125ms - id: 107 request: proto: HTTP/1.1 @@ -3872,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 @@ -3888,7 +3888,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 300.497292ms + duration: 285.425458ms - id: 108 request: proto: HTTP/1.1 @@ -3908,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 @@ -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: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 288.591166ms + duration: 296.850334ms - id: 109 request: proto: HTTP/1.1 @@ -3944,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_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=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -3952,15 +3952,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: 280.380291ms + duration: 317.183708ms - id: 110 request: proto: HTTP/1.1 @@ -3980,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%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -3990,13 +3990,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: 280.431708ms + duration: 289.606958ms - id: 111 request: proto: HTTP/1.1 @@ -4016,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 @@ -4026,13 +4026,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: 285.934042ms + duration: 350.612042ms - id: 112 request: proto: HTTP/1.1 @@ -4052,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 @@ -4062,13 +4062,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: 331.479375ms + duration: 308.442916ms - id: 113 request: proto: HTTP/1.1 @@ -4088,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 + 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 @@ -4098,13 +4098,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + body: '{"members":[{"user_id":"auth0|6654994f3a478dce1bb585d0"}],"next":"MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 295.146333ms + duration: 313.323167ms - id: 114 request: proto: HTTP/1.1 @@ -4124,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_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/members?fields=user_id&from=MjAyNC0wNS0yNyAxNDozMjowOS44MzkwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -4132,51 +4132,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: 326.366791ms + duration: 306.56275ms - id: 115 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|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?include_totals=true&page=0&per_page=100 - method: GET + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le/members + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 46 + content_length: 0 uncompressed: false - body: '{"members":[],"start":0,"limit":100,"total":0}' + body: "" headers: Content-Type: - application/json; charset=utf-8 - status: 200 OK - code: 200 - duration: 281.9395ms + status: 204 No Content + code: 204 + duration: 286.618292ms - id: 116 request: proto: HTTP/1.1 @@ -4196,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 @@ -4206,13 +4206,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: 336.36775ms + duration: 307.281166ms - id: 117 request: proto: HTTP/1.1 @@ -4232,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 @@ -4248,7 +4248,7 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 328.413625ms + duration: 309.359667ms - id: 118 request: proto: HTTP/1.1 @@ -4268,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 @@ -4276,15 +4276,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: 354.267625ms + duration: 298.571292ms - id: 119 request: proto: HTTP/1.1 @@ -4304,7 +4304,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 method: GET response: proto: HTTP/2.0 @@ -4314,13 +4314,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: '{"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.83275ms + duration: 301.688708ms - id: 120 request: proto: HTTP/1.1 @@ -4340,7 +4340,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/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -4350,13 +4350,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: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 278.0995ms + duration: 316.975416ms - id: 121 request: proto: HTTP/1.1 @@ -4376,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 + 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 @@ -4384,15 +4384,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","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: 314.3045ms + duration: 313.033459ms - id: 122 request: proto: HTTP/1.1 @@ -4412,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_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -4422,13 +4422,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + 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.141792ms + duration: 351.490917ms - id: 123 request: proto: HTTP/1.1 @@ -4448,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_qOwDheZwk7lYAeq3/enabled_connections?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -4458,13 +4458,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + 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: 328.86625ms + duration: 283.757167ms - id: 124 request: proto: HTTP/1.1 @@ -4484,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/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le 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_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 280.921333ms + duration: 324.269375ms - id: 125 request: proto: HTTP/1.1 @@ -4520,7 +4520,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 @@ -4528,15 +4528,15 @@ 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: 305.833792ms + duration: 349.703375ms - id: 126 request: proto: HTTP/1.1 @@ -4556,7 +4556,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/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -4566,13 +4566,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: '{"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.534083ms + duration: 348.978417ms - id: 127 request: proto: HTTP/1.1 @@ -4592,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 + 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 @@ -4602,13 +4602,13 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","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: 279.234208ms + duration: 429.459167ms - id: 128 request: proto: HTTP/1.1 @@ -4628,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 + 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,15 +4636,15 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","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: 301.19575ms + duration: 352.713958ms - id: 129 request: proto: HTTP/1.1 @@ -4664,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/enabled_connections?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 @@ -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-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: 300.71ms + duration: 283.20525ms - id: 130 request: proto: HTTP/1.1 @@ -4700,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_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 @@ -4708,15 +4708,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: 321.872042ms + duration: 312.142667ms - id: 131 request: proto: HTTP/1.1 @@ -4736,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%7C6654503fe957844eac7ce6a5 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -4746,13 +4746,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: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: 288.508125ms + duration: 270.354708ms - id: 132 request: proto: HTTP/1.1 @@ -4772,7 +4772,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/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -4782,13 +4782,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: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 302.889334ms + duration: 306.568625ms - id: 133 request: proto: HTTP/1.1 @@ -4808,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 @@ -4818,13 +4818,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: 300.096417ms + duration: 371.709542ms - id: 134 request: proto: HTTP/1.1 @@ -4844,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 + 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 @@ -4854,14 +4854,1130 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","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: 297.987959ms + - id: 135 + 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 + 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: 361.904125ms + - id: 136 + 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: 279.155416ms + - id: 137 + 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/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: 354.682875ms + - 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_2cLRyELw4VaWu2le/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: 416.736541ms + - id: 139 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + 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: 327.916625ms + - id: 140 + 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%7C6654994f3a478dce1bb585d0 + 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: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: 382.198042ms + - id: 141 + 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: 398.371042ms + - id: 142 + 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: 316.226958ms + - id: 143 + 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/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: 321.436625ms + - id: 144 + 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 + 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: 328.860375ms + - id: 145 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + 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: 300.849583ms + - id: 146 + 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%7C6654994f3a478dce1bb585d0 + 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: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: 329.134958ms + - id: 147 + 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: 306.679584ms + - id: 148 + 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: 293.788833ms + - id: 149 + 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/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: 384.273959ms + - id: 150 + 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 + 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: 307.878708ms + - id: 151 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + 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: 309.686291ms + - id: 152 + 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%7C6654994f3a478dce1bb585d0 + 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: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.824584ms + - id: 153 + 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: 302.026416ms + - id: 154 + 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: 320.053375ms + - id: 155 + 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/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: 315.871583ms + - id: 156 + 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 + 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: 306.160417ms + - id: 157 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + 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: 384.703458ms + - id: 158 + 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%7C6654994f3a478dce1bb585d0 + 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: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: 344.691ms + - id: 159 + 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: 368.538875ms + - id: 160 + 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|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_2cLRyELw4VaWu2le/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: 204 No Content + code: 204 + duration: 353.468125ms + - id: 161 + 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|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_2cLRyELw4VaWu2le/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: 204 No Content + code: 204 + duration: 353.596125ms + - id: 162 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + 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: 353.534708ms + - id: 163 + 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 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: -1 + uncompressed: true + 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: 353.430583ms + - id: 164 + 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: 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: 278.941666ms - - id: 135 + duration: 428.239667ms + - id: 166 request: proto: HTTP/1.1 proto_major: 1 @@ -4880,7 +5996,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/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -4890,14 +6006,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + 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.762875ms - - id: 136 + duration: 312.45725ms + - id: 167 request: proto: HTTP/1.1 proto_major: 1 @@ -4916,7 +6032,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%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -4924,16 +6040,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: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: 293.746667ms - - id: 137 + duration: 307.449208ms + - id: 168 request: proto: HTTP/1.1 proto_major: 1 @@ -4952,7 +6068,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 method: GET response: proto: HTTP/2.0 @@ -4962,14 +6078,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: '{"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.833084ms - - id: 138 + duration: 292.999125ms + - id: 169 request: proto: HTTP/1.1 proto_major: 1 @@ -4988,7 +6104,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/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 @@ -4998,14 +6114,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: '{"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: 304.83525ms - - id: 139 + duration: 303.514542ms + - id: 170 request: proto: HTTP/1.1 proto_major: 1 @@ -5024,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 + 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 @@ -5034,86 +6150,86 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + 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: 310.74225ms - - id: 140 + duration: 319.217ms + - id: 171 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|66545040e539b35aea954fb7"]} + 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_qOwDheZwk7lYAeq3/members - method: POST + 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: 0 + content_length: 14 uncompressed: false - body: "" + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 297.184833ms - - id: 141 + status: 200 OK + code: 200 + duration: 382.061167ms + - id: 172 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|6654503fe957844eac7ce6a5"]} + 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_qOwDheZwk7lYAeq3/members - method: POST + 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: 0 + content_length: 14 uncompressed: false - body: "" + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 - status: 204 No Content - code: 204 - duration: 326.0825ms - - id: 142 + status: 200 OK + code: 200 + duration: 397.585917ms + - id: 173 request: proto: HTTP/1.1 proto_major: 1 @@ -5132,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 @@ -5142,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: 307.440916ms - - id: 143 + duration: 295.250333ms + - id: 174 request: proto: HTTP/1.1 proto_major: 1 @@ -5168,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/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 @@ -5176,16 +6292,16 @@ interactions: proto_minor: 0 transfer_encoding: [] 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}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 352.463417ms - - id: 144 + duration: 299.07475ms + - id: 175 request: proto: HTTP/1.1 proto_major: 1 @@ -5204,7 +6320,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 method: GET response: proto: HTTP/2.0 @@ -5214,14 +6330,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: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 281.600792ms - - id: 145 + duration: 407.225416ms + - id: 176 request: proto: HTTP/1.1 proto_major: 1 @@ -5240,7 +6356,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/organizations/org_2cLRyELw4VaWu2le/enabled_connections?include_totals=true&page=0&per_page=100 method: GET response: proto: HTTP/2.0 @@ -5250,14 +6366,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: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 321.414417ms - - id: 146 + duration: 408.023875ms + - id: 177 request: proto: HTTP/1.1 proto_major: 1 @@ -5276,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 + 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 @@ -5286,14 +6402,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + 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: 317.110708ms - - id: 147 + duration: 312.463916ms + - id: 178 request: proto: HTTP/1.1 proto_major: 1 @@ -5312,7 +6428,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=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -5320,16 +6436,16 @@ interactions: proto_minor: 0 transfer_encoding: [] 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}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 315.327375ms - - id: 148 + duration: 289.679417ms + - id: 179 request: proto: HTTP/1.1 proto_major: 1 @@ -5348,7 +6464,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 @@ -5358,14 +6474,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: '{"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: 322.249209ms - - id: 149 + duration: 304.265791ms + - id: 180 request: proto: HTTP/1.1 proto_major: 1 @@ -5384,7 +6500,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%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -5394,14 +6510,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: '{"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: 294.956666ms - - id: 150 + duration: 294.252208ms + - id: 181 request: proto: HTTP/1.1 proto_major: 1 @@ -5420,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 @@ -5430,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: 399.551459ms - - id: 151 + duration: 304.539833ms + - id: 182 request: proto: HTTP/1.1 proto_major: 1 @@ -5456,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/enabled_connections?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 @@ -5466,14 +6582,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + 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: 408.492292ms - - id: 152 + duration: 284.10475ms + - id: 183 request: proto: HTTP/1.1 proto_major: 1 @@ -5492,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 @@ -5502,14 +6618,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: 292.893292ms + - id: 184 request: proto: HTTP/1.1 proto_major: 1 @@ -5528,7 +6644,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 @@ -5536,16 +6652,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: 334.238708ms - - id: 154 + duration: 283.432042ms + - id: 185 request: proto: HTTP/1.1 proto_major: 1 @@ -5564,7 +6680,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/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 @@ -5572,16 +6688,16 @@ interactions: proto_minor: 0 transfer_encoding: [] 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"}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 331.611416ms - - id: 155 + duration: 287.736291ms + - id: 186 request: proto: HTTP/1.1 proto_major: 1 @@ -5600,7 +6716,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 @@ -5610,14 +6726,50 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + 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.008583ms - - id: 156 + duration: 294.057208ms + - 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_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.803209ms + - id: 188 request: proto: HTTP/1.1 proto_major: 1 @@ -5636,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_qOwDheZwk7lYAeq3/members?include_totals=true&page=0&per_page=100 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -5646,14 +6798,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: '{"id":"org_2cLRyELw4VaWu2le","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 334.556791ms - - id: 157 + duration: 278.973041ms + - id: 189 request: proto: HTTP/1.1 proto_major: 1 @@ -5672,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/members?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 @@ -5682,14 +6834,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: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 335.095417ms - - id: 158 + duration: 277.831208ms + - id: 190 request: proto: HTTP/1.1 proto_major: 1 @@ -5708,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 @@ -5718,14 +6870,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: 351.483083ms - - id: 159 + duration: 285.331667ms + - 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_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: 299.050333ms + - id: 192 request: proto: HTTP/1.1 proto_major: 1 @@ -5744,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_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -5754,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: 350.736417ms - - id: 160 + duration: 282.586666ms + - id: 193 request: proto: HTTP/1.1 proto_major: 1 @@ -5780,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 @@ -5796,8 +6984,8 @@ interactions: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 418.379292ms - - id: 161 + duration: 338.160333ms + - id: 194 request: proto: HTTP/1.1 proto_major: 1 @@ -5816,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 @@ -5826,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: 530.77175ms - - id: 162 + duration: 408.698666ms + - id: 195 request: proto: HTTP/1.1 proto_major: 1 @@ -5852,7 +7040,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 @@ -5860,16 +7048,16 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: -1 - uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","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: 301.302208ms - - id: 163 + duration: 283.663542ms + - id: 196 request: proto: HTTP/1.1 proto_major: 1 @@ -5888,7 +7076,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/users/auth0%7C66549949cd5cb856cecf5af3 method: GET response: proto: HTTP/2.0 @@ -5898,14 +7086,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"enabled_connections":[],"start":0,"limit":0,"total":0}' + 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: 321.458792ms - - id: 164 + duration: 301.85825ms + - id: 197 request: proto: HTTP/1.1 proto_major: 1 @@ -5924,7 +7112,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%7C6654994f3a478dce1bb585d0 method: GET response: proto: HTTP/2.0 @@ -5934,14 +7122,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: '{"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.972125ms - - id: 165 + duration: 322.830916ms + - id: 198 request: proto: HTTP/1.1 proto_major: 1 @@ -5960,7 +7148,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 method: GET response: proto: HTTP/2.0 @@ -5970,14 +7158,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: '{"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.165583ms - - id: 166 + duration: 414.279167ms + - id: 199 request: proto: HTTP/1.1 proto_major: 1 @@ -5996,7 +7184,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/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 +7194,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: '{"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.498ms - - id: 167 + duration: 468.779ms + - id: 200 request: proto: HTTP/1.1 proto_major: 1 @@ -6032,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 + 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 +7230,14 @@ interactions: trailer: {} content_length: -1 uncompressed: true - body: '{"id":"org_qOwDheZwk7lYAeq3","name":"some-org-testaccorganizationmembers","display_name":"testaccorganizationmembers"}' + 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: 301.1245ms - - id: 168 + duration: 468.679125ms + - id: 201 request: proto: HTTP/1.1 proto_major: 1 @@ -6068,7 +7256,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=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6076,16 +7264,16 @@ interactions: proto_minor: 0 transfer_encoding: [] 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}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 322.894ms - - id: 169 + duration: 357.012917ms + - id: 202 request: proto: HTTP/1.1 proto_major: 1 @@ -6104,7 +7292,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=MjAyNC0wNS0yNyAxNDozMjo0Ny4yMzIwMDBVVEMsYXV0aDB8NjY1NDk5NGYzYTQ3OGRjZTFiYjU4NWQw&include_fields=true&include_totals=true&per_page=50&take=100 method: GET response: proto: HTTP/2.0 @@ -6112,16 +7300,16 @@ interactions: proto_minor: 0 transfer_encoding: [] 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}' + content_length: 14 + uncompressed: false + body: '{"members":[]}' headers: Content-Type: - application/json; charset=utf-8 status: 200 OK code: 200 - duration: 327.548959ms - - id: 170 + duration: 356.838458ms + - id: 203 request: proto: HTTP/1.1 proto_major: 1 @@ -6140,7 +7328,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 @@ -6150,14 +7338,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: 315.386041ms - - id: 171 + duration: 283.138125ms + - id: 204 + 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: 332.269334ms + - id: 205 request: proto: HTTP/1.1 proto_major: 1 @@ -6176,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_qOwDheZwk7lYAeq3 + url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_2cLRyELw4VaWu2le method: GET response: proto: HTTP/2.0 @@ -6186,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 @@ -6212,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 @@ -6228,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 @@ -6248,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 @@ -6258,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 @@ -6300,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 @@ -6336,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 @@ -6349,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 @@ -6372,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 @@ -6391,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 @@ -6407,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 @@ -6426,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 @@ -6442,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 @@ -6461,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 @@ -6477,4 +7737,4 @@ interactions: - application/json; charset=utf-8 status: 204 No Content code: 204 - duration: 354.233875ms + duration: 306.012834ms