Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions fern/apis/signalwire-rest/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7885,14 +7885,14 @@ paths:
- name: region
in: query
required: false
description: A region or state to search within. Must be an ISO 3166-2 alpha-2 code, i.e. TX for Texas. Cannot be used in combination with areacode.
description: A region or state to search within. Must be an ISO 3166-2 alpha-2 code, i.e. TX for Texas. Only supported for local searches; not supported when `number_type` is toll-free.
schema:
type: string
explode: false
- name: city
in: query
required: false
description: A specific City to search within. Must be used in combination with region. Cannot be used in combination with areacode, starts_with, contains, or ends_with.
description: A specific City to search within. Must be used in combination with region. Only supported for local searches; not supported when `number_type` is toll-free.
schema:
type: string
explode: false
Expand Down
4 changes: 2 additions & 2 deletions specs/signalwire-rest/relay-rest/phone-numbers/main.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -134,11 +134,11 @@ namespace SignalWireAPI.RelayRest.PhoneNumbers {
max_results?: int32,

@query
@doc("A region or state to search within. Must be an ISO 3166-2 alpha-2 code, i.e. TX for Texas. Cannot be used in combination with areacode.")
@doc("A region or state to search within. Must be an ISO 3166-2 alpha-2 code, i.e. TX for Texas. Only supported for local searches; not supported when `number_type` is toll-free.")
region?: string,

@query
@doc("A specific City to search within. Must be used in combination with region. Cannot be used in combination with areacode, starts_with, contains, or ends_with.")
@doc("A specific City to search within. Must be used in combination with region. Only supported for local searches; not supported when `number_type` is toll-free.")
city?: string,
): AvailablePhoneNumbersResponse | StatusCode401 | StatusCode500;
}
Expand Down
Loading