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 @@
A lightweight user account without access to various major functionalities.
A space owner to allow access for public link or content indexing.
REQUIRED. +The initiator's user id of the workflow.
REQUIRED. +The initiator's email of the workflow.
REQUIRED. +The initiator's display name of the workflow.