Carriers
Returns a list of Telecom carriers that contain the search query. If no search query is specified, returns all carriers. A maximum of 20 records is returned. There is no pagination support.
GET /api/v1/meta/carriers
To List the Telecom carrier data , carrier is one of the targeting parameter in Kayzen platform
Field | Param | Description |
---|---|---|
q | string(optional) | Field can be used as search query |
curl -X GET \
'[HOST]/api/v1/meta/carriers?page=1&per_page=25&q=test' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer ' \
{"data":[{"id":707,"country_id":50,"name":"test 1"},{"id":709,"country_id":50,"name":"test 2"},{"id":712,"country_id":50,"name":"test 3"},{"id":713,"country_id":50,"name":"test 4"},{"id":1931,"country_id":246,"name":"test 5"},{"id":2144,"country_id":189,"name":"test 6"},{"id":2147,"country_id":246,"name":"test 7"}],"meta":{"current_page":1,"total_pages":1,"total_entries":7}}
Updated about 2 years ago