diff --git a/cs3/ocm/invite/v1beta1/invite_api.proto b/cs3/ocm/invite/v1beta1/invite_api.proto index 994e6484..0c00659f 100644 --- a/cs3/ocm/invite/v1beta1/invite_api.proto +++ b/cs3/ocm/invite/v1beta1/invite_api.proto @@ -100,6 +100,15 @@ message ForwardInviteResponse { // OPTIONAL. // Opaque information. cs3.types.v1beta1.Opaque opaque = 2; + // REQUIRED. + // The initiator's user id of the workflow. + cs3.identity.user.v1beta1.UserId user_id = 3; + // REQUIRED. + // The initiator's email of the workflow. + string email = 4; + // REQUIRED. + // The initiator's display name of the workflow. + string display_name = 5; } message AcceptInviteRequest { @@ -121,6 +130,15 @@ message AcceptInviteResponse { // OPTIONAL. // Opaque information. cs3.types.v1beta1.Opaque opaque = 2; + // REQUIRED. + // The initiator's user id of the workflow. + cs3.identity.user.v1beta1.UserId user_id = 3; + // REQUIRED. + // The initiator's email of the workflow. + string email = 4; + // REQUIRED. + // The initiator's display name of the workflow. + string display_name = 5; } message GetAcceptedUserRequest { diff --git a/docs/index.html b/docs/index.html index 973e5b06..a5baec8e 100644 --- a/docs/index.html +++ b/docs/index.html @@ -8295,6 +8295,12 @@

UserType

A lightweight user account without access to various major functionalities.

+ + USER_TYPE_SPACE_OWNER + 8 +

A space owner to allow access for public link or content indexing.

+ + @@ -8965,6 +8971,30 @@

AcceptInviteResponse

Opaque information.

+ + user_id + cs3.identity.user.v1beta1.UserId + +

REQUIRED. +The initiator's user id of the workflow.

+ + + + email + string + +

REQUIRED. +The initiator's email of the workflow.

+ + + + display_name + string + +

REQUIRED. +The initiator's display name of the workflow.

+ +