File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,8 @@ service Ir21Service {
7272 option (scope) = "" ;
7373 }
7474
75- // GetOrganisation is used to get an organisation from the IR21 database. The organisation is identified by its UUID. <br>
75+ // GetOrganisation is used to get an organisation from the IR21 database.
76+ // The organisation is identified by its UUID. <br>
7677 // <br>
7778 // NOTE: THIS METHOD IS CURRENTLY IN BETA RELEASE
7879 // See https://developer.cisco.com/docs/mobility-services/api-lifecycle
@@ -286,4 +287,12 @@ message Tadig {
286287 repeated wgtwo.common.v1.NetworkIdentity mccmncs = 2 ; // List of MCCMNCs associated with this TADIG.
287288 repeated string realms = 3 ; // List of realms associated with the MCCMNCs.
288289 repeated string gt_prefixes = 4 ; // List of GT prefixes associated with the MCCMNCs.
290+ repeated GtRange gt_ranges = 5 ; // List of GT ranges associated with the MCCMNCs.
291+ }
292+
293+ // GT range is a closed interval and corresponds to SN Range Start / SN Range Stop values
294+ // in a RAEX IR.21 document.
295+ message GtRange {
296+ int64 start = 1 ; // Range start, e.g., 4712345000
297+ int64 stop = 2 ; // Range stop, e.g., 4712345999
289298}
Original file line number Diff line number Diff line change 1+ // Copyright (C) 2023 Cisco Systems, Inc.
2+
13// Copyright 2023 [Working Group Two]/[Cisco Systems]
24//
35// Licensed under the Apache License, Version 2.0 (the "License");
@@ -37,6 +39,8 @@ message NumberLookupRequest {
3739 string id = 1 ;
3840 // The number to lookup
3941 wgtwo.common.v0.PhoneNumber number = 2 ;
42+ // Only present if the client has scope "lookup.number_detailed:read"
43+ wgtwo.common.v0.PhoneNumber recipient = 3 ;
4044}
4145
4246message NumberLookupResponse {
You can’t perform that action at this time.
0 commit comments