zernio-sdk 0.0.531 → 0.0.533

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +16 -0
  3. data/docs/AdsApi.md +287 -0
  4. data/docs/CheckPhoneNumberPortability200ResponseResultsInner.md +5 -1
  5. data/docs/CreatePhoneNumberPortInRequest.md +4 -2
  6. data/docs/CreatePhoneNumberPortInRequestEndUser.md +8 -4
  7. data/docs/CreatePhoneNumberPortInRequestRequirementsInner.md +20 -0
  8. data/docs/CreateRfPrediction201Response.md +22 -0
  9. data/docs/CreateRfPredictionRequest.md +34 -0
  10. data/docs/CreateStandaloneAdRequest.md +4 -0
  11. data/docs/GetPhoneNumberPortInOrderRequirements200Response.md +20 -0
  12. data/docs/GetPhoneNumberPortInOrderRequirements200ResponseRequirementsInner.md +32 -0
  13. data/docs/GetPhoneNumberPortInRequirements200Response.md +24 -0
  14. data/docs/GetPhoneNumberPortInRequirements200ResponseFieldsInner.md +28 -0
  15. data/docs/PhoneNumbersApi.md +149 -5
  16. data/docs/ReserveRfPrediction201Response.md +20 -0
  17. data/docs/ReserveRfPredictionRequest.md +20 -0
  18. data/docs/RfPrediction.md +42 -0
  19. data/lib/zernio-sdk/api/ads_api.rb +294 -0
  20. data/lib/zernio-sdk/api/phone_numbers_api.rb +148 -10
  21. data/lib/zernio-sdk/models/check_phone_number_portability200_response_results_inner.rb +24 -2
  22. data/lib/zernio-sdk/models/create_phone_number_port_in_request.rb +36 -5
  23. data/lib/zernio-sdk/models/create_phone_number_port_in_request_end_user.rb +65 -23
  24. data/lib/zernio-sdk/models/create_phone_number_port_in_request_requirements_inner.rb +201 -0
  25. data/lib/zernio-sdk/models/create_rf_prediction201_response.rb +165 -0
  26. data/lib/zernio-sdk/models/create_rf_prediction_request.rb +323 -0
  27. data/lib/zernio-sdk/models/create_standalone_ad_request.rb +33 -1
  28. data/lib/zernio-sdk/models/get_phone_number_port_in_order_requirements200_response.rb +158 -0
  29. data/lib/zernio-sdk/models/get_phone_number_port_in_order_requirements200_response_requirements_inner.rb +247 -0
  30. data/lib/zernio-sdk/models/get_phone_number_port_in_requirements200_response.rb +177 -0
  31. data/lib/zernio-sdk/models/get_phone_number_port_in_requirements200_response_fields_inner.rb +231 -0
  32. data/lib/zernio-sdk/models/reserve_rf_prediction201_response.rb +156 -0
  33. data/lib/zernio-sdk/models/reserve_rf_prediction_request.rb +190 -0
  34. data/lib/zernio-sdk/models/rf_prediction.rb +273 -0
  35. data/lib/zernio-sdk/version.rb +1 -1
  36. data/lib/zernio-sdk.rb +10 -0
  37. data/openapi.yaml +283 -16
  38. data/spec/api/ads_api_spec.rb +52 -0
  39. data/spec/api/phone_numbers_api_spec.rb +28 -3
  40. data/spec/models/check_phone_number_portability200_response_results_inner_spec.rb +12 -0
  41. data/spec/models/create_phone_number_port_in_request_end_user_spec.rb +13 -1
  42. data/spec/models/create_phone_number_port_in_request_requirements_inner_spec.rb +42 -0
  43. data/spec/models/create_phone_number_port_in_request_spec.rb +6 -0
  44. data/spec/models/create_rf_prediction201_response_spec.rb +48 -0
  45. data/spec/models/create_rf_prediction_request_spec.rb +84 -0
  46. data/spec/models/create_standalone_ad_request_spec.rb +16 -0
  47. data/spec/models/get_phone_number_port_in_order_requirements200_response_requirements_inner_spec.rb +82 -0
  48. data/spec/models/get_phone_number_port_in_order_requirements200_response_spec.rb +42 -0
  49. data/spec/models/get_phone_number_port_in_requirements200_response_fields_inner_spec.rb +70 -0
  50. data/spec/models/get_phone_number_port_in_requirements200_response_spec.rb +54 -0
  51. data/spec/models/reserve_rf_prediction201_response_spec.rb +42 -0
  52. data/spec/models/reserve_rf_prediction_request_spec.rb +42 -0
  53. data/spec/models/rf_prediction_spec.rb +108 -0
  54. metadata +41 -1
