diff --git a/docs/data-sources/user.md b/docs/data-sources/user.md
index 43fa995bd..de0d4382b 100644
--- a/docs/data-sources/user.md
+++ b/docs/data-sources/user.md
@@ -37,6 +37,7 @@ data "auth0_user" "my_user" {
- `name` (String) Name of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: [Configure Identity Provider Connection for User Profile Updates](https://auth0.com/docs/manage-users/user-accounts/user-profiles/configure-connection-sync-with-auth0).
- `nickname` (String) Preferred nickname or alias of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: [Configure Identity Provider Connection for User Profile Updates](https://auth0.com/docs/manage-users/user-accounts/user-profiles/configure-connection-sync-with-auth0).
- `password` (String) Initial password for this user. Required for non-passwordless connections (SMS and email).
+- `permissions` (Set of Object) List of API permissions granted to the user. (see [below for nested schema](#nestedatt--permissions))
- `phone_number` (String) Phone number for the user; follows the E.164 recommendation. Used for SMS connections.
- `phone_verified` (Boolean) Indicates whether the phone number has been verified.
- `picture` (String) Picture of the user. This value can only be updated if the connection is a database connection (using the Auth0 store), a passwordless connection (email or sms) or has disabled 'Sync user profile attributes at each login'. For more information, see: [Configure Identity Provider Connection for User Profile Updates](https://auth0.com/docs/manage-users/user-accounts/user-profiles/configure-connection-sync-with-auth0).
@@ -45,4 +46,14 @@ data "auth0_user" "my_user" {
- `username` (String) Username of the user. Only valid if the connection requires a username.
- `verify_email` (Boolean) Indicates whether the user will receive a verification email after creation. Overrides behavior of `email_verified` parameter.
+
+### Nested Schema for `permissions`
+
+Read-Only:
+
+- `description` (String)
+- `name` (String)
+- `resource_server_identifier` (String)
+- `resource_server_name` (String)
+
diff --git a/docs/resources/user.md b/docs/resources/user.md
index 1a12358e6..e09b07ed6 100644
--- a/docs/resources/user.md
+++ b/docs/resources/user.md
@@ -60,6 +60,17 @@ resource "auth0_role" "admin" {
### Read-Only
- `id` (String) The ID of this resource.
+- `permissions` (Set of Object) List of API permissions granted to the user. (see [below for nested schema](#nestedatt--permissions))
+
+
+### Nested Schema for `permissions`
+
+Read-Only:
+
+- `description` (String)
+- `name` (String)
+- `resource_server_identifier` (String)
+- `resource_server_name` (String)
## Import
diff --git a/internal/auth0/user/data_source_test.go b/internal/auth0/user/data_source_test.go
index e35e353ed..4f816f078 100644
--- a/internal/auth0/user/data_source_test.go
+++ b/internal/auth0/user/data_source_test.go
@@ -66,6 +66,7 @@ func TestAccDataSourceUser(t *testing.T) {
resource.TestCheckResourceAttr("data.auth0_user.test", "nickname", strings.ToLower(t.Name())),
resource.TestCheckResourceAttr("data.auth0_user.test", "picture", "https://www.example.com/picture.jpg"),
resource.TestCheckResourceAttr("data.auth0_user.test", "roles.#", "2"),
+ resource.TestCheckResourceAttr("data.auth0_user.test", "permissions.#", "0"),
resource.TestCheckResourceAttr("data.auth0_user.test", "user_metadata", `{"baz":"qux","foo":"bar"}`),
resource.TestCheckResourceAttr("data.auth0_user.test", "app_metadata", `{"baz":"qux","foo":"bar"}`),
),
diff --git a/internal/auth0/user/resource.go b/internal/auth0/user/resource.go
index eb104eb8c..366d5adff 100644
--- a/internal/auth0/user/resource.go
+++ b/internal/auth0/user/resource.go
@@ -154,6 +154,35 @@ func NewResource() *schema.Resource {
Elem: &schema.Schema{Type: schema.TypeString},
Description: "Set of IDs of roles assigned to the user.",
},
+ "permissions": {
+ Type: schema.TypeSet,
+ Computed: true,
+ Description: "List of API permissions granted to the user.",
+ Elem: &schema.Resource{
+ Schema: map[string]*schema.Schema{
+ "name": {
+ Type: schema.TypeString,
+ Computed: true,
+ Description: "Name of permission.",
+ },
+ "description": {
+ Type: schema.TypeString,
+ Computed: true,
+ Description: "Description of the permission.",
+ },
+ "resource_server_identifier": {
+ Type: schema.TypeString,
+ Computed: true,
+ Description: "Resource server identifier associated with the permission.",
+ },
+ "resource_server_name": {
+ Type: schema.TypeString,
+ Computed: true,
+ Description: "Name of resource server that the permission is associated with.",
+ },
+ },
+ },
+ },
},
}
}
@@ -210,6 +239,12 @@ func readUser(ctx context.Context, d *schema.ResourceData, m interface{}) diag.D
}
result = multierror.Append(result, d.Set("roles", flattenUserRoles(roleList)))
+ permissions, err := api.User.Permissions(user.GetID())
+ if err != nil {
+ return diag.FromErr(err)
+ }
+ result = multierror.Append(result, d.Set("permissions", flattenUserPermissions(permissions)))
+
return diag.FromErr(result.ErrorOrNil())
}
@@ -378,6 +413,19 @@ func flattenUserRoles(roleList *management.RoleList) []interface{} {
return roles
}
+func flattenUserPermissions(permissionList *management.PermissionList) []interface{} {
+ var permissions []interface{}
+ for _, p := range permissionList.Permissions {
+ permissions = append(permissions, map[string]string{
+ "name": p.GetName(),
+ "resource_server_identifier": p.GetResourceServerIdentifier(),
+ "description": p.GetDescription(),
+ "resource_server_name": p.GetResourceServerName(),
+ })
+ }
+ return permissions
+}
+
func validateUser(user *management.User) error {
validations := []validateUserFunc{
validateNoUsernameAndPasswordSimultaneously(),
diff --git a/internal/auth0/user/resource_test.go b/internal/auth0/user/resource_test.go
index 34c99814f..f7f19353e 100644
--- a/internal/auth0/user/resource_test.go
+++ b/internal/auth0/user/resource_test.go
@@ -172,6 +172,7 @@ func TestAccUser(t *testing.T) {
resource.TestCheckResourceAttr("auth0_user.user", "user_metadata", ""),
resource.TestCheckResourceAttr("auth0_user.user", "app_metadata", ""),
resource.TestCheckResourceAttr("auth0_user.user", "roles.#", "0"),
+ resource.TestCheckResourceAttr("auth0_user.user", "permissions.#", "0"),
),
},
{
@@ -204,6 +205,7 @@ func TestAccUser(t *testing.T) {
Config: acctest.ParseTestName(testAccUserUpdateRemovingMetadata, strings.ToLower(t.Name())),
Check: resource.ComposeTestCheckFunc(
resource.TestCheckResourceAttr("auth0_user.user", "roles.#", "0"),
+ resource.TestCheckResourceAttr("auth0_user.user", "permissions.#", "0"),
resource.TestCheckResourceAttr("auth0_user.user", "user_metadata", ""),
resource.TestCheckResourceAttr("auth0_user.user", "app_metadata", ""),
),
diff --git a/test/data/recordings/TestAccDataSourceUser.yaml b/test/data/recordings/TestAccDataSourceUser.yaml
index 0b54b98d7..eadd4349b 100644
--- a/test/data/recordings/TestAccDataSourceUser.yaml
+++ b/test/data/recordings/TestAccDataSourceUser.yaml
@@ -19,7 +19,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
+ - Go-Auth0-SDK/0.17.0
url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles
method: POST
response:
@@ -30,13 +30,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"rol_2hj758TRtjaMKfhU","name":"owner","description":"Owner"}'
+ body: '{"id":"rol_qhhoGHqqEDzDoRW2","name":"owner","description":"Owner"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 107.55625ms
+ duration: 166.88025ms
- id: 1
request:
proto: HTTP/1.1
@@ -55,8 +55,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_2hj758TRtjaMKfhU
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_qhhoGHqqEDzDoRW2
method: GET
response:
proto: HTTP/2.0
@@ -66,13 +66,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"rol_2hj758TRtjaMKfhU","name":"owner","description":"Owner"}'
+ body: '{"id":"rol_qhhoGHqqEDzDoRW2","name":"owner","description":"Owner"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 103.300625ms
+ duration: 106.357333ms
- id: 2
request:
proto: HTTP/1.1
@@ -91,8 +91,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_2hj758TRtjaMKfhU/permissions?include_totals=true&page=0&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_qhhoGHqqEDzDoRW2/permissions?include_totals=true&page=0&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -108,7 +108,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 105.0165ms
+ duration: 115.946417ms
- id: 3
request:
proto: HTTP/1.1
@@ -127,7 +127,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
+ - Go-Auth0-SDK/0.17.0
url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles
method: POST
response:
@@ -138,13 +138,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"rol_QQO6ng4NKRKRbGY6","name":"admin","description":"Administrator"}'
+ body: '{"id":"rol_5k9IOqn69u4IvsQn","name":"admin","description":"Administrator"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 108.900917ms
+ duration: 113.357958ms
- id: 4
request:
proto: HTTP/1.1
@@ -163,8 +163,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_QQO6ng4NKRKRbGY6
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5k9IOqn69u4IvsQn
method: GET
response:
proto: HTTP/2.0
@@ -174,13 +174,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"rol_QQO6ng4NKRKRbGY6","name":"admin","description":"Administrator"}'
+ body: '{"id":"rol_5k9IOqn69u4IvsQn","name":"admin","description":"Administrator"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 179.693583ms
+ duration: 107.414125ms
- id: 5
request:
proto: HTTP/1.1
@@ -199,8 +199,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_QQO6ng4NKRKRbGY6/permissions?include_totals=true&page=0&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5k9IOqn69u4IvsQn/permissions?include_totals=true&page=0&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -216,7 +216,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 127.376292ms
+ duration: 117.464708ms
- id: 6
request:
proto: HTTP/1.1
@@ -235,7 +235,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
+ - Go-Auth0-SDK/0.17.0
url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users
method: POST
response:
@@ -246,13 +246,13 @@ interactions:
trailer: {}
content_length: 610
uncompressed: false
- body: '{"created_at":"2023-02-13T12:03:45.789Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-02-13T12:03:45.789Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}'
+ body: '{"created_at":"2023-05-09T20:14:14.582Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-05-09T20:14:14.582Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 201 Created
code: 201
- duration: 242.030916ms
+ duration: 288.116667ms
- id: 7
request:
proto: HTTP/1.1
@@ -265,13 +265,13 @@ interactions:
remote_addr: ""
request_uri: ""
body: |
- {"roles":["rol_2hj758TRtjaMKfhU","rol_QQO6ng4NKRKRbGY6"]}
+ {"roles":["rol_qhhoGHqqEDzDoRW2","rol_5k9IOqn69u4IvsQn"]}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
+ - Go-Auth0-SDK/0.17.0
url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/roles
method: POST
response:
@@ -288,7 +288,7 @@ interactions:
- application/json; charset=utf-8
status: 204 No Content
code: 204
- duration: 109.591208ms
+ duration: 107.120291ms
- id: 8
request:
proto: HTTP/1.1
@@ -307,7 +307,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
+ - Go-Auth0-SDK/0.17.0
url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser
method: GET
response:
@@ -318,13 +318,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"created_at":"2023-02-13T12:03:45.789Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-02-13T12:03:45.789Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}'
+ body: '{"created_at":"2023-05-09T20:14:14.582Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-05-09T20:14:14.582Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 106.148208ms
+ duration: 101.245625ms
- id: 9
request:
proto: HTTP/1.1
@@ -343,7 +343,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
+ - Go-Auth0-SDK/0.17.0
url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/roles?include_totals=true&per_page=50
method: GET
response:
@@ -354,13 +354,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"roles":[{"id":"rol_QQO6ng4NKRKRbGY6","name":"admin","description":"Administrator"},{"id":"rol_2hj758TRtjaMKfhU","name":"owner","description":"Owner"}],"start":0,"limit":50,"total":2}'
+ body: '{"roles":[{"id":"rol_5k9IOqn69u4IvsQn","name":"admin","description":"Administrator"},{"id":"rol_qhhoGHqqEDzDoRW2","name":"owner","description":"Owner"}],"start":0,"limit":50,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 97.354291ms
+ duration: 100.833375ms
- id: 10
request:
proto: HTTP/1.1
@@ -379,8 +379,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/permissions?include_totals=true&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -390,13 +390,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"created_at":"2023-02-13T12:03:45.789Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-02-13T12:03:45.789Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}'
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 99.809458ms
+ duration: 114.681458ms
- id: 11
request:
proto: HTTP/1.1
@@ -415,8 +415,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/roles?include_totals=true&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser
method: GET
response:
proto: HTTP/2.0
@@ -426,13 +426,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"roles":[{"id":"rol_QQO6ng4NKRKRbGY6","name":"admin","description":"Administrator"},{"id":"rol_2hj758TRtjaMKfhU","name":"owner","description":"Owner"}],"start":0,"limit":50,"total":2}'
+ body: '{"created_at":"2023-05-09T20:14:14.582Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-05-09T20:14:14.582Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 104.794584ms
+ duration: 99.269542ms
- id: 12
request:
proto: HTTP/1.1
@@ -451,8 +451,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/roles?include_totals=true&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -462,13 +462,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"created_at":"2023-02-13T12:03:45.789Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-02-13T12:03:45.789Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}'
+ body: '{"roles":[{"id":"rol_5k9IOqn69u4IvsQn","name":"admin","description":"Administrator"},{"id":"rol_qhhoGHqqEDzDoRW2","name":"owner","description":"Owner"}],"start":0,"limit":50,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 107.01775ms
+ duration: 102.379375ms
- id: 13
request:
proto: HTTP/1.1
@@ -487,8 +487,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/roles?include_totals=true&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/permissions?include_totals=true&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -498,13 +498,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"roles":[{"id":"rol_QQO6ng4NKRKRbGY6","name":"admin","description":"Administrator"},{"id":"rol_2hj758TRtjaMKfhU","name":"owner","description":"Owner"}],"start":0,"limit":50,"total":2}'
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 192.445708ms
+ duration: 103.993125ms
- id: 14
request:
proto: HTTP/1.1
@@ -523,8 +523,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_2hj758TRtjaMKfhU
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser
method: GET
response:
proto: HTTP/2.0
@@ -534,13 +534,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"rol_2hj758TRtjaMKfhU","name":"owner","description":"Owner"}'
+ body: '{"created_at":"2023-05-09T20:14:14.582Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-05-09T20:14:14.582Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 108.799542ms
+ duration: 156.956833ms
- id: 15
request:
proto: HTTP/1.1
@@ -559,8 +559,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_2hj758TRtjaMKfhU/permissions?include_totals=true&page=0&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/roles?include_totals=true&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -570,13 +570,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ body: '{"roles":[{"id":"rol_5k9IOqn69u4IvsQn","name":"admin","description":"Administrator"},{"id":"rol_qhhoGHqqEDzDoRW2","name":"owner","description":"Owner"}],"start":0,"limit":50,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 106.02675ms
+ duration: 102.810708ms
- id: 16
request:
proto: HTTP/1.1
@@ -595,8 +595,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_QQO6ng4NKRKRbGY6
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/permissions?include_totals=true&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -606,13 +606,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"rol_QQO6ng4NKRKRbGY6","name":"admin","description":"Administrator"}'
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 99.386542ms
+ duration: 119.288208ms
- id: 17
request:
proto: HTTP/1.1
@@ -631,8 +631,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_QQO6ng4NKRKRbGY6/permissions?include_totals=true&page=0&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_qhhoGHqqEDzDoRW2
method: GET
response:
proto: HTTP/2.0
@@ -642,13 +642,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ body: '{"id":"rol_qhhoGHqqEDzDoRW2","name":"owner","description":"Owner"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 197.699583ms
+ duration: 125.6595ms
- id: 18
request:
proto: HTTP/1.1
@@ -667,8 +667,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_qhhoGHqqEDzDoRW2/permissions?include_totals=true&page=0&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -678,13 +678,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"created_at":"2023-02-13T12:03:45.789Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-02-13T12:03:45.789Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}'
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 98.734125ms
+ duration: 109.753459ms
- id: 19
request:
proto: HTTP/1.1
@@ -703,8 +703,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/roles?include_totals=true&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5k9IOqn69u4IvsQn
method: GET
response:
proto: HTTP/2.0
@@ -714,13 +714,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"roles":[{"id":"rol_QQO6ng4NKRKRbGY6","name":"admin","description":"Administrator"},{"id":"rol_2hj758TRtjaMKfhU","name":"owner","description":"Owner"}],"start":0,"limit":50,"total":2}'
+ body: '{"id":"rol_5k9IOqn69u4IvsQn","name":"admin","description":"Administrator"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 99.180291ms
+ duration: 99.061959ms
- id: 20
request:
proto: HTTP/1.1
@@ -739,8 +739,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5k9IOqn69u4IvsQn/permissions?include_totals=true&page=0&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -750,13 +750,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"created_at":"2023-02-13T12:03:45.789Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-02-13T12:03:45.789Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}'
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 102.67225ms
+ duration: 104.036375ms
- id: 21
request:
proto: HTTP/1.1
@@ -775,8 +775,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/roles?include_totals=true&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser
method: GET
response:
proto: HTTP/2.0
@@ -786,13 +786,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"roles":[{"id":"rol_QQO6ng4NKRKRbGY6","name":"admin","description":"Administrator"},{"id":"rol_2hj758TRtjaMKfhU","name":"owner","description":"Owner"}],"start":0,"limit":50,"total":2}'
+ body: '{"created_at":"2023-05-09T20:14:14.582Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-05-09T20:14:14.582Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 121.874291ms
+ duration: 109.440209ms
- id: 22
request:
proto: HTTP/1.1
@@ -811,8 +811,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/roles?include_totals=true&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -822,13 +822,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"created_at":"2023-02-13T12:03:45.789Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-02-13T12:03:45.789Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}'
+ body: '{"roles":[{"id":"rol_5k9IOqn69u4IvsQn","name":"admin","description":"Administrator"},{"id":"rol_qhhoGHqqEDzDoRW2","name":"owner","description":"Owner"}],"start":0,"limit":50,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 97.814291ms
+ duration: 102.409ms
- id: 23
request:
proto: HTTP/1.1
@@ -847,8 +847,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/roles?include_totals=true&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/permissions?include_totals=true&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -858,14 +858,230 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"roles":[{"id":"rol_QQO6ng4NKRKRbGY6","name":"admin","description":"Administrator"},{"id":"rol_2hj758TRtjaMKfhU","name":"owner","description":"Owner"}],"start":0,"limit":50,"total":2}'
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 100.177625ms
+ duration: 67.680875ms
- id: 24
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"created_at":"2023-05-09T20:14:14.582Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-05-09T20:14:14.582Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 103.790625ms
+ - id: 25
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[{"id":"rol_5k9IOqn69u4IvsQn","name":"admin","description":"Administrator"},{"id":"rol_qhhoGHqqEDzDoRW2","name":"owner","description":"Owner"}],"start":0,"limit":50,"total":2}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 64.79525ms
+ - id: 26
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/permissions?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 106.869125ms
+ - id: 27
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"created_at":"2023-05-09T20:14:14.582Z","email":"testaccdatasourceuser@acceptance.test.com","email_verified":false,"family_name":"Lastname","given_name":"Firstname","identities":[{"user_id":"testaccdatasourceuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccdatasourceuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-05-09T20:14:14.582Z","user_id":"auth0|testaccdatasourceuser","user_metadata":{"baz":"qux","foo":"bar"},"username":"testaccdatasourceuser","app_metadata":{"baz":"qux","foo":"bar"}}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 99.318666ms
+ - id: 28
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[{"id":"rol_5k9IOqn69u4IvsQn","name":"admin","description":"Administrator"},{"id":"rol_qhhoGHqqEDzDoRW2","name":"owner","description":"Owner"}],"start":0,"limit":50,"total":2}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 104.607ms
+ - id: 29
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser/permissions?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 102.348084ms
+ - id: 30
request:
proto: HTTP/1.1
proto_major: 1
@@ -882,7 +1098,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
+ - Go-Auth0-SDK/0.17.0
url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccdatasourceuser
method: DELETE
response:
@@ -899,8 +1115,8 @@ interactions:
- application/json; charset=utf-8
status: 204 No Content
code: 204
- duration: 148.507458ms
- - id: 25
+ duration: 142.964875ms
+ - id: 31
request:
proto: HTTP/1.1
proto_major: 1
@@ -918,8 +1134,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_QQO6ng4NKRKRbGY6
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_5k9IOqn69u4IvsQn
method: DELETE
response:
proto: HTTP/2.0
@@ -935,8 +1151,8 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 97.094792ms
- - id: 26
+ duration: 65.001667ms
+ - id: 32
request:
proto: HTTP/1.1
proto_major: 1
@@ -954,8 +1170,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.15.1
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_2hj758TRtjaMKfhU
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_qhhoGHqqEDzDoRW2
method: DELETE
response:
proto: HTTP/2.0
@@ -971,4 +1187,4 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 98.447958ms
+ duration: 168.373ms
diff --git a/test/data/recordings/TestAccOrganizationMember.yaml b/test/data/recordings/TestAccOrganizationMember.yaml
index d899b1bc2..29568485b 100644
--- a/test/data/recordings/TestAccOrganizationMember.yaml
+++ b/test/data/recordings/TestAccOrganizationMember.yaml
@@ -1,3529 +1,3889 @@
---
version: 2
interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 89
- transfer_encoding: [ ]
- trailer: { }
- host: terraform-provider-auth0-dev.eu.auth0.com
- remote_addr: ""
- request_uri: ""
- body: |
- {"name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}
- form: { }
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Go-Auth0-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: 116
- uncompressed: false
- body: '{"name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember","id":"org_QnNZ26V0Bfrn9rMt"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 201 Created
- code: 201
- duration: 140.822772ms
- - id: 1
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 46
- transfer_encoding: [ ]
- trailer: { }
- host: terraform-provider-auth0-dev.eu.auth0.com
- remote_addr: ""
- request_uri: ""
- body: |
- {"name":"Reader - testaccorganizationmember"}
- form: { }
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Go-Auth0-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/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_HZ0ddDDbA4GpG8Um","name":"Reader - testaccorganizationmember","description":null}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 144.347572ms
- - id: 2
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_HZ0ddDDbA4GpG8Um
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"rol_HZ0ddDDbA4GpG8Um","name":"Reader - testaccorganizationmember","description":null}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 143.557054ms
- - id: 3
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"org_QnNZ26V0Bfrn9rMt","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 147.794132ms
- - id: 4
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 168
- transfer_encoding: [ ]
- trailer: { }
- host: terraform-provider-auth0-dev.eu.auth0.com
- remote_addr: ""
- request_uri: ""
- body: |
- {"connection":"Username-Password-Authentication","email":"testaccorganizationmember@auth0.com","username":"testusername","password":"MyPass123$","email_verified":true}
- form: { }
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Go-Auth0-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: 575
- uncompressed: false
- body: '{"created_at":"2022-10-25T16:29:55.283Z","email":"testaccorganizationmember@auth0.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"63580f0344d2f1f163da90a4","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember@auth0.com","nickname":"testaccorganizationmember","picture":"https://s.gravatar.com/avatar/fa2823a2ce146138c5a913a9963f6e45?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2022-10-25T16:29:55.283Z","user_id":"auth0|63580f0344d2f1f163da90a4","username":"testusername"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 201 Created
- code: 201
- duration: 385.069875ms
- - id: 5
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_HZ0ddDDbA4GpG8Um/permissions?include_totals=true&page=0&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"permissions":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 156.474052ms
- - id: 6
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C63580f0344d2f1f163da90a4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"created_at":"2022-10-25T16:29:55.283Z","email":"testaccorganizationmember@auth0.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"63580f0344d2f1f163da90a4","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember@auth0.com","nickname":"testaccorganizationmember","picture":"https://s.gravatar.com/avatar/fa2823a2ce146138c5a913a9963f6e45?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2022-10-25T16:29:55.283Z","user_id":"auth0|63580f0344d2f1f163da90a4","username":"testusername"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 102.965299ms
- - id: 7
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 45
- transfer_encoding: [ ]
- trailer: { }
- host: terraform-provider-auth0-dev.eu.auth0.com
- remote_addr: ""
- request_uri: ""
- body: |
- {"name":"Admin - testaccorganizationmember"}
- form: { }
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Go-Auth0-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/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_eDqerngMZ7JdFuGI","name":"Admin - testaccorganizationmember","description":null}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 132.547568ms
- - id: 8
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C63580f0344d2f1f163da90a4/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 131.209693ms
- - id: 9
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_eDqerngMZ7JdFuGI
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"rol_eDqerngMZ7JdFuGI","name":"Admin - testaccorganizationmember","description":null}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 104.758094ms
- - id: 10
- 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|63580f0344d2f1f163da90a4"]}
- form: { }
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Go-Auth0-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt/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: 123.221968ms
- - id: 11
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_eDqerngMZ7JdFuGI/permissions?include_totals=true&page=0&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"permissions":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 161.847686ms
- - id: 12
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt/members/auth0%7C63580f0344d2f1f163da90a4/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 126.801961ms
- - id: 13
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_HZ0ddDDbA4GpG8Um
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"rol_HZ0ddDDbA4GpG8Um","name":"Reader - testaccorganizationmember","description":null}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 112.267779ms
- - id: 14
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 5
- transfer_encoding: [ ]
- trailer: { }
- host: terraform-provider-auth0-dev.eu.auth0.com
- remote_addr: ""
- request_uri: ""
- body: |
- null
- form: { }
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Go-Auth0-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C63580f0344d2f1f163da90a4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"created_at":"2022-10-25T16:29:55.283Z","email":"testaccorganizationmember@auth0.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"63580f0344d2f1f163da90a4","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember@auth0.com","nickname":"testaccorganizationmember","picture":"https://s.gravatar.com/avatar/fa2823a2ce146138c5a913a9963f6e45?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2022-10-25T16:29:55.283Z","user_id":"auth0|63580f0344d2f1f163da90a4","username":"testusername"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 130.007472ms
- - id: 15
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 5
- transfer_encoding: [ ]
- trailer: { }
- host: terraform-provider-auth0-dev.eu.auth0.com
- remote_addr: ""
- request_uri: ""
- body: |
- null
- form: { }
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Go-Auth0-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"org_QnNZ26V0Bfrn9rMt","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 175.433095ms
- - id: 16
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C63580f0344d2f1f163da90a4/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 121.640836ms
- - id: 17
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_HZ0ddDDbA4GpG8Um/permissions?include_totals=true&page=0&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"permissions":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 158.012267ms
- - id: 18
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt/members/auth0%7C63580f0344d2f1f163da90a4/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 141.491359ms
- - id: 19
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_eDqerngMZ7JdFuGI
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"rol_eDqerngMZ7JdFuGI","name":"Admin - testaccorganizationmember","description":null}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 138.58546ms
- - id: 20
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_eDqerngMZ7JdFuGI/permissions?include_totals=true&page=0&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"permissions":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 136.332129ms
- - id: 21
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_HZ0ddDDbA4GpG8Um
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"rol_HZ0ddDDbA4GpG8Um","name":"Reader - testaccorganizationmember","description":null}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 122.794523ms
- - id: 22
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C63580f0344d2f1f163da90a4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"created_at":"2022-10-25T16:29:55.283Z","email":"testaccorganizationmember@auth0.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"63580f0344d2f1f163da90a4","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember@auth0.com","nickname":"testaccorganizationmember","picture":"https://s.gravatar.com/avatar/fa2823a2ce146138c5a913a9963f6e45?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2022-10-25T16:29:55.283Z","user_id":"auth0|63580f0344d2f1f163da90a4","username":"testusername"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 190.827504ms
- - id: 23
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_HZ0ddDDbA4GpG8Um/permissions?include_totals=true&page=0&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"permissions":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 116.232543ms
- - id: 24
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"org_QnNZ26V0Bfrn9rMt","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 240.424197ms
- - id: 25
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C63580f0344d2f1f163da90a4/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 108.446353ms
- - id: 26
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_eDqerngMZ7JdFuGI
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"rol_eDqerngMZ7JdFuGI","name":"Admin - testaccorganizationmember","description":null}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 103.327952ms
- - id: 27
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt/members/auth0%7C63580f0344d2f1f163da90a4/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 158.792451ms
- - id: 28
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_eDqerngMZ7JdFuGI/permissions?include_totals=true&page=0&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"permissions":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 118.839169ms
- - id: 29
- 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_HZ0ddDDbA4GpG8Um"]}
- form: { }
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Go-Auth0-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt/members/auth0%7C63580f0344d2f1f163da90a4/roles
- 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: 225.207042ms
- - id: 30
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt/members/auth0%7C63580f0344d2f1f163da90a4/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[{"id":"rol_HZ0ddDDbA4GpG8Um","name":"Reader - testaccorganizationmember","description":null}],"start":0,"limit":50,"total":1}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 127.199775ms
- - id: 31
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"org_QnNZ26V0Bfrn9rMt","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 126.073645ms
- - id: 32
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C63580f0344d2f1f163da90a4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"created_at":"2022-10-25T16:29:55.283Z","email":"testaccorganizationmember@auth0.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"63580f0344d2f1f163da90a4","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember@auth0.com","nickname":"testaccorganizationmember","picture":"https://s.gravatar.com/avatar/fa2823a2ce146138c5a913a9963f6e45?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2022-10-25T16:29:55.283Z","user_id":"auth0|63580f0344d2f1f163da90a4","username":"testusername"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 130.564083ms
- - id: 33
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_HZ0ddDDbA4GpG8Um
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"rol_HZ0ddDDbA4GpG8Um","name":"Reader - testaccorganizationmember","description":null}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 179.351819ms
- - id: 34
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C63580f0344d2f1f163da90a4/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 126.763226ms
- - id: 35
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_HZ0ddDDbA4GpG8Um/permissions?include_totals=true&page=0&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"permissions":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 107.395159ms
- - id: 36
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_eDqerngMZ7JdFuGI
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"rol_eDqerngMZ7JdFuGI","name":"Admin - testaccorganizationmember","description":null}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 120.063932ms
- - id: 37
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt/members/auth0%7C63580f0344d2f1f163da90a4/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[{"id":"rol_HZ0ddDDbA4GpG8Um","name":"Reader - testaccorganizationmember","description":null}],"start":0,"limit":50,"total":1}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 120.028448ms
- - id: 38
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_eDqerngMZ7JdFuGI/permissions?include_totals=true&page=0&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"permissions":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 126.746171ms
- - id: 39
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C63580f0344d2f1f163da90a4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"created_at":"2022-10-25T16:29:55.283Z","email":"testaccorganizationmember@auth0.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"63580f0344d2f1f163da90a4","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember@auth0.com","nickname":"testaccorganizationmember","picture":"https://s.gravatar.com/avatar/fa2823a2ce146138c5a913a9963f6e45?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2022-10-25T16:29:55.283Z","user_id":"auth0|63580f0344d2f1f163da90a4","username":"testusername"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 102.37938ms
- - id: 40
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"org_QnNZ26V0Bfrn9rMt","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 111.662222ms
- - id: 41
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_HZ0ddDDbA4GpG8Um
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"rol_HZ0ddDDbA4GpG8Um","name":"Reader - testaccorganizationmember","description":null}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 111.68748ms
- - id: 42
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_HZ0ddDDbA4GpG8Um/permissions?include_totals=true&page=0&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"permissions":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 120.870597ms
- - id: 43
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_eDqerngMZ7JdFuGI
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"rol_eDqerngMZ7JdFuGI","name":"Admin - testaccorganizationmember","description":null}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 136.031332ms
- - 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C63580f0344d2f1f163da90a4/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 185.999525ms
- - 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_eDqerngMZ7JdFuGI/permissions?include_totals=true&page=0&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"permissions":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 103.405522ms
- - 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt/members/auth0%7C63580f0344d2f1f163da90a4/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[{"id":"rol_HZ0ddDDbA4GpG8Um","name":"Reader - testaccorganizationmember","description":null}],"start":0,"limit":50,"total":1}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 119.953008ms
- - id: 47
- 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_eDqerngMZ7JdFuGI"]}
- form: { }
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Go-Auth0-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt/members/auth0%7C63580f0344d2f1f163da90a4/roles
- 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: 114.068995ms
- - 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt/members/auth0%7C63580f0344d2f1f163da90a4/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[{"id":"rol_HZ0ddDDbA4GpG8Um","name":"Reader - testaccorganizationmember","description":null},{"id":"rol_eDqerngMZ7JdFuGI","name":"Admin - testaccorganizationmember","description":null}],"start":0,"limit":50,"total":2}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 105.635487ms
- - 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C63580f0344d2f1f163da90a4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"created_at":"2022-10-25T16:29:55.283Z","email":"testaccorganizationmember@auth0.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"63580f0344d2f1f163da90a4","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember@auth0.com","nickname":"testaccorganizationmember","picture":"https://s.gravatar.com/avatar/fa2823a2ce146138c5a913a9963f6e45?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2022-10-25T16:29:55.283Z","user_id":"auth0|63580f0344d2f1f163da90a4","username":"testusername"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 122.16081ms
- - 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_HZ0ddDDbA4GpG8Um
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"rol_HZ0ddDDbA4GpG8Um","name":"Reader - testaccorganizationmember","description":null}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 127.80696ms
- - 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"org_QnNZ26V0Bfrn9rMt","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 213.2258ms
- - 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_HZ0ddDDbA4GpG8Um/permissions?include_totals=true&page=0&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"permissions":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 98.051047ms
- - 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C63580f0344d2f1f163da90a4/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 161.703505ms
- - id: 54
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_eDqerngMZ7JdFuGI
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"rol_eDqerngMZ7JdFuGI","name":"Admin - testaccorganizationmember","description":null}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 112.600083ms
- - id: 55
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_eDqerngMZ7JdFuGI/permissions?include_totals=true&page=0&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"permissions":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 266.63715ms
- - id: 56
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt/members/auth0%7C63580f0344d2f1f163da90a4/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[{"id":"rol_HZ0ddDDbA4GpG8Um","name":"Reader - testaccorganizationmember","description":null},{"id":"rol_eDqerngMZ7JdFuGI","name":"Admin - testaccorganizationmember","description":null}],"start":0,"limit":50,"total":2}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 201.090093ms
- - id: 57
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_HZ0ddDDbA4GpG8Um
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"rol_HZ0ddDDbA4GpG8Um","name":"Reader - testaccorganizationmember","description":null}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 104.057532ms
- - id: 58
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"org_QnNZ26V0Bfrn9rMt","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 115.150512ms
- - id: 59
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C63580f0344d2f1f163da90a4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"created_at":"2022-10-25T16:29:55.283Z","email":"testaccorganizationmember@auth0.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"63580f0344d2f1f163da90a4","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember@auth0.com","nickname":"testaccorganizationmember","picture":"https://s.gravatar.com/avatar/fa2823a2ce146138c5a913a9963f6e45?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2022-10-25T16:29:55.283Z","user_id":"auth0|63580f0344d2f1f163da90a4","username":"testusername"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 117.593925ms
- - id: 60
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_HZ0ddDDbA4GpG8Um/permissions?include_totals=true&page=0&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"permissions":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 116.876568ms
- - id: 61
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C63580f0344d2f1f163da90a4/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 111.622641ms
- - id: 62
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_eDqerngMZ7JdFuGI
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"rol_eDqerngMZ7JdFuGI","name":"Admin - testaccorganizationmember","description":null}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 144.580311ms
- - id: 63
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_eDqerngMZ7JdFuGI/permissions?include_totals=true&page=0&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"permissions":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 116.589584ms
- - id: 64
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt/members/auth0%7C63580f0344d2f1f163da90a4/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[{"id":"rol_HZ0ddDDbA4GpG8Um","name":"Reader - testaccorganizationmember","description":null},{"id":"rol_eDqerngMZ7JdFuGI","name":"Admin - testaccorganizationmember","description":null}],"start":0,"limit":50,"total":2}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 164.01555ms
- - id: 65
- 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_HZ0ddDDbA4GpG8Um"]}
- form: { }
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Go-Auth0-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt/members/auth0%7C63580f0344d2f1f163da90a4/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: 126.266148ms
- - id: 66
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt/members/auth0%7C63580f0344d2f1f163da90a4/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[{"id":"rol_eDqerngMZ7JdFuGI","name":"Admin - testaccorganizationmember","description":null}],"start":0,"limit":50,"total":1}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 174.676117ms
- - id: 67
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C63580f0344d2f1f163da90a4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"created_at":"2022-10-25T16:29:55.283Z","email":"testaccorganizationmember@auth0.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"63580f0344d2f1f163da90a4","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember@auth0.com","nickname":"testaccorganizationmember","picture":"https://s.gravatar.com/avatar/fa2823a2ce146138c5a913a9963f6e45?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2022-10-25T16:29:55.283Z","user_id":"auth0|63580f0344d2f1f163da90a4","username":"testusername"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 110.676406ms
- - id: 68
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"org_QnNZ26V0Bfrn9rMt","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 112.15452ms
- - id: 69
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_HZ0ddDDbA4GpG8Um
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"rol_HZ0ddDDbA4GpG8Um","name":"Reader - testaccorganizationmember","description":null}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 143.670695ms
- - id: 70
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C63580f0344d2f1f163da90a4/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 95.338592ms
- - id: 71
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_HZ0ddDDbA4GpG8Um/permissions?include_totals=true&page=0&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"permissions":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 106.308227ms
- - id: 72
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_eDqerngMZ7JdFuGI
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"rol_eDqerngMZ7JdFuGI","name":"Admin - testaccorganizationmember","description":null}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 119.934604ms
- - id: 73
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_eDqerngMZ7JdFuGI/permissions?include_totals=true&page=0&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"permissions":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 147.422386ms
- - id: 74
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt/members/auth0%7C63580f0344d2f1f163da90a4/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[{"id":"rol_eDqerngMZ7JdFuGI","name":"Admin - testaccorganizationmember","description":null}],"start":0,"limit":50,"total":1}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 121.222337ms
- - id: 75
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"org_QnNZ26V0Bfrn9rMt","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 118.631327ms
- - id: 76
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_HZ0ddDDbA4GpG8Um
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"rol_HZ0ddDDbA4GpG8Um","name":"Reader - testaccorganizationmember","description":null}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 122.323576ms
- - id: 77
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C63580f0344d2f1f163da90a4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"created_at":"2022-10-25T16:29:55.283Z","email":"testaccorganizationmember@auth0.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"63580f0344d2f1f163da90a4","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember@auth0.com","nickname":"testaccorganizationmember","picture":"https://s.gravatar.com/avatar/fa2823a2ce146138c5a913a9963f6e45?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2022-10-25T16:29:55.283Z","user_id":"auth0|63580f0344d2f1f163da90a4","username":"testusername"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 149.332561ms
- - id: 78
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_HZ0ddDDbA4GpG8Um/permissions?include_totals=true&page=0&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"permissions":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 112.770449ms
- - id: 79
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C63580f0344d2f1f163da90a4/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 112.115095ms
- - id: 80
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_eDqerngMZ7JdFuGI
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"rol_eDqerngMZ7JdFuGI","name":"Admin - testaccorganizationmember","description":null}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 156.926899ms
- - id: 81
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 5
- transfer_encoding: [ ]
- trailer: { }
- host: terraform-provider-auth0-dev.eu.auth0.com
- remote_addr: ""
- request_uri: ""
- body: |
- null
- form: { }
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Go-Auth0-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_eDqerngMZ7JdFuGI/permissions?include_totals=true&page=0&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"permissions":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 146.700223ms
- - id: 82
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 5
- transfer_encoding: [ ]
- trailer: { }
- host: terraform-provider-auth0-dev.eu.auth0.com
- remote_addr: ""
- request_uri: ""
- body: |
- null
- form: { }
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Go-Auth0-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt/members/auth0%7C63580f0344d2f1f163da90a4/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[{"id":"rol_eDqerngMZ7JdFuGI","name":"Admin - testaccorganizationmember","description":null}],"start":0,"limit":50,"total":1}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 169.580343ms
- - id: 83
- 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_eDqerngMZ7JdFuGI"]}
- form: { }
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Go-Auth0-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt/members/auth0%7C63580f0344d2f1f163da90a4/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: 180.680865ms
- - id: 84
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 5
- transfer_encoding: [ ]
- trailer: { }
- host: terraform-provider-auth0-dev.eu.auth0.com
- remote_addr: ""
- request_uri: ""
- body: |
- null
- form: { }
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Go-Auth0-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt/members/auth0%7C63580f0344d2f1f163da90a4/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 133.576687ms
- - id: 85
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 5
- transfer_encoding: [ ]
- trailer: { }
- host: terraform-provider-auth0-dev.eu.auth0.com
- remote_addr: ""
- request_uri: ""
- body: |
- null
- form: { }
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Go-Auth0-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"org_QnNZ26V0Bfrn9rMt","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 118.610422ms
- - id: 86
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 5
- transfer_encoding: [ ]
- trailer: { }
- host: terraform-provider-auth0-dev.eu.auth0.com
- remote_addr: ""
- request_uri: ""
- body: |
- null
- form: { }
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Go-Auth0-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_HZ0ddDDbA4GpG8Um
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"rol_HZ0ddDDbA4GpG8Um","name":"Reader - testaccorganizationmember","description":null}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 118.570791ms
- - id: 87
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 5
- transfer_encoding: [ ]
- trailer: { }
- host: terraform-provider-auth0-dev.eu.auth0.com
- remote_addr: ""
- request_uri: ""
- body: |
- null
- form: { }
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Go-Auth0-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C63580f0344d2f1f163da90a4
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"created_at":"2022-10-25T16:29:55.283Z","email":"testaccorganizationmember@auth0.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"63580f0344d2f1f163da90a4","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember@auth0.com","nickname":"testaccorganizationmember","picture":"https://s.gravatar.com/avatar/fa2823a2ce146138c5a913a9963f6e45?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2022-10-25T16:29:55.283Z","user_id":"auth0|63580f0344d2f1f163da90a4","username":"testusername"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 120.250972ms
- - id: 88
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 5
- transfer_encoding: [ ]
- trailer: { }
- host: terraform-provider-auth0-dev.eu.auth0.com
- remote_addr: ""
- request_uri: ""
- body: |
- null
- form: { }
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Go-Auth0-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_HZ0ddDDbA4GpG8Um/permissions?include_totals=true&page=0&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"permissions":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 99.576806ms
- - id: 89
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 5
- transfer_encoding: [ ]
- trailer: { }
- host: terraform-provider-auth0-dev.eu.auth0.com
- remote_addr: ""
- request_uri: ""
- body: |
- null
- form: { }
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Go-Auth0-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C63580f0344d2f1f163da90a4/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 143.481705ms
- - id: 90
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 5
- transfer_encoding: [ ]
- trailer: { }
- host: terraform-provider-auth0-dev.eu.auth0.com
- remote_addr: ""
- request_uri: ""
- body: |
- null
- form: { }
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Go-Auth0-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_eDqerngMZ7JdFuGI
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"id":"rol_eDqerngMZ7JdFuGI","name":"Admin - testaccorganizationmember","description":null}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 104.03195ms
- - id: 91
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_eDqerngMZ7JdFuGI/permissions?include_totals=true&page=0&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"permissions":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 119.619606ms
- - id: 92
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt/members/auth0%7C63580f0344d2f1f163da90a4/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 236.950592ms
- - id: 93
- 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|63580f0344d2f1f163da90a4"]}
- form: { }
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Go-Auth0-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt/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: 299.117904ms
- - id: 94
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_QnNZ26V0Bfrn9rMt
- 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: 105.685023ms
- - id: 95
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 3
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_eDqerngMZ7JdFuGI
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: 2
- uncompressed: false
- body: '{}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 120.826226ms
- - id: 96
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C63580f0344d2f1f163da90a4
- 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: 243.036484ms
- - id: 97
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 3
- 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-SDK/0.12.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_HZ0ddDDbA4GpG8Um
- method: DELETE
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: 2
- uncompressed: false
- body: '{}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 109.530622ms
+ - id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 46
+ transfer_encoding: []
+ trailer: {}
+ host: terraform-provider-auth0-dev.eu.auth0.com
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ {"name":"Reader - testaccorganizationmember"}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/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_DZDTWlL215fMjVse","name":"Reader - testaccorganizationmember","description":null}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 111.232ms
+ - id: 1
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 89
+ transfer_encoding: []
+ trailer: {}
+ host: terraform-provider-auth0-dev.eu.auth0.com
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ {"name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 116
+ uncompressed: false
+ body: '{"name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember","id":"org_EogPbEcYfHD7ZKfK"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 201 Created
+ code: 201
+ duration: 113.299375ms
+ - id: 2
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"org_EogPbEcYfHD7ZKfK","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 102.610791ms
+ - id: 3
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_DZDTWlL215fMjVse
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"rol_DZDTWlL215fMjVse","name":"Reader - testaccorganizationmember","description":null}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 122.511167ms
+ - id: 4
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_DZDTWlL215fMjVse/permissions?include_totals=true&page=0&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 104.978834ms
+ - id: 5
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 168
+ transfer_encoding: []
+ trailer: {}
+ host: terraform-provider-auth0-dev.eu.auth0.com
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ {"connection":"Username-Password-Authentication","email":"testaccorganizationmember@auth0.com","username":"testusername","password":"MyPass123$","email_verified":true}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 575
+ uncompressed: false
+ body: '{"created_at":"2023-05-09T20:34:56.469Z","email":"testaccorganizationmember@auth0.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"645aae700be902874f49e744","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember@auth0.com","nickname":"testaccorganizationmember","picture":"https://s.gravatar.com/avatar/fa2823a2ce146138c5a913a9963f6e45?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-05-09T20:34:56.469Z","user_id":"auth0|645aae700be902874f49e744","username":"testusername"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 201 Created
+ code: 201
+ duration: 350.924583ms
+ - id: 6
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"created_at":"2023-05-09T20:34:56.469Z","email":"testaccorganizationmember@auth0.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"645aae700be902874f49e744","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember@auth0.com","nickname":"testaccorganizationmember","picture":"https://s.gravatar.com/avatar/fa2823a2ce146138c5a913a9963f6e45?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-05-09T20:34:56.469Z","user_id":"auth0|645aae700be902874f49e744","username":"testusername"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 100.669042ms
+ - id: 7
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 45
+ transfer_encoding: []
+ trailer: {}
+ host: terraform-provider-auth0-dev.eu.auth0.com
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ {"name":"Admin - testaccorganizationmember"}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/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_PK0sklOOEDXUCMDc","name":"Admin - testaccorganizationmember","description":null}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 106.480417ms
+ - id: 8
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 122.126792ms
+ - id: 9
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_PK0sklOOEDXUCMDc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"rol_PK0sklOOEDXUCMDc","name":"Admin - testaccorganizationmember","description":null}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 165.726042ms
+ - id: 10
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744/permissions?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 106.742417ms
+ - id: 11
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_PK0sklOOEDXUCMDc/permissions?include_totals=true&page=0&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 113.17775ms
+ - id: 12
+ 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|645aae700be902874f49e744"]}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK/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: 109.647541ms
+ - id: 13
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK/members/auth0%7C645aae700be902874f49e744/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 94.2365ms
+ - id: 14
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 5
+ transfer_encoding: []
+ trailer: {}
+ host: terraform-provider-auth0-dev.eu.auth0.com
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ null
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"org_EogPbEcYfHD7ZKfK","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 101.854542ms
+ - id: 15
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 5
+ transfer_encoding: []
+ trailer: {}
+ host: terraform-provider-auth0-dev.eu.auth0.com
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ null
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_DZDTWlL215fMjVse
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"rol_DZDTWlL215fMjVse","name":"Reader - testaccorganizationmember","description":null}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 109.002833ms
+ - id: 16
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"created_at":"2023-05-09T20:34:56.469Z","email":"testaccorganizationmember@auth0.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"645aae700be902874f49e744","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember@auth0.com","nickname":"testaccorganizationmember","picture":"https://s.gravatar.com/avatar/fa2823a2ce146138c5a913a9963f6e45?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-05-09T20:34:56.469Z","user_id":"auth0|645aae700be902874f49e744","username":"testusername"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 109.069166ms
+ - id: 17
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 97.966375ms
+ - id: 18
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_DZDTWlL215fMjVse/permissions?include_totals=true&page=0&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 114.64225ms
+ - id: 19
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_PK0sklOOEDXUCMDc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"rol_PK0sklOOEDXUCMDc","name":"Admin - testaccorganizationmember","description":null}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 109.590875ms
+ - id: 20
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744/permissions?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 155.954959ms
+ - id: 21
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_PK0sklOOEDXUCMDc/permissions?include_totals=true&page=0&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 99.037042ms
+ - id: 22
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK/members/auth0%7C645aae700be902874f49e744/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 106.71375ms
+ - id: 23
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_DZDTWlL215fMjVse
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"rol_DZDTWlL215fMjVse","name":"Reader - testaccorganizationmember","description":null}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 89.464209ms
+ - id: 24
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"org_EogPbEcYfHD7ZKfK","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 102.674958ms
+ - id: 25
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"created_at":"2023-05-09T20:34:56.469Z","email":"testaccorganizationmember@auth0.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"645aae700be902874f49e744","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember@auth0.com","nickname":"testaccorganizationmember","picture":"https://s.gravatar.com/avatar/fa2823a2ce146138c5a913a9963f6e45?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-05-09T20:34:56.469Z","user_id":"auth0|645aae700be902874f49e744","username":"testusername"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 108.986084ms
+ - id: 26
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_DZDTWlL215fMjVse/permissions?include_totals=true&page=0&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 105.197625ms
+ - id: 27
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_PK0sklOOEDXUCMDc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"rol_PK0sklOOEDXUCMDc","name":"Admin - testaccorganizationmember","description":null}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 71.250667ms
+ - id: 28
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 176.770167ms
+ - id: 29
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744/permissions?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 100.452208ms
+ - id: 30
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_PK0sklOOEDXUCMDc/permissions?include_totals=true&page=0&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 152.387875ms
+ - id: 31
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK/members/auth0%7C645aae700be902874f49e744/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 80.0935ms
+ - id: 32
+ 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_DZDTWlL215fMjVse"]}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK/members/auth0%7C645aae700be902874f49e744/roles
+ 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: 82.704792ms
+ - id: 33
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK/members/auth0%7C645aae700be902874f49e744/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[{"id":"rol_DZDTWlL215fMjVse","name":"Reader - testaccorganizationmember","description":null}],"start":0,"limit":50,"total":1}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 121.757167ms
+ - id: 34
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_DZDTWlL215fMjVse
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"rol_DZDTWlL215fMjVse","name":"Reader - testaccorganizationmember","description":null}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 93.709ms
+ - id: 35
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"created_at":"2023-05-09T20:34:56.469Z","email":"testaccorganizationmember@auth0.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"645aae700be902874f49e744","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember@auth0.com","nickname":"testaccorganizationmember","picture":"https://s.gravatar.com/avatar/fa2823a2ce146138c5a913a9963f6e45?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-05-09T20:34:56.469Z","user_id":"auth0|645aae700be902874f49e744","username":"testusername"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 101.74825ms
+ - id: 36
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"org_EogPbEcYfHD7ZKfK","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 117.3835ms
+ - id: 37
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_DZDTWlL215fMjVse/permissions?include_totals=true&page=0&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 114.124333ms
+ - id: 38
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 117.384333ms
+ - id: 39
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744/permissions?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 114.133084ms
+ - id: 40
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_PK0sklOOEDXUCMDc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"rol_PK0sklOOEDXUCMDc","name":"Admin - testaccorganizationmember","description":null}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 167.436459ms
+ - id: 41
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK/members/auth0%7C645aae700be902874f49e744/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[{"id":"rol_DZDTWlL215fMjVse","name":"Reader - testaccorganizationmember","description":null}],"start":0,"limit":50,"total":1}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 115.315917ms
+ - id: 42
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_PK0sklOOEDXUCMDc/permissions?include_totals=true&page=0&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 110.376792ms
+ - id: 43
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_DZDTWlL215fMjVse
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"rol_DZDTWlL215fMjVse","name":"Reader - testaccorganizationmember","description":null}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 66.824292ms
+ - 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"org_EogPbEcYfHD7ZKfK","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 80.64025ms
+ - 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"created_at":"2023-05-09T20:34:56.469Z","email":"testaccorganizationmember@auth0.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"645aae700be902874f49e744","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember@auth0.com","nickname":"testaccorganizationmember","picture":"https://s.gravatar.com/avatar/fa2823a2ce146138c5a913a9963f6e45?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-05-09T20:34:56.469Z","user_id":"auth0|645aae700be902874f49e744","username":"testusername"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 104.437542ms
+ - 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_DZDTWlL215fMjVse/permissions?include_totals=true&page=0&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 102.52225ms
+ - 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 113.547083ms
+ - 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_PK0sklOOEDXUCMDc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"rol_PK0sklOOEDXUCMDc","name":"Admin - testaccorganizationmember","description":null}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 104.200709ms
+ - 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744/permissions?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 112.6975ms
+ - 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_PK0sklOOEDXUCMDc/permissions?include_totals=true&page=0&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 98.074792ms
+ - 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK/members/auth0%7C645aae700be902874f49e744/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[{"id":"rol_DZDTWlL215fMjVse","name":"Reader - testaccorganizationmember","description":null}],"start":0,"limit":50,"total":1}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 109.427375ms
+ - id: 52
+ 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_PK0sklOOEDXUCMDc"]}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK/members/auth0%7C645aae700be902874f49e744/roles
+ 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: 116.069709ms
+ - 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK/members/auth0%7C645aae700be902874f49e744/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[{"id":"rol_DZDTWlL215fMjVse","name":"Reader - testaccorganizationmember","description":null},{"id":"rol_PK0sklOOEDXUCMDc","name":"Admin - testaccorganizationmember","description":null}],"start":0,"limit":50,"total":2}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 117.16325ms
+ - id: 54
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"org_EogPbEcYfHD7ZKfK","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 99.029625ms
+ - id: 55
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_DZDTWlL215fMjVse
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"rol_DZDTWlL215fMjVse","name":"Reader - testaccorganizationmember","description":null}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 101.756125ms
+ - id: 56
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"created_at":"2023-05-09T20:34:56.469Z","email":"testaccorganizationmember@auth0.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"645aae700be902874f49e744","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember@auth0.com","nickname":"testaccorganizationmember","picture":"https://s.gravatar.com/avatar/fa2823a2ce146138c5a913a9963f6e45?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-05-09T20:34:56.469Z","user_id":"auth0|645aae700be902874f49e744","username":"testusername"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 102.810667ms
+ - id: 57
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 102.703958ms
+ - id: 58
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_DZDTWlL215fMjVse/permissions?include_totals=true&page=0&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 106.675459ms
+ - id: 59
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_PK0sklOOEDXUCMDc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"rol_PK0sklOOEDXUCMDc","name":"Admin - testaccorganizationmember","description":null}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 117.99375ms
+ - id: 60
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744/permissions?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 128.5155ms
+ - id: 61
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_PK0sklOOEDXUCMDc/permissions?include_totals=true&page=0&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 103.464291ms
+ - id: 62
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK/members/auth0%7C645aae700be902874f49e744/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[{"id":"rol_DZDTWlL215fMjVse","name":"Reader - testaccorganizationmember","description":null},{"id":"rol_PK0sklOOEDXUCMDc","name":"Admin - testaccorganizationmember","description":null}],"start":0,"limit":50,"total":2}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 114.781917ms
+ - id: 63
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"created_at":"2023-05-09T20:34:56.469Z","email":"testaccorganizationmember@auth0.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"645aae700be902874f49e744","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember@auth0.com","nickname":"testaccorganizationmember","picture":"https://s.gravatar.com/avatar/fa2823a2ce146138c5a913a9963f6e45?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-05-09T20:34:56.469Z","user_id":"auth0|645aae700be902874f49e744","username":"testusername"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 64.91025ms
+ - id: 64
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"org_EogPbEcYfHD7ZKfK","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 96.683458ms
+ - id: 65
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_DZDTWlL215fMjVse
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"rol_DZDTWlL215fMjVse","name":"Reader - testaccorganizationmember","description":null}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 102.17125ms
+ - id: 66
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 99.598834ms
+ - id: 67
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_DZDTWlL215fMjVse/permissions?include_totals=true&page=0&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 154.23075ms
+ - id: 68
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744/permissions?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 104.302625ms
+ - id: 69
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_PK0sklOOEDXUCMDc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"rol_PK0sklOOEDXUCMDc","name":"Admin - testaccorganizationmember","description":null}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 97.966667ms
+ - id: 70
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_PK0sklOOEDXUCMDc/permissions?include_totals=true&page=0&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 170.993375ms
+ - id: 71
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK/members/auth0%7C645aae700be902874f49e744/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[{"id":"rol_DZDTWlL215fMjVse","name":"Reader - testaccorganizationmember","description":null},{"id":"rol_PK0sklOOEDXUCMDc","name":"Admin - testaccorganizationmember","description":null}],"start":0,"limit":50,"total":2}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 125.990625ms
+ - id: 72
+ 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_DZDTWlL215fMjVse"]}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK/members/auth0%7C645aae700be902874f49e744/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: 115.107292ms
+ - id: 73
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK/members/auth0%7C645aae700be902874f49e744/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[{"id":"rol_PK0sklOOEDXUCMDc","name":"Admin - testaccorganizationmember","description":null}],"start":0,"limit":50,"total":1}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 128.20525ms
+ - id: 74
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"org_EogPbEcYfHD7ZKfK","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 103.789167ms
+ - id: 75
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"created_at":"2023-05-09T20:34:56.469Z","email":"testaccorganizationmember@auth0.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"645aae700be902874f49e744","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember@auth0.com","nickname":"testaccorganizationmember","picture":"https://s.gravatar.com/avatar/fa2823a2ce146138c5a913a9963f6e45?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-05-09T20:34:56.469Z","user_id":"auth0|645aae700be902874f49e744","username":"testusername"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 120.442625ms
+ - id: 76
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_DZDTWlL215fMjVse
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"rol_DZDTWlL215fMjVse","name":"Reader - testaccorganizationmember","description":null}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 120.847791ms
+ - id: 77
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 103.865041ms
+ - id: 78
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_DZDTWlL215fMjVse/permissions?include_totals=true&page=0&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 105.483792ms
+ - id: 79
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744/permissions?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 103.885833ms
+ - id: 80
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_PK0sklOOEDXUCMDc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"rol_PK0sklOOEDXUCMDc","name":"Admin - testaccorganizationmember","description":null}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 102.20425ms
+ - id: 81
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 5
+ transfer_encoding: []
+ trailer: {}
+ host: terraform-provider-auth0-dev.eu.auth0.com
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ null
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_PK0sklOOEDXUCMDc/permissions?include_totals=true&page=0&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 115.261709ms
+ - id: 82
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 5
+ transfer_encoding: []
+ trailer: {}
+ host: terraform-provider-auth0-dev.eu.auth0.com
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ null
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK/members/auth0%7C645aae700be902874f49e744/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[{"id":"rol_PK0sklOOEDXUCMDc","name":"Admin - testaccorganizationmember","description":null}],"start":0,"limit":50,"total":1}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 102.637708ms
+ - id: 83
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 5
+ transfer_encoding: []
+ trailer: {}
+ host: terraform-provider-auth0-dev.eu.auth0.com
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ null
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"created_at":"2023-05-09T20:34:56.469Z","email":"testaccorganizationmember@auth0.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"645aae700be902874f49e744","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember@auth0.com","nickname":"testaccorganizationmember","picture":"https://s.gravatar.com/avatar/fa2823a2ce146138c5a913a9963f6e45?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-05-09T20:34:56.469Z","user_id":"auth0|645aae700be902874f49e744","username":"testusername"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 99.745166ms
+ - id: 84
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 5
+ transfer_encoding: []
+ trailer: {}
+ host: terraform-provider-auth0-dev.eu.auth0.com
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ null
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_DZDTWlL215fMjVse
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"rol_DZDTWlL215fMjVse","name":"Reader - testaccorganizationmember","description":null}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 99.776583ms
+ - id: 85
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 5
+ transfer_encoding: []
+ trailer: {}
+ host: terraform-provider-auth0-dev.eu.auth0.com
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ null
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"org_EogPbEcYfHD7ZKfK","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 105.445125ms
+ - id: 86
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 5
+ transfer_encoding: []
+ trailer: {}
+ host: terraform-provider-auth0-dev.eu.auth0.com
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ null
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 98.49875ms
+ - id: 87
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 5
+ transfer_encoding: []
+ trailer: {}
+ host: terraform-provider-auth0-dev.eu.auth0.com
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ null
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_DZDTWlL215fMjVse/permissions?include_totals=true&page=0&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 103.14825ms
+ - id: 88
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 5
+ transfer_encoding: []
+ trailer: {}
+ host: terraform-provider-auth0-dev.eu.auth0.com
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ null
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744/permissions?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 107.637ms
+ - id: 89
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 5
+ transfer_encoding: []
+ trailer: {}
+ host: terraform-provider-auth0-dev.eu.auth0.com
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ null
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_PK0sklOOEDXUCMDc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"rol_PK0sklOOEDXUCMDc","name":"Admin - testaccorganizationmember","description":null}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 99.348125ms
+ - id: 90
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 5
+ transfer_encoding: []
+ trailer: {}
+ host: terraform-provider-auth0-dev.eu.auth0.com
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ null
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_PK0sklOOEDXUCMDc/permissions?include_totals=true&page=0&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 109.428959ms
+ - id: 91
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK/members/auth0%7C645aae700be902874f49e744/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[{"id":"rol_PK0sklOOEDXUCMDc","name":"Admin - testaccorganizationmember","description":null}],"start":0,"limit":50,"total":1}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 108.251708ms
+ - id: 92
+ 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_PK0sklOOEDXUCMDc"]}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK/members/auth0%7C645aae700be902874f49e744/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: 69.999458ms
+ - id: 93
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK/members/auth0%7C645aae700be902874f49e744/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 121.770166ms
+ - id: 94
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_DZDTWlL215fMjVse
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"rol_DZDTWlL215fMjVse","name":"Reader - testaccorganizationmember","description":null}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 60.98925ms
+ - id: 95
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"created_at":"2023-05-09T20:34:56.469Z","email":"testaccorganizationmember@auth0.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"645aae700be902874f49e744","provider":"auth0","isSocial":false}],"name":"testaccorganizationmember@auth0.com","nickname":"testaccorganizationmember","picture":"https://s.gravatar.com/avatar/fa2823a2ce146138c5a913a9963f6e45?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-05-09T20:34:56.469Z","user_id":"auth0|645aae700be902874f49e744","username":"testusername"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 96.216416ms
+ - id: 96
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"org_EogPbEcYfHD7ZKfK","name":"some-org-testaccorganizationmember","display_name":"testaccorganizationmember"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 97.943875ms
+ - 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_DZDTWlL215fMjVse/permissions?include_totals=true&page=0&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 97.698208ms
+ - 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 99.873833ms
+ - 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_PK0sklOOEDXUCMDc
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"id":"rol_PK0sklOOEDXUCMDc","name":"Admin - testaccorganizationmember","description":null}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 98.097958ms
+ - 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744/permissions?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 102.974583ms
+ - 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_PK0sklOOEDXUCMDc/permissions?include_totals=true&page=0&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 101.60975ms
+ - 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK/members/auth0%7C645aae700be902874f49e744/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 110.897041ms
+ - id: 103
+ 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|645aae700be902874f49e744"]}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK/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: 67.022083ms
+ - id: 104
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/organizations/org_EogPbEcYfHD7ZKfK
+ 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: 105.173541ms
+ - id: 105
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 3
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_PK0sklOOEDXUCMDc
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 2
+ uncompressed: false
+ body: '{}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 114.779584ms
+ - id: 106
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aae700be902874f49e744
+ 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: 143.807666ms
+ - id: 107
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 3
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_DZDTWlL215fMjVse
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 2
+ uncompressed: false
+ body: '{}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 102.692375ms
diff --git a/test/data/recordings/TestAccUser.yaml b/test/data/recordings/TestAccUser.yaml
index 83c09a8ce..ccf7c06c7 100644
--- a/test/data/recordings/TestAccUser.yaml
+++ b/test/data/recordings/TestAccUser.yaml
@@ -19,7 +19,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
+ - Go-Auth0-SDK/0.17.0
url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users
method: POST
response:
@@ -30,13 +30,13 @@ interactions:
trailer: {}
content_length: 527
uncompressed: false
- body: '{"created_at":"2022-10-07T14:43:27.699Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuser@acceptance.test.com","nickname":"testaccuser","picture":"https://s.gravatar.com/avatar/324ad113b0ef6dabbb2c2c4cf8a8d108?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2022-10-07T14:43:27.699Z","user_id":"auth0|testaccuser","username":"testaccuser"}'
+ body: '{"created_at":"2023-05-09T20:13:53.880Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuser@acceptance.test.com","nickname":"testaccuser","picture":"https://s.gravatar.com/avatar/324ad113b0ef6dabbb2c2c4cf8a8d108?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-05-09T20:13:53.880Z","user_id":"auth0|testaccuser","username":"testaccuser"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 201 Created
code: 201
- duration: 1ms
+ duration: 274.019041ms
- id: 1
request:
proto: HTTP/1.1
@@ -55,7 +55,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
+ - Go-Auth0-SDK/0.17.0
url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
method: GET
response:
@@ -66,13 +66,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"created_at":"2022-10-07T14:43:27.699Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuser@acceptance.test.com","nickname":"testaccuser","picture":"https://s.gravatar.com/avatar/324ad113b0ef6dabbb2c2c4cf8a8d108?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2022-10-07T14:43:27.699Z","user_id":"auth0|testaccuser","username":"testaccuser"}'
+ body: '{"created_at":"2023-05-09T20:13:53.880Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuser@acceptance.test.com","nickname":"testaccuser","picture":"https://s.gravatar.com/avatar/324ad113b0ef6dabbb2c2c4cf8a8d108?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-05-09T20:13:53.880Z","user_id":"auth0|testaccuser","username":"testaccuser"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 130.192ms
- id: 2
request:
proto: HTTP/1.1
@@ -91,7 +91,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
+ - Go-Auth0-SDK/0.17.0
url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
method: GET
response:
@@ -108,7 +108,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 107.810708ms
- id: 3
request:
proto: HTTP/1.1
@@ -127,8 +127,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/permissions?include_totals=true&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -138,13 +138,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"created_at":"2022-10-07T14:43:27.699Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuser@acceptance.test.com","nickname":"testaccuser","picture":"https://s.gravatar.com/avatar/324ad113b0ef6dabbb2c2c4cf8a8d108?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2022-10-07T14:43:27.699Z","user_id":"auth0|testaccuser","username":"testaccuser"}'
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 160.219416ms
- id: 4
request:
proto: HTTP/1.1
@@ -163,8 +163,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
method: GET
response:
proto: HTTP/2.0
@@ -174,13 +174,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ body: '{"created_at":"2023-05-09T20:13:53.880Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuser@acceptance.test.com","nickname":"testaccuser","picture":"https://s.gravatar.com/avatar/324ad113b0ef6dabbb2c2c4cf8a8d108?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-05-09T20:13:53.880Z","user_id":"auth0|testaccuser","username":"testaccuser"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 106.781834ms
- id: 5
request:
proto: HTTP/1.1
@@ -199,8 +199,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -210,13 +210,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"created_at":"2022-10-07T14:43:27.699Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuser@acceptance.test.com","nickname":"testaccuser","picture":"https://s.gravatar.com/avatar/324ad113b0ef6dabbb2c2c4cf8a8d108?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2022-10-07T14:43:27.699Z","user_id":"auth0|testaccuser","username":"testaccuser"}'
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 107.773ms
- id: 6
request:
proto: HTTP/1.1
@@ -235,8 +235,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/permissions?include_totals=true&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -246,34 +246,34 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 115.845959ms
- id: 7
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 201
+ content_length: 5
transfer_encoding: []
trailer: {}
host: terraform-provider-auth0-dev.eu.auth0.com
remote_addr: ""
request_uri: ""
body: |
- {"connection":"Username-Password-Authentication","name":"Firstname Lastname","given_name":"Firstname","family_name":"Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg"}
+ null
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
+ - Go-Auth0-SDK/0.17.0
url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
- method: PATCH
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
@@ -282,13 +282,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"created_at":"2022-10-07T14:43:27.699Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2022-10-07T14:43:30.201Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname"}'
+ body: '{"created_at":"2023-05-09T20:13:53.880Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"testaccuser@acceptance.test.com","nickname":"testaccuser","picture":"https://s.gravatar.com/avatar/324ad113b0ef6dabbb2c2c4cf8a8d108?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fte.png","updated_at":"2023-05-09T20:13:53.880Z","user_id":"auth0|testaccuser","username":"testaccuser"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 157.440583ms
- id: 8
request:
proto: HTTP/1.1
@@ -307,8 +307,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -318,13 +318,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"created_at":"2022-10-07T14:43:27.699Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2022-10-07T14:43:30.201Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname"}'
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 171.288292ms
- id: 9
request:
proto: HTTP/1.1
@@ -343,8 +343,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/permissions?include_totals=true&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -354,34 +354,34 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 107.397ms
- id: 10
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 5
+ content_length: 128
transfer_encoding: []
trailer: {}
host: terraform-provider-auth0-dev.eu.auth0.com
remote_addr: ""
request_uri: ""
body: |
- null
+ {"name":"Firstname Lastname","given_name":"Firstname","family_name":"Lastname","picture":"https://www.example.com/picture.jpg"}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
+ - Go-Auth0-SDK/0.17.0
url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
- method: GET
+ method: PATCH
response:
proto: HTTP/2.0
proto_major: 2
@@ -390,13 +390,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"created_at":"2022-10-07T14:43:27.699Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2022-10-07T14:43:30.201Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname"}'
+ body: '{"created_at":"2023-05-09T20:13:53.880Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-05-09T20:13:56.284Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 125.132875ms
- id: 11
request:
proto: HTTP/1.1
@@ -415,8 +415,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
method: GET
response:
proto: HTTP/2.0
@@ -426,13 +426,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ body: '{"created_at":"2023-05-09T20:13:53.880Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-05-09T20:13:56.284Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 106.687791ms
- id: 12
request:
proto: HTTP/1.1
@@ -451,8 +451,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -462,13 +462,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"created_at":"2022-10-07T14:43:27.699Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2022-10-07T14:43:30.201Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname"}'
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 99.387083ms
- id: 13
request:
proto: HTTP/1.1
@@ -487,8 +487,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/permissions?include_totals=true&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -498,34 +498,34 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 115.587583ms
- id: 14
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 39
+ content_length: 5
transfer_encoding: []
trailer: {}
host: terraform-provider-auth0-dev.eu.auth0.com
remote_addr: ""
request_uri: ""
body: |
- {"name":"owner","description":"Owner"}
+ null
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles
- method: POST
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
@@ -534,13 +534,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"rol_an34l1Q99lYHBdfL","name":"owner","description":"Owner"}'
+ body: '{"created_at":"2023-05-09T20:13:53.880Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-05-09T20:13:56.284Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 118.354959ms
- id: 15
request:
proto: HTTP/1.1
@@ -559,8 +559,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_an34l1Q99lYHBdfL
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -570,13 +570,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"rol_an34l1Q99lYHBdfL","name":"owner","description":"Owner"}'
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 110.170625ms
- id: 16
request:
proto: HTTP/1.1
@@ -595,8 +595,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_an34l1Q99lYHBdfL/permissions?include_totals=true&page=0&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/permissions?include_totals=true&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -612,28 +612,28 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 111.310125ms
- id: 17
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: |
- {"name":"admin","description":"Administrator"}
+ null
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles
- method: POST
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
@@ -642,13 +642,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"rol_glzBftX5hzVQN6xe","name":"admin","description":"Administrator"}'
+ body: '{"created_at":"2023-05-09T20:13:53.880Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-05-09T20:13:56.284Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 99.634375ms
- id: 18
request:
proto: HTTP/1.1
@@ -667,8 +667,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_glzBftX5hzVQN6xe
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -678,13 +678,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"rol_glzBftX5hzVQN6xe","name":"admin","description":"Administrator"}'
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 106.058417ms
- id: 19
request:
proto: HTTP/1.1
@@ -703,8 +703,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_glzBftX5hzVQN6xe/permissions?include_totals=true&page=0&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/permissions?include_totals=true&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -720,28 +720,28 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 120.326333ms
- id: 20
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 284
+ content_length: 39
transfer_encoding: []
trailer: {}
host: terraform-provider-auth0-dev.eu.auth0.com
remote_addr: ""
request_uri: ""
body: |
- {"connection":"Username-Password-Authentication","name":"Firstname Lastname","given_name":"Firstname","family_name":"Lastname","nickname":"testaccuser","user_metadata":{"baz":"qux","foo":"bar"},"app_metadata":{"baz":"qux","foo":"bar"},"picture":"https://www.example.com/picture.jpg"}
+ {"name":"owner","description":"Owner"}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
- method: PATCH
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
@@ -750,49 +750,49 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"created_at":"2022-10-07T14:43:27.699Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2022-10-07T14:43:33.494Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{"baz":"qux","foo":"bar"},"app_metadata":{"baz":"qux","foo":"bar"}}'
+ body: '{"id":"rol_6TA4aVQYvTWEuctT","name":"owner","description":"Owner"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 110.074291ms
- id: 21
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_glzBftX5hzVQN6xe","rol_an34l1Q99lYHBdfL"]}
+ null
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles
- method: POST
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_6TA4aVQYvTWEuctT
+ 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_6TA4aVQYvTWEuctT","name":"owner","description":"Owner"}'
headers:
Content-Type:
- application/json; charset=utf-8
- status: 204 No Content
- code: 204
- duration: 1ms
+ status: 200 OK
+ code: 200
+ duration: 100.211333ms
- id: 22
request:
proto: HTTP/1.1
@@ -811,8 +811,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_6TA4aVQYvTWEuctT/permissions?include_totals=true&page=0&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -822,34 +822,34 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"created_at":"2022-10-07T14:43:27.699Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2022-10-07T14:43:33.494Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{"baz":"qux","foo":"bar"},"app_metadata":{"baz":"qux","foo":"bar"}}'
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 114.991875ms
- id: 23
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
+ {"name":"admin","description":"Administrator"}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
- method: GET
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
@@ -858,13 +858,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"roles":[{"id":"rol_glzBftX5hzVQN6xe","name":"admin","description":"Administrator"},{"id":"rol_an34l1Q99lYHBdfL","name":"owner","description":"Owner"}],"start":0,"limit":50,"total":2}'
+ body: '{"id":"rol_AOVAQe4JqemE2j4e","name":"admin","description":"Administrator"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 103.270458ms
- id: 24
request:
proto: HTTP/1.1
@@ -883,8 +883,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_an34l1Q99lYHBdfL
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_AOVAQe4JqemE2j4e
method: GET
response:
proto: HTTP/2.0
@@ -894,13 +894,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"rol_an34l1Q99lYHBdfL","name":"owner","description":"Owner"}'
+ body: '{"id":"rol_AOVAQe4JqemE2j4e","name":"admin","description":"Administrator"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 101.184166ms
- id: 25
request:
proto: HTTP/1.1
@@ -919,8 +919,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_an34l1Q99lYHBdfL/permissions?include_totals=true&page=0&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_AOVAQe4JqemE2j4e/permissions?include_totals=true&page=0&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -936,28 +936,28 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 119.21375ms
- id: 26
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 5
+ content_length: 85
transfer_encoding: []
trailer: {}
host: terraform-provider-auth0-dev.eu.auth0.com
remote_addr: ""
request_uri: ""
body: |
- null
+ {"user_metadata":{"baz":"qux","foo":"bar"},"app_metadata":{"baz":"qux","foo":"bar"}}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_glzBftX5hzVQN6xe
- method: GET
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
+ method: PATCH
response:
proto: HTTP/2.0
proto_major: 2
@@ -966,49 +966,49 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"rol_glzBftX5hzVQN6xe","name":"admin","description":"Administrator"}'
+ body: '{"created_at":"2023-05-09T20:13:53.880Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-05-09T20:13:59.179Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{"baz":"qux","foo":"bar"},"app_metadata":{"baz":"qux","foo":"bar"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 122.778625ms
- id: 27
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_6TA4aVQYvTWEuctT","rol_AOVAQe4JqemE2j4e"]}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_glzBftX5hzVQN6xe/permissions?include_totals=true&page=0&per_page=50
- method: GET
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles
+ method: POST
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: -1
- uncompressed: true
- body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ content_length: 0
+ uncompressed: false
+ body: ""
headers:
Content-Type:
- application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 1ms
+ status: 204 No Content
+ code: 204
+ duration: 110.897584ms
- id: 28
request:
proto: HTTP/1.1
@@ -1027,7 +1027,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
+ - Go-Auth0-SDK/0.17.0
url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
method: GET
response:
@@ -1038,13 +1038,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"created_at":"2022-10-07T14:43:27.699Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2022-10-07T14:43:33.494Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{"baz":"qux","foo":"bar"},"app_metadata":{"baz":"qux","foo":"bar"}}'
+ body: '{"created_at":"2023-05-09T20:13:53.880Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-05-09T20:13:59.179Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{"baz":"qux","foo":"bar"},"app_metadata":{"baz":"qux","foo":"bar"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 107.582ms
- id: 29
request:
proto: HTTP/1.1
@@ -1063,7 +1063,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
+ - Go-Auth0-SDK/0.17.0
url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
method: GET
response:
@@ -1074,13 +1074,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"roles":[{"id":"rol_glzBftX5hzVQN6xe","name":"admin","description":"Administrator"},{"id":"rol_an34l1Q99lYHBdfL","name":"owner","description":"Owner"}],"start":0,"limit":50,"total":2}'
+ body: '{"roles":[{"id":"rol_AOVAQe4JqemE2j4e","name":"admin","description":"Administrator"},{"id":"rol_6TA4aVQYvTWEuctT","name":"owner","description":"Owner"}],"start":0,"limit":50,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 100.30975ms
- id: 30
request:
proto: HTTP/1.1
@@ -1099,8 +1099,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_an34l1Q99lYHBdfL
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/permissions?include_totals=true&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -1110,13 +1110,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"rol_an34l1Q99lYHBdfL","name":"owner","description":"Owner"}'
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 103.42725ms
- id: 31
request:
proto: HTTP/1.1
@@ -1135,8 +1135,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_glzBftX5hzVQN6xe
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_6TA4aVQYvTWEuctT
method: GET
response:
proto: HTTP/2.0
@@ -1146,13 +1146,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"rol_glzBftX5hzVQN6xe","name":"admin","description":"Administrator"}'
+ body: '{"id":"rol_6TA4aVQYvTWEuctT","name":"owner","description":"Owner"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 101.2995ms
- id: 32
request:
proto: HTTP/1.1
@@ -1171,8 +1171,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_glzBftX5hzVQN6xe/permissions?include_totals=true&page=0&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_6TA4aVQYvTWEuctT/permissions?include_totals=true&page=0&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -1188,7 +1188,7 @@ interactions:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 104.536916ms
- id: 33
request:
proto: HTTP/1.1
@@ -1207,8 +1207,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_an34l1Q99lYHBdfL/permissions?include_totals=true&page=0&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_AOVAQe4JqemE2j4e
method: GET
response:
proto: HTTP/2.0
@@ -1218,13 +1218,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ body: '{"id":"rol_AOVAQe4JqemE2j4e","name":"admin","description":"Administrator"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 107.9405ms
- id: 34
request:
proto: HTTP/1.1
@@ -1243,8 +1243,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_AOVAQe4JqemE2j4e/permissions?include_totals=true&page=0&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -1254,13 +1254,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"created_at":"2022-10-07T14:43:27.699Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2022-10-07T14:43:33.494Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{"baz":"qux","foo":"bar"},"app_metadata":{"baz":"qux","foo":"bar"}}'
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 168.888834ms
- id: 35
request:
proto: HTTP/1.1
@@ -1279,8 +1279,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
method: GET
response:
proto: HTTP/2.0
@@ -1290,70 +1290,70 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"roles":[{"id":"rol_glzBftX5hzVQN6xe","name":"admin","description":"Administrator"},{"id":"rol_an34l1Q99lYHBdfL","name":"owner","description":"Owner"}],"start":0,"limit":50,"total":2}'
+ body: '{"created_at":"2023-05-09T20:13:53.880Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-05-09T20:13:59.179Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{"baz":"qux","foo":"bar"},"app_metadata":{"baz":"qux","foo":"bar"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 103.817833ms
- id: 36
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 3
+ 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-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_an34l1Q99lYHBdfL
- method: DELETE
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 2
- uncompressed: false
- body: '{}'
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[{"id":"rol_AOVAQe4JqemE2j4e","name":"admin","description":"Administrator"},{"id":"rol_6TA4aVQYvTWEuctT","name":"owner","description":"Owner"}],"start":0,"limit":50,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 166.70225ms
- id: 37
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 284
+ content_length: 5
transfer_encoding: []
trailer: {}
host: terraform-provider-auth0-dev.eu.auth0.com
remote_addr: ""
request_uri: ""
body: |
- {"connection":"Username-Password-Authentication","name":"Firstname Lastname","given_name":"Firstname","family_name":"Lastname","nickname":"testaccuser","user_metadata":{"baz":null,"foo":"bars"},"app_metadata":{"baz":null,"foo":"bars"},"picture":"https://www.example.com/picture.jpg"}
+ null
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
- method: PATCH
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/permissions?include_totals=true&per_page=50
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
@@ -1362,34 +1362,34 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"created_at":"2022-10-07T14:43:27.699Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2022-10-07T14:43:36.994Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{"foo":"bars"},"app_metadata":{"foo":"bars"}}'
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 107.860708ms
- 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_an34l1Q99lYHBdfL"]}
+ null
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles
- method: DELETE
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_6TA4aVQYvTWEuctT
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
@@ -1398,13 +1398,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"statusCode":404,"error":"Not Found","message":"The role does not exist."}'
+ body: '{"id":"rol_6TA4aVQYvTWEuctT","name":"owner","description":"Owner"}'
headers:
Content-Type:
- application/json; charset=utf-8
- status: 404 Not Found
- code: 404
- duration: 1ms
+ status: 200 OK
+ code: 200
+ duration: 100.871292ms
- id: 39
request:
proto: HTTP/1.1
@@ -1423,8 +1423,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_AOVAQe4JqemE2j4e
method: GET
response:
proto: HTTP/2.0
@@ -1434,13 +1434,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"created_at":"2022-10-07T14:43:27.699Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2022-10-07T14:43:36.994Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{"foo":"bars"},"app_metadata":{"foo":"bars"}}'
+ body: '{"id":"rol_AOVAQe4JqemE2j4e","name":"admin","description":"Administrator"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 103.689ms
- id: 40
request:
proto: HTTP/1.1
@@ -1459,8 +1459,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_AOVAQe4JqemE2j4e/permissions?include_totals=true&page=0&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -1470,13 +1470,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"roles":[{"id":"rol_glzBftX5hzVQN6xe","name":"admin","description":"Administrator"}],"start":0,"limit":50,"total":1}'
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 110.98875ms
- id: 41
request:
proto: HTTP/1.1
@@ -1495,8 +1495,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_glzBftX5hzVQN6xe
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_6TA4aVQYvTWEuctT/permissions?include_totals=true&page=0&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -1506,13 +1506,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"rol_glzBftX5hzVQN6xe","name":"admin","description":"Administrator"}'
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 125.199125ms
- id: 42
request:
proto: HTTP/1.1
@@ -1531,8 +1531,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_glzBftX5hzVQN6xe/permissions?include_totals=true&page=0&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
method: GET
response:
proto: HTTP/2.0
@@ -1542,13 +1542,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ body: '{"created_at":"2023-05-09T20:13:53.880Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-05-09T20:13:59.179Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{"baz":"qux","foo":"bar"},"app_metadata":{"baz":"qux","foo":"bar"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 205.267042ms
- id: 43
request:
proto: HTTP/1.1
@@ -1567,8 +1567,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -1578,13 +1578,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"created_at":"2022-10-07T14:43:27.699Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2022-10-07T14:43:36.994Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{"foo":"bars"},"app_metadata":{"foo":"bars"}}'
+ body: '{"roles":[{"id":"rol_AOVAQe4JqemE2j4e","name":"admin","description":"Administrator"},{"id":"rol_6TA4aVQYvTWEuctT","name":"owner","description":"Owner"}],"start":0,"limit":50,"total":2}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 102.997042ms
- id: 44
request:
proto: HTTP/1.1
@@ -1603,8 +1603,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/permissions?include_totals=true&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -1614,70 +1614,70 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"roles":[{"id":"rol_glzBftX5hzVQN6xe","name":"admin","description":"Administrator"}],"start":0,"limit":50,"total":1}'
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 117.527833ms
- id: 45
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 5
+ content_length: 3
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-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
- method: GET
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_6TA4aVQYvTWEuctT
+ method: DELETE
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: -1
- uncompressed: true
- body: '{"created_at":"2022-10-07T14:43:27.699Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2022-10-07T14:43:36.994Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{"foo":"bars"},"app_metadata":{"foo":"bars"}}'
+ content_length: 2
+ uncompressed: false
+ body: '{}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 102.316375ms
- id: 46
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 5
+ content_length: 85
transfer_encoding: []
trailer: {}
host: terraform-provider-auth0-dev.eu.auth0.com
remote_addr: ""
request_uri: ""
body: |
- null
+ {"user_metadata":{"baz":null,"foo":"bars"},"app_metadata":{"baz":null,"foo":"bars"}}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
- method: GET
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
+ method: PATCH
response:
proto: HTTP/2.0
proto_major: 2
@@ -1686,34 +1686,34 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"roles":[{"id":"rol_glzBftX5hzVQN6xe","name":"admin","description":"Administrator"}],"start":0,"limit":50,"total":1}'
+ body: '{"created_at":"2023-05-09T20:13:53.880Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-05-09T20:14:02.635Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{"foo":"bars"},"app_metadata":{"foo":"bars"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 124.683375ms
- id: 47
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_6TA4aVQYvTWEuctT"]}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_glzBftX5hzVQN6xe
- method: GET
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles
+ method: DELETE
response:
proto: HTTP/2.0
proto_major: 2
@@ -1722,13 +1722,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"id":"rol_glzBftX5hzVQN6xe","name":"admin","description":"Administrator"}'
+ body: '{"statusCode":404,"error":"Not Found","message":"The role does not exist."}'
headers:
Content-Type:
- application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 1ms
+ status: 404 Not Found
+ code: 404
+ duration: 131.61825ms
- id: 48
request:
proto: HTTP/1.1
@@ -1747,8 +1747,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_glzBftX5hzVQN6xe/permissions?include_totals=true&page=0&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
method: GET
response:
proto: HTTP/2.0
@@ -1758,70 +1758,70 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ body: '{"created_at":"2023-05-09T20:13:53.880Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-05-09T20:14:02.635Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{"foo":"bars"},"app_metadata":{"foo":"bars"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 108.347625ms
- id: 49
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 3
+ 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-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_glzBftX5hzVQN6xe
- method: DELETE
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: 2
- uncompressed: false
- body: '{}'
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[{"id":"rol_AOVAQe4JqemE2j4e","name":"admin","description":"Administrator"}],"start":0,"limit":50,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 106.571542ms
- id: 50
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 292
+ content_length: 5
transfer_encoding: []
trailer: {}
host: terraform-provider-auth0-dev.eu.auth0.com
remote_addr: ""
request_uri: ""
body: |
- {"connection":"Username-Password-Authentication","name":"Firstname Lastname","given_name":"Firstname","family_name":"Lastname","nickname":"testaccuser","user_metadata":{"foo":"barss","foo2":"bar2"},"app_metadata":{"foo":"barss","foo2":"bar2"},"picture":"https://www.example.com/picture.jpg"}
+ null
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
- method: PATCH
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/permissions?include_totals=true&per_page=50
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
@@ -1830,34 +1830,34 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"created_at":"2022-10-07T14:43:27.699Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2022-10-07T14:43:39.737Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{"foo":"barss","foo2":"bar2"},"app_metadata":{"foo":"barss","foo2":"bar2"}}'
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 116.280334ms
- id: 51
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_glzBftX5hzVQN6xe"]}
+ null
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles
- method: DELETE
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_AOVAQe4JqemE2j4e
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
@@ -1866,13 +1866,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"statusCode":404,"error":"Not Found","message":"The role does not exist."}'
+ body: '{"id":"rol_AOVAQe4JqemE2j4e","name":"admin","description":"Administrator"}'
headers:
Content-Type:
- application/json; charset=utf-8
- status: 404 Not Found
- code: 404
- duration: 1ms
+ status: 200 OK
+ code: 200
+ duration: 117.783625ms
- id: 52
request:
proto: HTTP/1.1
@@ -1891,8 +1891,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_AOVAQe4JqemE2j4e/permissions?include_totals=true&page=0&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -1902,13 +1902,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"created_at":"2022-10-07T14:43:27.699Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2022-10-07T14:43:39.737Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{"foo":"barss","foo2":"bar2"},"app_metadata":{"foo":"barss","foo2":"bar2"}}'
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 133.693584ms
- id: 53
request:
proto: HTTP/1.1
@@ -1927,8 +1927,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
method: GET
response:
proto: HTTP/2.0
@@ -1938,13 +1938,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ body: '{"created_at":"2023-05-09T20:13:53.880Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-05-09T20:14:02.635Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{"foo":"bars"},"app_metadata":{"foo":"bars"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 158.981834ms
- id: 54
request:
proto: HTTP/1.1
@@ -1963,8 +1963,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -1974,13 +1974,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"created_at":"2022-10-07T14:43:27.699Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2022-10-07T14:43:39.737Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{"foo":"barss","foo2":"bar2"},"app_metadata":{"foo":"barss","foo2":"bar2"}}'
+ body: '{"roles":[{"id":"rol_AOVAQe4JqemE2j4e","name":"admin","description":"Administrator"}],"start":0,"limit":50,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 110.812917ms
- id: 55
request:
proto: HTTP/1.1
@@ -1999,8 +1999,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/permissions?include_totals=true&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -2010,13 +2010,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 108.559459ms
- id: 56
request:
proto: HTTP/1.1
@@ -2035,8 +2035,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_AOVAQe4JqemE2j4e
method: GET
response:
proto: HTTP/2.0
@@ -2046,13 +2046,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"created_at":"2022-10-07T14:43:27.699Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2022-10-07T14:43:39.737Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{"foo":"barss","foo2":"bar2"},"app_metadata":{"foo":"barss","foo2":"bar2"}}'
+ body: '{"id":"rol_AOVAQe4JqemE2j4e","name":"admin","description":"Administrator"}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 63.078792ms
- id: 57
request:
proto: HTTP/1.1
@@ -2071,8 +2071,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
method: GET
response:
proto: HTTP/2.0
@@ -2082,34 +2082,34 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ body: '{"created_at":"2023-05-09T20:13:53.880Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-05-09T20:14:02.635Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{"foo":"bars"},"app_metadata":{"foo":"bars"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 139.288291ms
- id: 58
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 238
+ content_length: 5
transfer_encoding: []
trailer: {}
host: terraform-provider-auth0-dev.eu.auth0.com
remote_addr: ""
request_uri: ""
body: |
- {"connection":"Username-Password-Authentication","name":"Firstname Lastname","given_name":"Firstname","family_name":"Lastname","nickname":"testaccuser","user_metadata":{},"app_metadata":{},"picture":"https://www.example.com/picture.jpg"}
+ null
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
- method: PATCH
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_AOVAQe4JqemE2j4e/permissions?include_totals=true&page=0&per_page=50
+ method: GET
response:
proto: HTTP/2.0
proto_major: 2
@@ -2118,13 +2118,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"created_at":"2022-10-07T14:43:27.699Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2022-10-07T14:43:41.957Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{}}'
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 100.131708ms
- id: 59
request:
proto: HTTP/1.1
@@ -2143,8 +2143,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -2154,13 +2154,13 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"created_at":"2022-10-07T14:43:27.699Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2022-10-07T14:43:41.957Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{}}'
+ body: '{"roles":[{"id":"rol_AOVAQe4JqemE2j4e","name":"admin","description":"Administrator"}],"start":0,"limit":50,"total":1}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 100.0195ms
- id: 60
request:
proto: HTTP/1.1
@@ -2179,8 +2179,8 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/permissions?include_totals=true&per_page=50
method: GET
response:
proto: HTTP/2.0
@@ -2190,70 +2190,70 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 101.393417ms
- id: 61
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 5
+ content_length: 3
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-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
- method: GET
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/roles/rol_AOVAQe4JqemE2j4e
+ method: DELETE
response:
proto: HTTP/2.0
proto_major: 2
proto_minor: 0
transfer_encoding: []
trailer: {}
- content_length: -1
- uncompressed: true
- body: '{"created_at":"2022-10-07T14:43:27.699Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2022-10-07T14:43:41.957Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{}}'
+ content_length: 2
+ uncompressed: false
+ body: '{}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 109.192458ms
- id: 62
request:
proto: HTTP/1.1
proto_major: 1
proto_minor: 1
- content_length: 5
+ content_length: 93
transfer_encoding: []
trailer: {}
host: terraform-provider-auth0-dev.eu.auth0.com
remote_addr: ""
request_uri: ""
body: |
- null
+ {"user_metadata":{"foo":"barss","foo2":"bar2"},"app_metadata":{"foo":"barss","foo2":"bar2"}}
form: {}
headers:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
- method: GET
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
+ method: PATCH
response:
proto: HTTP/2.0
proto_major: 2
@@ -2262,14 +2262,626 @@ interactions:
trailer: {}
content_length: -1
uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ body: '{"created_at":"2023-05-09T20:13:53.880Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-05-09T20:14:05.359Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{"foo":"barss","foo2":"bar2"},"app_metadata":{"foo":"barss","foo2":"bar2"}}'
headers:
Content-Type:
- application/json; charset=utf-8
status: 200 OK
code: 200
- duration: 1ms
+ duration: 112.625083ms
- id: 63
+ 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_AOVAQe4JqemE2j4e"]}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles
+ method: DELETE
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"statusCode":404,"error":"Not Found","message":"The role does not exist."}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 404 Not Found
+ code: 404
+ duration: 99.4565ms
+ - id: 64
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"created_at":"2023-05-09T20:13:53.880Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-05-09T20:14:05.359Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{"foo":"barss","foo2":"bar2"},"app_metadata":{"foo":"barss","foo2":"bar2"}}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 103.93625ms
+ - id: 65
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 101.479958ms
+ - id: 66
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/permissions?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 106.267375ms
+ - id: 67
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"created_at":"2023-05-09T20:13:53.880Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-05-09T20:14:05.359Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{"foo":"barss","foo2":"bar2"},"app_metadata":{"foo":"barss","foo2":"bar2"}}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 102.528917ms
+ - id: 68
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 107.832792ms
+ - id: 69
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/permissions?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 70.658416ms
+ - id: 70
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"created_at":"2023-05-09T20:13:53.880Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-05-09T20:14:05.359Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{"foo":"barss","foo2":"bar2"},"app_metadata":{"foo":"barss","foo2":"bar2"}}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 66.423958ms
+ - id: 71
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 106.964875ms
+ - id: 72
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/permissions?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 166.377416ms
+ - id: 73
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 39
+ transfer_encoding: []
+ trailer: {}
+ host: terraform-provider-auth0-dev.eu.auth0.com
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ {"user_metadata":{},"app_metadata":{}}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
+ method: PATCH
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"created_at":"2023-05-09T20:13:53.880Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-05-09T20:14:07.643Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{}}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 171.010917ms
+ - id: 74
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"created_at":"2023-05-09T20:13:53.880Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-05-09T20:14:07.643Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{}}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 99.726583ms
+ - id: 75
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 118.157ms
+ - id: 76
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/permissions?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 161.166042ms
+ - id: 77
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"created_at":"2023-05-09T20:13:53.880Z","email":"testaccuser@acceptance.test.com","email_verified":false,"identities":[{"user_id":"testaccuser","connection":"Username-Password-Authentication","provider":"auth0","isSocial":false}],"name":"Firstname Lastname","nickname":"testaccuser","picture":"https://www.example.com/picture.jpg","updated_at":"2023-05-09T20:14:07.643Z","user_id":"auth0|testaccuser","username":"testaccuser","family_name":"Lastname","given_name":"Firstname","user_metadata":{}}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 97.549833ms
+ - id: 78
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 162.639708ms
+ - id: 79
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser/permissions?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 104.783125ms
+ - id: 80
request:
proto: HTTP/1.1
proto_major: 1
@@ -2286,7 +2898,7 @@ interactions:
Content-Type:
- application/json
User-Agent:
- - Go-Auth0-SDK/0.11.0
+ - Go-Auth0-SDK/0.17.0
url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7Ctestaccuser
method: DELETE
response:
@@ -2303,4 +2915,4 @@ interactions:
- application/json; charset=utf-8
status: 204 No Content
code: 204
- duration: 1ms
+ duration: 156.346375ms
diff --git a/test/data/recordings/TestAccUserChangeUsername.yaml b/test/data/recordings/TestAccUserChangeUsername.yaml
index 797f5831b..24188fa39 100644
--- a/test/data/recordings/TestAccUserChangeUsername.yaml
+++ b/test/data/recordings/TestAccUserChangeUsername.yaml
@@ -1,542 +1,758 @@
---
version: 2
interactions:
- - id: 0
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 172
- transfer_encoding: [ ]
- trailer: { }
- host: terraform-provider-auth0-dev.eu.auth0.com
- remote_addr: ""
- request_uri: ""
- body: |
- {"connection":"Username-Password-Authentication","email":"change.username.terra@acceptance.test.com","username":"user_terra","password":"MyPass123$","email_verified":true}
- form: { }
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Go-Auth0-SDK/latest
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users
- method: POST
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: 581
- uncompressed: false
- body: '{"created_at":"2022-10-06T15:17:44.576Z","email":"change.username.terra@acceptance.test.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"633ef198346bf410b8475d3b","provider":"auth0","isSocial":false}],"name":"change.username.terra@acceptance.test.com","nickname":"change.username.terra","picture":"https://s.gravatar.com/avatar/62acb990858a2c9075eb1d3beb6f5baa?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fch.png","updated_at":"2022-10-06T15:17:44.576Z","user_id":"auth0|633ef198346bf410b8475d3b","username":"user_terra"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 201 Created
- code: 201
- duration: 1ms
- - id: 1
- 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-SDK/latest
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C633ef198346bf410b8475d3b
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"created_at":"2022-10-06T15:17:44.576Z","email":"change.username.terra@acceptance.test.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"633ef198346bf410b8475d3b","provider":"auth0","isSocial":false}],"name":"change.username.terra@acceptance.test.com","nickname":"change.username.terra","picture":"https://s.gravatar.com/avatar/62acb990858a2c9075eb1d3beb6f5baa?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fch.png","updated_at":"2022-10-06T15:17:44.576Z","user_id":"auth0|633ef198346bf410b8475d3b","username":"user_terra"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 1ms
- - id: 2
- 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-SDK/latest
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C633ef198346bf410b8475d3b/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 1ms
- - id: 3
- 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-SDK/latest
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C633ef198346bf410b8475d3b
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"created_at":"2022-10-06T15:17:44.576Z","email":"change.username.terra@acceptance.test.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"633ef198346bf410b8475d3b","provider":"auth0","isSocial":false}],"name":"change.username.terra@acceptance.test.com","nickname":"change.username.terra","picture":"https://s.gravatar.com/avatar/62acb990858a2c9075eb1d3beb6f5baa?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fch.png","updated_at":"2022-10-06T15:17:44.576Z","user_id":"auth0|633ef198346bf410b8475d3b","username":"user_terra"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 1ms
- - id: 4
- 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-SDK/latest
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C633ef198346bf410b8475d3b/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 1ms
- - id: 5
- 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-SDK/latest
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C633ef198346bf410b8475d3b
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"created_at":"2022-10-06T15:17:44.576Z","email":"change.username.terra@acceptance.test.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"633ef198346bf410b8475d3b","provider":"auth0","isSocial":false}],"name":"change.username.terra@acceptance.test.com","nickname":"change.username.terra","picture":"https://s.gravatar.com/avatar/62acb990858a2c9075eb1d3beb6f5baa?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fch.png","updated_at":"2022-10-06T15:17:44.576Z","user_id":"auth0|633ef198346bf410b8475d3b","username":"user_terra"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 1ms
- - id: 6
- 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-SDK/latest
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C633ef198346bf410b8475d3b/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 1ms
- - id: 7
- request:
- proto: HTTP/1.1
- proto_major: 1
- proto_minor: 1
- content_length: 76
- transfer_encoding: [ ]
- trailer: { }
- host: terraform-provider-auth0-dev.eu.auth0.com
- remote_addr: ""
- request_uri: ""
- body: |
- {"connection":"Username-Password-Authentication","username":"user_x_terra"}
- form: { }
- headers:
- Content-Type:
- - application/json
- User-Agent:
- - Go-Auth0-SDK/latest
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C633ef198346bf410b8475d3b
- method: PATCH
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"created_at":"2022-10-06T15:17:44.576Z","email":"change.username.terra@acceptance.test.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"633ef198346bf410b8475d3b","provider":"auth0","isSocial":false}],"name":"change.username.terra@acceptance.test.com","nickname":"change.username.terra","picture":"https://s.gravatar.com/avatar/62acb990858a2c9075eb1d3beb6f5baa?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fch.png","updated_at":"2022-10-06T15:17:48.225Z","user_id":"auth0|633ef198346bf410b8475d3b","username":"user_x_terra"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 1ms
- - id: 8
- 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-SDK/latest
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C633ef198346bf410b8475d3b
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"created_at":"2022-10-06T15:17:44.576Z","email":"change.username.terra@acceptance.test.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"633ef198346bf410b8475d3b","provider":"auth0","isSocial":false}],"name":"change.username.terra@acceptance.test.com","nickname":"change.username.terra","picture":"https://s.gravatar.com/avatar/62acb990858a2c9075eb1d3beb6f5baa?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fch.png","updated_at":"2022-10-06T15:17:48.225Z","user_id":"auth0|633ef198346bf410b8475d3b","username":"user_x_terra"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 1ms
- - id: 9
- 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-SDK/latest
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C633ef198346bf410b8475d3b/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 1ms
- - id: 10
- 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-SDK/latest
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C633ef198346bf410b8475d3b
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"created_at":"2022-10-06T15:17:44.576Z","email":"change.username.terra@acceptance.test.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"633ef198346bf410b8475d3b","provider":"auth0","isSocial":false}],"name":"change.username.terra@acceptance.test.com","nickname":"change.username.terra","picture":"https://s.gravatar.com/avatar/62acb990858a2c9075eb1d3beb6f5baa?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fch.png","updated_at":"2022-10-06T15:17:48.225Z","user_id":"auth0|633ef198346bf410b8475d3b","username":"user_x_terra"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 1ms
- - id: 11
- 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-SDK/latest
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C633ef198346bf410b8475d3b/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 1ms
- - id: 12
- 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-SDK/latest
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C633ef198346bf410b8475d3b
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"created_at":"2022-10-06T15:17:44.576Z","email":"change.username.terra@acceptance.test.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"633ef198346bf410b8475d3b","provider":"auth0","isSocial":false}],"name":"change.username.terra@acceptance.test.com","nickname":"change.username.terra","picture":"https://s.gravatar.com/avatar/62acb990858a2c9075eb1d3beb6f5baa?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fch.png","updated_at":"2022-10-06T15:17:48.225Z","user_id":"auth0|633ef198346bf410b8475d3b","username":"user_x_terra"}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 1ms
- - id: 13
- 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-SDK/latest
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C633ef198346bf410b8475d3b/roles?include_totals=true&per_page=50
- method: GET
- response:
- proto: HTTP/2.0
- proto_major: 2
- proto_minor: 0
- transfer_encoding: [ ]
- trailer: { }
- content_length: -1
- uncompressed: true
- body: '{"roles":[],"start":0,"limit":50,"total":0}'
- headers:
- Content-Type:
- - application/json; charset=utf-8
- status: 200 OK
- code: 200
- duration: 1ms
- - id: 14
- 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-SDK/latest
- url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C633ef198346bf410b8475d3b
- 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: 1ms
+ - id: 0
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 172
+ transfer_encoding: []
+ trailer: {}
+ host: terraform-provider-auth0-dev.eu.auth0.com
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ {"connection":"Username-Password-Authentication","email":"change.username.terra@acceptance.test.com","username":"user_terra","password":"MyPass123$","email_verified":true}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users
+ method: POST
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: 581
+ uncompressed: false
+ body: '{"created_at":"2023-05-09T20:23:27.489Z","email":"change.username.terra@acceptance.test.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"645aabbf92fae3f2bc9fa307","provider":"auth0","isSocial":false}],"name":"change.username.terra@acceptance.test.com","nickname":"change.username.terra","picture":"https://s.gravatar.com/avatar/62acb990858a2c9075eb1d3beb6f5baa?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fch.png","updated_at":"2023-05-09T20:23:27.489Z","user_id":"auth0|645aabbf92fae3f2bc9fa307","username":"user_terra"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 201 Created
+ code: 201
+ duration: 317.746791ms
+ - id: 1
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aabbf92fae3f2bc9fa307
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"created_at":"2023-05-09T20:23:27.489Z","email":"change.username.terra@acceptance.test.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"645aabbf92fae3f2bc9fa307","provider":"auth0","isSocial":false}],"name":"change.username.terra@acceptance.test.com","nickname":"change.username.terra","picture":"https://s.gravatar.com/avatar/62acb990858a2c9075eb1d3beb6f5baa?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fch.png","updated_at":"2023-05-09T20:23:27.489Z","user_id":"auth0|645aabbf92fae3f2bc9fa307","username":"user_terra"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 194.526ms
+ - id: 2
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aabbf92fae3f2bc9fa307/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 116.641917ms
+ - id: 3
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aabbf92fae3f2bc9fa307/permissions?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 104.494125ms
+ - id: 4
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aabbf92fae3f2bc9fa307
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"created_at":"2023-05-09T20:23:27.489Z","email":"change.username.terra@acceptance.test.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"645aabbf92fae3f2bc9fa307","provider":"auth0","isSocial":false}],"name":"change.username.terra@acceptance.test.com","nickname":"change.username.terra","picture":"https://s.gravatar.com/avatar/62acb990858a2c9075eb1d3beb6f5baa?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fch.png","updated_at":"2023-05-09T20:23:27.489Z","user_id":"auth0|645aabbf92fae3f2bc9fa307","username":"user_terra"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 161.494ms
+ - id: 5
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aabbf92fae3f2bc9fa307/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 108.89325ms
+ - id: 6
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aabbf92fae3f2bc9fa307/permissions?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 118.491084ms
+ - id: 7
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aabbf92fae3f2bc9fa307
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"created_at":"2023-05-09T20:23:27.489Z","email":"change.username.terra@acceptance.test.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"645aabbf92fae3f2bc9fa307","provider":"auth0","isSocial":false}],"name":"change.username.terra@acceptance.test.com","nickname":"change.username.terra","picture":"https://s.gravatar.com/avatar/62acb990858a2c9075eb1d3beb6f5baa?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fch.png","updated_at":"2023-05-09T20:23:27.489Z","user_id":"auth0|645aabbf92fae3f2bc9fa307","username":"user_terra"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 105.604083ms
+ - id: 8
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aabbf92fae3f2bc9fa307/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 105.220291ms
+ - id: 9
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aabbf92fae3f2bc9fa307/permissions?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 109.235667ms
+ - id: 10
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 28
+ transfer_encoding: []
+ trailer: {}
+ host: terraform-provider-auth0-dev.eu.auth0.com
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ {"username":"user_x_terra"}
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aabbf92fae3f2bc9fa307
+ method: PATCH
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"created_at":"2023-05-09T20:23:27.489Z","email":"change.username.terra@acceptance.test.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"645aabbf92fae3f2bc9fa307","provider":"auth0","isSocial":false}],"name":"change.username.terra@acceptance.test.com","nickname":"change.username.terra","picture":"https://s.gravatar.com/avatar/62acb990858a2c9075eb1d3beb6f5baa?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fch.png","updated_at":"2023-05-09T20:23:29.766Z","user_id":"auth0|645aabbf92fae3f2bc9fa307","username":"user_x_terra"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 158.450166ms
+ - id: 11
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aabbf92fae3f2bc9fa307
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"created_at":"2023-05-09T20:23:27.489Z","email":"change.username.terra@acceptance.test.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"645aabbf92fae3f2bc9fa307","provider":"auth0","isSocial":false}],"name":"change.username.terra@acceptance.test.com","nickname":"change.username.terra","picture":"https://s.gravatar.com/avatar/62acb990858a2c9075eb1d3beb6f5baa?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fch.png","updated_at":"2023-05-09T20:23:29.766Z","user_id":"auth0|645aabbf92fae3f2bc9fa307","username":"user_x_terra"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 228.196542ms
+ - id: 12
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aabbf92fae3f2bc9fa307/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 106.305666ms
+ - id: 13
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aabbf92fae3f2bc9fa307/permissions?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 128.380625ms
+ - id: 14
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 5
+ transfer_encoding: []
+ trailer: {}
+ host: terraform-provider-auth0-dev.eu.auth0.com
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ null
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aabbf92fae3f2bc9fa307
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"created_at":"2023-05-09T20:23:27.489Z","email":"change.username.terra@acceptance.test.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"645aabbf92fae3f2bc9fa307","provider":"auth0","isSocial":false}],"name":"change.username.terra@acceptance.test.com","nickname":"change.username.terra","picture":"https://s.gravatar.com/avatar/62acb990858a2c9075eb1d3beb6f5baa?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fch.png","updated_at":"2023-05-09T20:23:29.766Z","user_id":"auth0|645aabbf92fae3f2bc9fa307","username":"user_x_terra"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 97.924584ms
+ - id: 15
+ request:
+ proto: HTTP/1.1
+ proto_major: 1
+ proto_minor: 1
+ content_length: 5
+ transfer_encoding: []
+ trailer: {}
+ host: terraform-provider-auth0-dev.eu.auth0.com
+ remote_addr: ""
+ request_uri: ""
+ body: |
+ null
+ form: {}
+ headers:
+ Content-Type:
+ - application/json
+ User-Agent:
+ - Go-Auth0-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aabbf92fae3f2bc9fa307/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 104.833083ms
+ - id: 16
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aabbf92fae3f2bc9fa307/permissions?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 100.042167ms
+ - id: 17
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aabbf92fae3f2bc9fa307
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"created_at":"2023-05-09T20:23:27.489Z","email":"change.username.terra@acceptance.test.com","email_verified":true,"identities":[{"connection":"Username-Password-Authentication","user_id":"645aabbf92fae3f2bc9fa307","provider":"auth0","isSocial":false}],"name":"change.username.terra@acceptance.test.com","nickname":"change.username.terra","picture":"https://s.gravatar.com/avatar/62acb990858a2c9075eb1d3beb6f5baa?s=480&r=pg&d=https%3A%2F%2Fcdn.auth0.com%2Favatars%2Fch.png","updated_at":"2023-05-09T20:23:29.766Z","user_id":"auth0|645aabbf92fae3f2bc9fa307","username":"user_x_terra"}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 102.923417ms
+ - id: 18
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aabbf92fae3f2bc9fa307/roles?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"roles":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 97.91ms
+ - id: 19
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aabbf92fae3f2bc9fa307/permissions?include_totals=true&per_page=50
+ method: GET
+ response:
+ proto: HTTP/2.0
+ proto_major: 2
+ proto_minor: 0
+ transfer_encoding: []
+ trailer: {}
+ content_length: -1
+ uncompressed: true
+ body: '{"permissions":[],"start":0,"limit":50,"total":0}'
+ headers:
+ Content-Type:
+ - application/json; charset=utf-8
+ status: 200 OK
+ code: 200
+ duration: 168.606959ms
+ - id: 20
+ 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-SDK/0.17.0
+ url: https://terraform-provider-auth0-dev.eu.auth0.com/api/v2/users/auth0%7C645aabbf92fae3f2bc9fa307
+ 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: 175.681084ms