Skip to content

Commit

Permalink
[WTEL-4594]:
Browse files Browse the repository at this point in the history
+ api for contact linking with no auth
  • Loading branch information
Dtsnko committed May 29, 2024
1 parent 388a940 commit f36ef27
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions chat/messages/contacts.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,16 @@ service ContactLinkingService {
post: "/chat/{conversation_id}/contact"
};
}
// CreateContactFromConversation[No Authorization] creates new contact from the data existing in the conversation and after that links this contact to the external user.
rpc LinkContactToClientNA(LinkContactToClientNARequest) returns (LinkContactToClientNAResponse) {}
}

message LinkContactToClientNARequest {
string conversation_id = 1;
string contact_id = 2;
}

message LinkContactToClientNAResponse {}


message LinkContactToClientRequest {
Expand Down

0 comments on commit f36ef27

Please sign in to comment.