@@ -0,0 +1,32 @@
1
+ # Zernio::GetPhoneNumberPortInOrderRequirements200ResponseRequirementsInner
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **requirement_id** | **String** | | [optional] |
8
+ | **label** | **String** | | [optional] |
9
+ | **kind** | **String** | | [optional] |
10
+ | **description** | **String** | | [optional] |
11
+ | **example** | **String** | | [optional] |
12
+ | **acceptable_values** | **Array<String>** | | [optional] |
13
+ | **status** | **String** | requirement-info-pending | requirement-info-under-review | requirement-info-exception | approved | [optional] |
14
+ | **filled** | **Boolean** | | [optional] |
15
+
16
+ ## Example
17
+
18
+ ```ruby
19
+ require 'zernio-sdk'
20
+
21
+ instance = Zernio::GetPhoneNumberPortInOrderRequirements200ResponseRequirementsInner.new(
22
+ requirement_id: null,
23
+ label: null,
24
+ kind: null,
25
+ description: null,
26
+ example: null,
27
+ acceptable_values: null,
28
+ status: null,
29
+ filled: null
30
+ )
31
+ ```
32
+
@@ -0,0 +1,24 @@
1
+ # Zernio::GetPhoneNumberPortInRequirements200Response
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **country** | **String** | | [optional] |
8
+ | **number_type** | **String** | | [optional] |
9
+ | **supported** | **Boolean** | false when the combination includes a step that can't be completed through the API (e.g. an in-person identity verification) — porting it needs support. | [optional] |
10
+ | **fields** | [**Array<GetPhoneNumberPortInRequirements200ResponseFieldsInner>**](GetPhoneNumberPortInRequirements200ResponseFieldsInner.md) | | [optional] |
11
+
12
+ ## Example
13
+
14
+ ```ruby
15
+ require 'zernio-sdk'
16
+
17
+ instance = Zernio::GetPhoneNumberPortInRequirements200Response.new(
18
+ country: null,
19
+ number_type: null,
20
+ supported: null,
21
+ fields: null
22
+ )
23
+ ```
24
+
@@ -0,0 +1,28 @@
1
+ # Zernio::GetPhoneNumberPortInRequirements200ResponseFieldsInner
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **requirement_id** | **String** | Pass back as requirements[].requirementTypeId. | [optional] |
8
+ | **label** | **String** | | [optional] |
9
+ | **kind** | **String** | text/date take a string value; file takes a documentId from the documents endpoint; address is satisfied automatically from the end-user service address. | [optional] |
10
+ | **description** | **String** | | [optional] |
11
+ | **example** | **String** | | [optional] |
12
+ | **acceptable_values** | **Array<String>** | When present, the value must be one of these. | [optional] |
13
+
14
+ ## Example
15
+
16
+ ```ruby
17
+ require 'zernio-sdk'
18
+
19
+ instance = Zernio::GetPhoneNumberPortInRequirements200ResponseFieldsInner.new(
20
+ requirement_id: null,
21
+ label: null,
22
+ kind: null,
23
+ description: null,
24
+ example: null,
25
+ acceptable_values: null
26
+ )
27
+ ```
28
+
@@ -11,6 +11,8 @@ All URIs are relative to *https://zernio.com/api*
11
11
  | [**create_phone_number_port_in**](PhoneNumbersApi.md#create_phone_number_port_in) | **POST** /v1/phone-numbers/port-in | Port numbers in |
12
12
  | [**get_phone_number**](PhoneNumbersApi.md#get_phone_number) | **GET** /v1/phone-numbers/{id} | Get phone number |
13
13
  | [**get_phone_number_kyc_form**](PhoneNumbersApi.md#get_phone_number_kyc_form) | **GET** /v1/phone-numbers/kyc | Get KYC form spec |
14
+ | [**get_phone_number_port_in_order_requirements**](PhoneNumbersApi.md#get_phone_number_port_in_order_requirements) | **GET** /v1/phone-numbers/port-in/{id}/requirements | A port-in order's pending requirements |
15
+ | [**get_phone_number_port_in_requirements**](PhoneNumbersApi.md#get_phone_number_port_in_requirements) | **GET** /v1/phone-numbers/port-in/requirements | Country porting requirements |
14
16
  | [**get_phone_number_remediation**](PhoneNumbersApi.md#get_phone_number_remediation) | **GET** /v1/phone-numbers/{id}/remediate | Get declined requirements |
15
17
  | [**list_phone_number_countries**](PhoneNumbersApi.md#list_phone_number_countries) | **GET** /v1/phone-numbers/countries | List offerable number countries |
16
18
  | [**list_phone_number_port_ins**](PhoneNumbersApi.md#list_phone_number_port_ins) | **GET** /v1/phone-numbers/port-in | List port-in orders |
@@ -312,7 +314,7 @@ end
312
314
 
313
315
  Port numbers in
314
316
 
315
- Submit a port-in for one or more existing numbers from another carrier. Creates the carrier order(s), attaches the end-user (current account) info plus the LOA and invoice documents, and submits to the losing carrier. The transfer PIN is forwarded to the carrier and never stored. Ported numbers arrive voice-ready (and SMS-ready where the order supports messaging). Run the portability check (POST /v1/phone-numbers/port-in/check) and upload the two documents (POST /v1/phone-numbers/port-in/documents) first. The carrier may split the numbers into several orders (by country, number type, losing carrier); `orders` carries per-order results, and a partial failure still returns 201 with the failed orders' `error` set (they stay as cancellable drafts).
317
+ Submit a port-in for one or more existing numbers from another carrier. Creates the carrier order(s), attaches the end-user (current account) info plus the LOA and invoice documents, and submits to the losing carrier. The transfer PIN is forwarded to the carrier and never stored. Ported numbers arrive voice-ready (and SMS-ready where the order supports messaging). Run the portability check (POST /v1/phone-numbers/port-in/check) and upload the two documents (POST /v1/phone-numbers/port-in/documents) first — uploaded documents must be attached to an order within 30 minutes or the carrier deletes them, so upload right before this call. The carrier may split the numbers into several orders (by country, number type, losing carrier); `orders` carries per-order results, and a partial failure still returns 201 with the failed orders' `error` set (they stay as cancellable drafts). Non-US/CA numbers additionally need the country-specific values from GET /v1/phone-numbers/port-in/requirements, passed via `requirements`, and must be submitted one country per request. When required information is still missing after submission, the order is kept as a resumable draft whose `error` / `declineReason` names the gaps.
316
318
 
317
319
  ### Examples
318
320
 
@@ -326,7 +328,7 @@ Zernio.configure do |config|
326
328
  end
327
329
 
328
330
  api_instance = Zernio::PhoneNumbersApi.new
329
- create_phone_number_port_in_request = Zernio::CreatePhoneNumberPortInRequest.new({phone_numbers: ['phone_numbers_example'], end_user: Zernio::CreatePhoneNumberPortInRequestEndUser.new({entity_name: 'entity_name_example', auth_person_name: 'auth_person_name_example', account_number: 'account_number_example', street_address: 'street_address_example', locality: 'locality_example', administrative_area: 'administrative_area_example', postal_code: 'postal_code_example', country_code: 'US'}), loa_document_id: 'loa_document_id_example', invoice_document_id: 'invoice_document_id_example'}) # CreatePhoneNumberPortInRequest |
331
+ create_phone_number_port_in_request = Zernio::CreatePhoneNumberPortInRequest.new({phone_numbers: ['phone_numbers_example'], end_user: Zernio::CreatePhoneNumberPortInRequestEndUser.new({entity_name: 'entity_name_example', auth_person_name: 'auth_person_name_example', account_number: 'account_number_example', street_address: 'street_address_example', locality: 'locality_example', postal_code: 'postal_code_example', country_code: 'US'}), loa_document_id: 'loa_document_id_example', invoice_document_id: 'invoice_document_id_example'}) # CreatePhoneNumberPortInRequest |
330
332
 
331
333
  begin
332
334
  # Port numbers in
@@ -517,6 +519,148 @@ end
517
519
  - **Accept**: application/json
518
520
 
519
521
 
522
+ ## get_phone_number_port_in_order_requirements
523
+
524
+ > <GetPhoneNumberPortInOrderRequirements200Response> get_phone_number_port_in_order_requirements(id)
525
+
526
+ A port-in order's pending requirements
527
+
528
+ The live requirements on an EXISTING porting order: which are filled, which are still pending, and which bounced on review (`requirement-info-exception`). Use it to fix and resubmit a rejected international port. Same field shape as the country-level requirements endpoint, plus per-requirement status.
529
+
530
+ ### Examples
531
+
532
+ ```ruby
533
+ require 'time'
534
+ require 'zernio-sdk'
535
+ # setup authorization
536
+ Zernio.configure do |config|
537
+ # Configure Bearer authorization (JWT): bearerAuth
538
+ config.access_token = 'YOUR_BEARER_TOKEN'
539
+ end
540
+
541
+ api_instance = Zernio::PhoneNumbersApi.new
542
+ id = 'id_example' # String | Porting order ID (from the port-in list).
543
+
544
+ begin
545
+ # A port-in order's pending requirements
546
+ result = api_instance.get_phone_number_port_in_order_requirements(id)
547
+ p result
548
+ rescue Zernio::ApiError => e
549
+ puts "Error when calling PhoneNumbersApi->get_phone_number_port_in_order_requirements: #{e}"
550
+ end
551
+ ```
552
+
553
+ #### Using the get_phone_number_port_in_order_requirements_with_http_info variant
554
+
555
+ This returns an Array which contains the response data, status code and headers.
556
+
557
+ > <Array(<GetPhoneNumberPortInOrderRequirements200Response>, Integer, Hash)> get_phone_number_port_in_order_requirements_with_http_info(id)
558
+
559
+ ```ruby
560
+ begin
561
+ # A port-in order's pending requirements
562
+ data, status_code, headers = api_instance.get_phone_number_port_in_order_requirements_with_http_info(id)
563
+ p status_code # => 2xx
564
+ p headers # => { ... }
565
+ p data # => <GetPhoneNumberPortInOrderRequirements200Response>
566
+ rescue Zernio::ApiError => e
567
+ puts "Error when calling PhoneNumbersApi->get_phone_number_port_in_order_requirements_with_http_info: #{e}"
568
+ end
569
+ ```
570
+
571
+ ### Parameters
572
+
573
+ | Name | Type | Description | Notes |
574
+ | ---- | ---- | ----------- | ----- |
575
+ | **id** | **String** | Porting order ID (from the port-in list). | |
576
+
577
+ ### Return type
578
+
579
+ [**GetPhoneNumberPortInOrderRequirements200Response**](GetPhoneNumberPortInOrderRequirements200Response.md)
580
+
581
+ ### Authorization
582
+
583
+ [bearerAuth](../README.md#bearerAuth)
584
+
585
+ ### HTTP request headers
586
+
587
+ - **Content-Type**: Not defined
588
+ - **Accept**: application/json
589
+
590
+
591
+ ## get_phone_number_port_in_requirements
592
+
593
+ > <GetPhoneNumberPortInRequirements200Response> get_phone_number_port_in_requirements(country, opts)
594
+
595
+ Country porting requirements
596
+
597
+ The country-specific information a port-in needs BEYOND the LOA, invoice, and account/address details — e.g. an ID copy, proof of address, a tax id, or a porting code. Call it after the portability check (which returns each number's `countryCode` and `phoneNumberType`), render the fields, and pass the collected values as the create request's `requirements`. US/CA return an empty list.
598
+
599
+ ### Examples
600
+
601
+ ```ruby
602
+ require 'time'
603
+ require 'zernio-sdk'
604
+ # setup authorization
605
+ Zernio.configure do |config|
606
+ # Configure Bearer authorization (JWT): bearerAuth
607
+ config.access_token = 'YOUR_BEARER_TOKEN'
608
+ end
609
+
610
+ api_instance = Zernio::PhoneNumbersApi.new
611
+ country = 'country_example' # String | ISO country of the numbers being ported (a supported port-in country).
612
+ opts = {
613
+ number_type: 'local' # String | The portability check's phoneNumberType — requirements differ by type.
614
+ }
615
+
616
+ begin
617
+ # Country porting requirements
618
+ result = api_instance.get_phone_number_port_in_requirements(country, opts)
619
+ p result
620
+ rescue Zernio::ApiError => e
621
+ puts "Error when calling PhoneNumbersApi->get_phone_number_port_in_requirements: #{e}"
622
+ end
623
+ ```
624
+
625
+ #### Using the get_phone_number_port_in_requirements_with_http_info variant
626
+
627
+ This returns an Array which contains the response data, status code and headers.
628
+
629
+ > <Array(<GetPhoneNumberPortInRequirements200Response>, Integer, Hash)> get_phone_number_port_in_requirements_with_http_info(country, opts)
630
+
631
+ ```ruby
632
+ begin
633
+ # Country porting requirements
634
+ data, status_code, headers = api_instance.get_phone_number_port_in_requirements_with_http_info(country, opts)
635
+ p status_code # => 2xx
636
+ p headers # => { ... }
637
+ p data # => <GetPhoneNumberPortInRequirements200Response>
638
+ rescue Zernio::ApiError => e
639
+ puts "Error when calling PhoneNumbersApi->get_phone_number_port_in_requirements_with_http_info: #{e}"
640
+ end
641
+ ```
642
+
643
+ ### Parameters
644
+
645
+ | Name | Type | Description | Notes |
646
+ | ---- | ---- | ----------- | ----- |
647
+ | **country** | **String** | ISO country of the numbers being ported (a supported port-in country). | |
648
+ | **number_type** | **String** | The portability check&#39;s phoneNumberType — requirements differ by type. | [optional][default to &#39;local&#39;] |
649
+
650
+ ### Return type
651
+
652
+ [**GetPhoneNumberPortInRequirements200Response**](GetPhoneNumberPortInRequirements200Response.md)
653
+
654
+ ### Authorization
655
+
656
+ [bearerAuth](../README.md#bearerAuth)
657
+
658
+ ### HTTP request headers
659
+
660
+ - **Content-Type**: Not defined
661
+ - **Accept**: application/json
662
+
663
+
520
664
  ## get_phone_number_remediation
521
665
 
522
666
  > <GetPhoneNumberRemediation200Response> get_phone_number_remediation(id)
@@ -1298,7 +1442,7 @@ end
1298
1442
 
1299
1443
  Upload a porting document
1300
1444
 
1301
- Upload ONE porting document (the signed LOA or a recent carrier invoice) and get back its `documentId`, which the port-in create request takes as `loaDocumentId` / `invoiceDocumentId`. PDF, JPEG, or PNG, 10MB max.
1445
+ Upload ONE porting document and get back its `documentId`. For the signed LOA / carrier invoice the id goes to `loaDocumentId` / `invoiceDocumentId`; for a country-specific document requirement (international ports) it becomes that requirement's `fieldValue`. Requirement documents are normalized to PDF automatically (regulators reject raw images). PDF, JPEG, or PNG, 10MB max. Uploads must be attached to an order within 30 minutes or the carrier deletes them.
1302
1446
 
1303
1447
  ### Examples
1304
1448
 
@@ -1314,7 +1458,7 @@ end
1314
1458
  api_instance = Zernio::PhoneNumbersApi.new
1315
1459
  file = File.new('/path/to/some/file') # File | The document (PDF/JPEG/PNG, 10MB max).
1316
1460
  opts = {
1317
- kind: 'loa' # String | Informational; used for the stored filename.
1461
+ kind: 'kind_example' # String | 'loa', 'invoice', or any short slug for requirement documents. Informational; used for the stored filename.
1318
1462
  }
1319
1463
 
1320
1464
  begin
@@ -1349,7 +1493,7 @@ end
1349
1493
  | Name | Type | Description | Notes |
1350
1494
  | ---- | ---- | ----------- | ----- |
1351
1495
  | **file** | **File** | The document (PDF/JPEG/PNG, 10MB max). | |
1352
- | **kind** | **String** | Informational; used for the stored filename. | [optional] |
1496
+ | **kind** | **String** | &#39;loa&#39;, &#39;invoice&#39;, or any short slug for requirement documents. Informational; used for the stored filename. | [optional] |
1353
1497
 
1354
1498
  ### Return type
1355
1499
 
@@ -0,0 +1,20 @@
1
+ # Zernio::ReserveRfPrediction201Response
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **ad_account_id** | **String** | | [optional] |
8
+ | **prediction** | [**RfPrediction**](RfPrediction.md) | | [optional] |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'zernio-sdk'
14
+
15
+ instance = Zernio::ReserveRfPrediction201Response.new(
16
+ ad_account_id: null,
17
+ prediction: null
18
+ )
19
+ ```
20
+
@@ -0,0 +1,20 @@
1
+ # Zernio::ReserveRfPredictionRequest
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **account_id** | **String** | | |
8
+ | **ad_account_id** | **String** | | |
9
+
10
+ ## Example
11
+
12
+ ```ruby
13
+ require 'zernio-sdk'
14
+
15
+ instance = Zernio::ReserveRfPredictionRequest.new(
16
+ account_id: null,
17
+ ad_account_id: null
18
+ )
19
+ ```
20
+
@@ -0,0 +1,42 @@
1
+ # Zernio::RfPrediction
2
+
3
+ ## Properties
4
+
5
+ | Name | Type | Description | Notes |
6
+ | ---- | ---- | ----------- | ----- |
7
+ | **prediction_id** | **String** | | [optional] |
8
+ | **status** | **String** | ready | pending | failed:&lt;meta code&gt; | [optional] |
9
+ | **budget** | **Float** | Quoted (or provided) lifetime budget for the window. | [optional] |
10
+ | **reach** | **Integer** | Predicted (or requested) unique reach. | [optional] |
11
+ | **impressions** | **Integer** | | [optional] |
12
+ | **min_budget** | **Float** | Meta&#39;s allowed lower bound for this spec. | [optional] |
13
+ | **max_budget** | **Float** | | [optional] |
14
+ | **min_reach** | **Integer** | | [optional] |
15
+ | **max_reach** | **Integer** | | [optional] |
16
+ | **frequency_cap** | **Integer** | | [optional] |
17
+ | **start_time** | **Integer** | Unix seconds; the reserved window the R&amp;F ad set will run on. | [optional] |
18
+ | **stop_time** | **Integer** | | [optional] |
19
+ | **expires_at** | **String** | When the reservation&#39;s locked price expires (set after reserving). | [optional] |
20
+
21
+ ## Example
22
+
23
+ ```ruby
24
+ require 'zernio-sdk'
25
+
26
+ instance = Zernio::RfPrediction.new(
27
+ prediction_id: null,
28
+ status: null,
29
+ budget: null,
30
+ reach: null,
31
+ impressions: null,
32
+ min_budget: null,
33
+ max_budget: null,
34
+ min_reach: null,
35
+ max_reach: null,
36
+ frequency_cap: null,
37
+ start_time: null,
38
+ stop_time: null,
39
+ expires_at: null
40
+ )
41
+ ```
42
+