Skip to content

Commit

Permalink
APP-6845: Create GetBillingService API
Browse files Browse the repository at this point in the history
  • Loading branch information
jr22 committed Nov 11, 2024
1 parent 9b9576c commit 7c906b0
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions proto/viam/app/v1/app.proto
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,8 @@ service AppService {

rpc UpdateBillingService(UpdateBillingServiceRequest) returns (UpdateBillingServiceResponse);

rpc GetBillingService(UpdateBillingServiceRequest) returns (UpdateBillingServiceResponse);

rpc OrganizationSetSupportEmail(OrganizationSetSupportEmailRequest) returns (OrganizationSetSupportEmailResponse);

rpc OrganizationGetSupportEmail(OrganizationGetSupportEmailRequest) returns (OrganizationGetSupportEmailResponse);
Expand Down Expand Up @@ -447,6 +449,14 @@ message UpdateBillingServiceRequest {

message UpdateBillingServiceResponse {}

message GetBillingServiceRequest {
string org_id = 1;
}

message GetBillingServiceResponse {
BillingAddress billing_address = 1;
}

message DisableBillingServiceRequest {
string org_id = 1;
}
Expand Down

0 comments on commit 7c906b0

Please sign in to comment.