{"activeVersionTag":"latest","latestAvailableVersionTag":"latest","collection":{"info":{"_postman_id":"d267a9c3-d9b6-48e8-9703-1b73d6769b53","name":"ManageMy Published APIs (V2)","description":"**Introduction**  \nThe ManageMy platform, and its APIs, is designed to facilitate easy integration with insurance administration platforms and other technology partners. The APIs exchange data using JSON data formats as well as supporting the transfer of digital files.  \nIn order to support the flexibility required to integrate with an extensive range of insurance administration systems, insurance product types and insurer-specific product configurations, the ManageMy platform consists of flexible database fields which are grouped in to JSON forms to effectively, quickly and securely receive and map insurer data to the ManageMy platform. Each field can be identified through its unique identifier referred to as a “Public ID”, or its field name (which is mapped to that Public ID).\n\n**Authorisation**  \nAll the ManageMy API end points use API key authorisation. A key-value pair is sent to the API in the request header. Access to individual end points can be restricted by using separate API keys, if required.\n\n**Database Fields**  \nThe ManageMy platform and its underlying data model, is very flexible and highly configurable, and as such can support the configuration of any insurance product and its underlying data. This involves using a mix of “default” fields and “custom” fields. Each field can be interacted with via its public ID or its field name, as both are unique. When a database field is created it has a particular data type to be able to accommodate a range of values These data types are: strings, integers, dates, dates and times.\n\n**Key-Value Pairs**\n\nThe ManageMy platform also supports data transmission through key-value pairs, where field names are used as keys. This method is often preferred by our Integration Partners, as it provides greater clarity in API calls by directly indicating what each value represents, eliminating the need to reference Public ID Data maps.\n\nAs a JSON this is expressed as:\n\n``` json\n{\n    \"entityFieldValuesModels\": [\n        {\n            \"commandName\": \"ExternalApiCreate\",\n            \"values\": {\n                \"InsurerCustomerReference\": \"CUST001\",\n                \"FirstName\": \"John\",\n                \"LastName\": \"Doe\",\n                \"DateOfBirth\": \"19850105\",\n                \"ZipCode\": \"30006\",\n                \"PhoneNumber\": \"+44777777777\",\n                \"PhoneNumberCountry\": \"us\",\n                \"Email\": \"noreply@managemy.com\"\n            }\n        }\n    ]\n}\n\n ```\n\n**Dyanmic JSON Forms**  \nAt each point data is interacted with, it is done so via a JSON form. Our Dynamic JSON Forms are a highly flexible and configurable collection of database fields and all the related validations and conditions. When data is passed via an API, the individual data items are mapped to fields contained within the JSON form.\n\n**Repeatable Groups of Data**  \nIt is possible to provide groups of data fields that can be repeated within the data model - for example, for multiple coverages on a policy, or multiple addresses for a customer. This enables the same field to be used in the data model for commonly re-used fields such as coverageName or addressLine1.\n\nTo support this, these re-used fields need to be encapsulated within what we refer to as a “repeatable group”. This means the data that is placed in this group can be entered multiple times. This encapsulation is done via the “groupFieldName” and “groupIndex” which must be provided alongside the individual field and its value.\n\nThe below diagram represents this visually using a customer having multiple addresses as the example. The repeated elements are “AddressType” and “AddressLine1”. These are grouped using the “CustomerAddresses” group field\n\n<img src=\"https://content.pstmn.io/a3cb8952-51b9-415f-93ee-687529f69d58/aW1hZ2UucG5n\" width=\"1165\" height=\"588\">\n\nAs a JSON this is expressed as:\n\n``` json\n[\n  {\n    \"name\": \"AddressType\",\n    \"value\": \"Home\",\n    \"groupFieldName\": \"CustomerAddresses\",\n    \"groupIndex\": 0\n  },\n  {\n    \"name\": \"AddressLine1\",\n    \"value\": \"123 Fake Street\",\n    \"groupFieldName\": \" CustomerAddresses\",\n    \"groupIndex\": 0\n  },\n  {\n    \"name\": \"AddressType\",\n    \"value\": \"Business\",\n    \"groupFieldName\": \" CustomerAddresses\",\n    \"groupIndex\": 1\n  },\n  {\n    \"name\": \"AddressLine1\",\n    \"value\": \"456 Park Avenue\",\n    \"groupFieldName\": \" CustomerAddresses\",\n    \"groupIndex\": 1\n  }\n]\n\n ```\n\nThe groupIndex always starts at 0 for the first set of fields in any group, and increments upwards from there. The groupIndex numbering must always be sequential, without gaps, in the JSON.\n\n**Updating Repeatable Groups**\n\nUpdating data in repeatable groups follows the same principles as creating repeatable group data, with the new values submitted instead.  \nBelow is a diagram with the updated “AddressLine1” for the entry within “groupIndex”: 0\n\n<img src=\"https://content.pstmn.io/1e9b64fa-87b2-42d0-bc2f-2e67c7548d19/aW1hZ2UucG5n\" width=\"1141\" height=\"579\">\n\nAnd as JSON:\n\n``` json\n[\n  {\n    \"name\": \"AddressType\",\n    \"value\": \"Home\",\n    \"groupFieldName\": \"CustomerAddresses\",\n    \"groupIndex\": 0\n  },\n  {\n    \"name\": \"AddressLine1\",\n    \"value\": \"123 Main Street\",\n    \"groupFieldName\": \" CustomerAddresses\",\n    \"groupIndex\": 0\n  },\n  {\n    \"name\": \"AddressType\",\n    \"value\": \"Business\",\n    \"groupFieldName\": \" CustomerAddresses\",\n    \"groupIndex\": 1\n  },\n  {\n    \"name\": \"AddressLine1\",\n    \"value\": \"456 Park Avenue\",\n    \"groupFieldName\": \" CustomerAddresses\",\n    \"groupIndex\": 1\n  }\n]\n\n ```\n\n**Removing Data from Repeatable Groups**\n\nIf you intend to delete only some of the repeatable groups you will need to include the data in the API call for the remaining groups and update the groupIndex values.  \nPlease note - each remaining group must have at least one non ‘null’ field value.  \nE.g.\n\n<img src=\"https://content.pstmn.io/1ff1fed2-e82e-4ef9-b96a-4c6d1d837e8d/aW1hZ2UucG5n\" width=\"1100\" height=\"561\">\n\nAnd as JSON:  \nJSON\n\n``` json\n[\n  {\n    \"name\": \"AddressType\",\n    \"value\": \"Home\",\n    \"groupFieldName\": \"CustomerAddresses\",\n    \"groupIndex\": 0\n  },\n  {\n    \"name\": \"AddressLine1\",\n    \"value\": \"123 Main Street\",\n    \"groupFieldName\": \" CustomerAddresses\",\n    \"groupIndex\": 0\n  }\n]\n\n ```\n\n**Removing all Data from a Repeatable Group**\n\nIt’s also possible to remove data across all repeatable groups by setting the first set of groupIndex values to ‘null’ (“groupIndex”: 0).  \nE.g.\n\n<img src=\"https://content.pstmn.io/a31bfc24-effb-4009-923a-bd33fc5349f2/aW1hZ2UucG5n\" width=\"1098\" height=\"566\">\n\nAnd as JSON:\n\n``` json\n[\n  {\n    \"name\": \"AddressType\",\n    \"value\": null,\n    \"groupFieldName\": \"CustomerAddresses\",\n    \"groupIndex\": 0\n  },\n  {\n    \"name\": \"AddressLine1\",\n    \"value\": null,\n    \"groupFieldName\": \" CustomerAddresses\",\n    \"groupIndex\": 0\n  }\n]\n\n ```\n\n**Nested Repeatable Groups**  \nIt is also possible to nest repeatable groups within other repeatable groups. For example:  \nCoverages Group (“`groupIndex`”) > Beneficiaries Groups (“`groupIndex2`”) > Beneficiary Address Group (“`groupIndex3`”)  \nThe platform supports up to 3 levels of nested groups, with the fields group beneath them, as per the example below.  \nEach level in the nested group will have its own `groupFieldName` and `groupIndex`.  \nE.g.\n\n<img src=\"https://content.pstmn.io/d647a534-14cd-428f-97e2-df3ba3c47521/aW1hZ2UucG5n\" width=\"565\" height=\"1024\">\n\nAnd as JSON:  \nJSON\n\n``` json\n[\n{\n\"name\": \"CoverageType\",\n\"value\": \"Term Life\",\n\"groupFieldName\": \"Coverages\",\n\"groupIndex\": 0\n},\n{\n\"name\": \"CoverageAmount\",\n\"value\": \"100,000\",\n\"groupFieldName\": \"Coverages\",\n\"groupIndex\": 0\n},\n{\n\"name\": \"BeneficiaryId\",\n\"value\": \"12345\",\n\"groupFieldName\": \"Coverages\",\n\"groupIndex\": 0,\n\"groupField2Name\": \"Beneficiaries\",\n\"groupIndex2\": 0\n},\n{\n\"name\": \"BeneficiaryFullName\",\n\"value\": \"John Smith\",\n\"groupFieldName\": \"Coverages\",\n\"groupIndex\": 0,\n\"groupField2Name\": \"Beneficiaries\",\n\"groupIndex2\": 0\n},\n{\n\"name\": \" AddressType\",\n\"value\": \"Residence\",\n\"groupFieldName\": \"Coverages\",\n\"groupIndex\": 0,\n\"groupField2Name\": \"Beneficiaries\",\n\"groupIndex2\": 0,\n\"groupField3Name\": \"BeneficiaryAddresses\",\n\"groupIndex3\": 0\n},\n{\n\"name\": \"AddressLine1\",\n\"value\": \"123 Main Street\",\n\"groupFieldName\": \"Coverages\",\n\"groupIndex\": 0,\n\"groupField2Name\": \"Beneficiaries\",\n\"groupIndex2\": 0,\n\"groupField3Name\": \"BeneficiaryAddresses\",\n\"groupIndex3\": 0\n}\n]\n\n ```\n\nFor a more complex example please see below:\n\n<img src=\"https://content.pstmn.io/768b753e-4c68-4231-baeb-e9dbf1a0f230/aW1hZ2UucG5n\" width=\"661\" height=\"378\">\n\nAnd as JSON:  \nJSON\n\n``` json\n[\n{\n\"name\": \"CoverageType\",\n\"value\": \"Term Life\",\n\"groupFieldName\": \"Coverages\",\n\"groupIndex\": 0\n},\n{\n\"name\": \"CoverageAmount\",\n\"value\": \"100,000\",\n\"groupFieldName\": \"Coverages\",\n\"groupIndex\": 0\n},\n{\n\"name\": \"BeneficiaryId\",\n\"value\": \"12345\",\n\"groupFieldName\": \"Coverages\",\n\"groupIndex\": 0,\n\"groupField2Name\": \"Beneficiaries\",\n\"groupIndex2\": 0\n},\n{\n\"name\": \"OwnerFirstName\",\n\"value\": \"John Smith\",\n\"groupFieldName\": \"Coverages\",\n\"groupIndex\": 0,\n\"groupField2Name\": \"Beneficiaries\",\n\"groupIndex2\": 0\n},\n{\n\"name\": \" AdditionalCoveragePrimaryBeneAltAddressType\",\n\"value\": \"Residence\",\n\"groupFieldName\": \"Coverages\",\n\"groupIndex\": 0,\n\"groupField2Name\": \"Beneficiaries\",\n\"groupIndex2\": 0,\n\"groupField3Name\": \"BeneficiaryAddresses\",\n\"groupIndex3\": 0\n},\n{\n\"name\": \"AdditionalCoveragePrimaryBeneAltAddressId\",\n\"value\": \"123 Main Street\",\n\"groupFieldName\": \"Coverages\",\n\"groupIndex\": 0,\n\"groupField2Name\": \"Beneficiaries\",\n\"groupIndex2\": 0,\n\"groupField3Name\": \"BeneficiaryAddresses\",\n\"groupIndex3\": 0\n},\n{\n\"name\": \"CoverageType\",\n\"value\": \"Critical Illness\",\n\"groupFieldName\": \"Coverages\",\n\"groupIndex\": 1\n},\n{\n\"name\": \"CoverageAmount\",\n\"value\": \"75,000\",\n\"groupFieldName\": \"Coverages\",\n\"groupIndex\": 1\n},\n{\n\"name\": \"BeneficiaryId\",\n\"value\": \"12345\",\n\"groupFieldName\": \"Coverages\",\n\"groupIndex\": 1,\n\"groupField2Name\": \"Beneficiaries\",\n\"groupIndex2\": 0\n},\n{\n\"name\": \"OwnerFirstName\",\n\"value\": \"John Smith\",\n\"groupFieldName\": \"Coverages\",\n\"groupIndex\": 1,\n\"groupField2Name\": \"Beneficiaries\",\n\"groupIndex2\": 0\n},\n{\n\"name\": \"AdditionalCoveragePrimaryBeneAltAddressType\",\n\"value\": \"Residence\",\n\"groupFieldName\": \"Coverages\",\n\"groupIndex\": 1,\n\"groupField2Name\": \"Beneficiaries\",\n\"groupIndex2\": 0,\n\"groupField3Name\": \"BeneficiaryAddresses\",\n\"groupIndex3\": 0\n},\n{\n\"name\": \"AdditionalCoveragePrimaryBeneAltAddressId\",\n\"value\": \"123 Main Street\",\n\"groupFieldName\": \"Coverages\",\n\"groupIndex\": 1,\n\"groupField2Name\": \"Beneficiaries\",\n\"groupIndex2\": 0,\n\"groupField3Name\": \"BeneficiaryAddresses\",\n\"groupIndex3\": 0\n},\n{\n\"name\": \"BeneficiaryId\",\n\"value\": \"67890\",\n\"groupFieldName\": \"Coverages\",\n\"groupIndex\": 1,\n\"groupField2Name\": \"Beneficiaries\",\n\"groupIndex2\": 1\n},\n{\n\"name\": \"OwnerFirstName\",\n\"value\": \"Jane Smith\",\n\"groupFieldName\": \"Coverages\",\n\"groupIndex\": 1,\n\"groupField2Name\": \"Beneficiaries\",\n\"groupIndex2\": 1\n},\n{\n\"name\": \"AdditionalCoveragePrimaryBeneAltAddressType\",\n\"value\": \"Residence\",\n\"groupFieldName\": \"Coverages\",\n\"groupIndex\": 1,\n\"groupField2Name\": \"Beneficiaries\",\n\"groupIndex2\": 1,\n\"groupField3Name\": \"BeneficiaryAddresses\",\n\"groupIndex3\": 0\n},\n{\n\"name\": \"AdditionalCoveragePrimaryBeneAltAddressId\",\n\"value\": \"21 Church Lane\",\n\"groupFieldName\": \"Coverages\",\n\"groupIndex\": 1,\n\"groupField2Name\": \"Beneficiaries\",\n\"groupIndex2\": 1,\n\"groupField3Name\": \"BeneficiaryAddresses\",\n\"groupIndex3\": 0\n},\n{\n\"name\": \"AdditionalCoveragePrimaryBeneAltAddressType\",\n\"value\": \"Holiday\",\n\"groupFieldName\": \"Coverages\",\n\"groupIndex\": 1,\n\"groupField2Name\": \"Beneficiaries\",\n\"groupIndex2\": 1,\n\"groupField3Name\": \"BeneficiaryAddresses\",\n\"groupIndex3\": 1\n},\n{\n\"name\": \"AdditionalCoveragePrimaryBeneAltAddressId\",\n\"value\": \"14 Lake View\",\n\"groupFieldName\": \"Coverages\",\n\"groupIndex\": 1,\n\"groupField2Name\": \"Beneficiaries\",\n\"groupIndex2\": 1,\n\"groupField3Name\": \"BeneficiaryAddresses\",\n\"groupIndex3\": 1\n}\n]\n\n ```\n\n---\n\nUpdating and deleting data in nested repeatable groups follows the same principles as detailed in examples 2, 3 & 4 for repeatable groups, If you would like to remove group of data in a nested repeatable group, you must update the `groupIndex` values for all of the remaining nested groups to ensure numbering of the _groupIndex_ values remain consecutive.\n\ni.e. If you currently have data in nested repeatable groups with `groupIndex:0` & `groupIndex:1,` (Beneficiary 1 and 2 for Coverage 2 in the above example), and you would like to remove the nested repeatable group ‘Beneficiary 1’ within ‘Coverage 2’, you will need to update the remaining `groupIndex` values for ‘Beneficiary 2’ to be `groupIndex:0` , and it will now become ‘Beneficiary 1’.\n\nE.g.\n\n<img src=\"https://content.pstmn.io/78f4d37d-e35d-4a9b-8dc0-ad1591d9f533/aW1hZ2UucG5n\" width=\"1257\" height=\"725\">\n\n_And as JSON:_\n\n``` json\n[\n  {\n    \"name\": \"CoverageType\",\n    \"value\": \"Term Life\",\n    \"groupFieldName\": \"Coverages\",\n    \"groupIndex\": 0\n  },\n  {\n    \"name\": \"CoverageAmount\",\n    \"value\": \"100,000\",\n    \"groupFieldName\": \"Coverages\",\n    \"groupIndex\": 0\n  },\n  {\n    \"name\": \"BeneficiaryId\",\n    \"value\": \"12345\",\n    \"groupFieldName\": \"Coverages\",\n    \"groupIndex\": 0,\n    \"groupField2Name\": \"Beneficiaries\",\n    \"groupIndex2\": 0\n  },\n  {\n    \"name\": \"OwnerFirstName\",\n    \"value\": \"John Smith\",\n    \"groupFieldName\": \"Coverages\",\n    \"groupIndex\": 0,\n    \"groupField2Name\": \"Beneficiaries\",\n    \"groupIndex2\": 0\n  },\n  {\n    \"name\": \" AdditionalCoveragePrimaryBeneAltAddressType\",\n    \"value\": \"Residence\",\n    \"groupFieldName\": \"Coverages\",\n    \"groupIndex\": 0,\n    \"groupField2Name\": \"Beneficiaries\",\n    \"groupIndex2\": 0,\n    \"groupField3Name\": \"BeneficiaryAddresses\",\n    \"groupIndex3\": 0\n  },\n  {\n    \"name\": \"AdditionalCoveragePrimaryBeneAltAddressId\",\n    \"value\": \"123 Main Street\",\n    \"groupFieldName\": \"Coverages\",\n    \"groupIndex\": 0,\n    \"groupField2Name\": \"Beneficiaries\",\n    \"groupIndex2\": 0,\n    \"groupField3Name\": \"BeneficiaryAddresses\",\n    \"groupIndex3\": 0\n  },\n  {\n    \"name\": \"CoverageType\",\n    \"value\": \"Critical Illness\",\n    \"groupFieldName\": \"Coverages\",\n    \"groupIndex\": 1\n  },\n  {\n    \"name\": \"CoverageAmount\",\n    \"value\": \"75,000\",\n    \"groupFieldName\": \"Coverages\",\n    \"groupIndex\": 1\n  },\n  {\n    \"name\": \"BeneficiaryId\",\n    \"value\": \"67890\",\n    \"groupFieldName\": \"Coverages\",\n    \"groupIndex\": 1,\n    \"groupField2Name\": \"Beneficiaries\",\n    \"groupIndex2\": 1\n  },\n  {\n    \"name\": \"OwnerFirstName\",\n    \"value\": \"Jane Smith\",\n    \"groupFieldName\": \"Coverages\",\n    \"groupIndex\": 1,\n    \"groupField2Name\": \"Beneficiaries\",\n    \"groupIndex2\": 1\n  },\n  {\n    \"name\": \" AdditionalCoveragePrimaryBeneAltAddressType\",\n    \"value\": \"Residence\",\n    \"groupFieldName\": \"Coverages\",\n    \"groupIndex\": 1,\n    \"groupField2Name\": \"Beneficiaries\",\n    \"groupIndex2\": 1,\n    \"groupField3Name\": \"BeneficiaryAddresses\",\n    \"groupIndex3\": 0\n  },\n  {\n    \"name\": \"AdditionalCoveragePrimaryBeneAltAddressId\",\n    \"value\": \"21 Church Lane\",\n    \"groupFieldName\": \"Coverages\",\n    \"groupIndex\": 1,\n    \"groupField2Name\": \"Beneficiaries\",\n    \"groupIndex2\": 1,\n    \"groupField3Name\": \"BeneficiaryAddresses\",\n    \"groupIndex3\": 0\n  },\n  {\n    \"name\": \" AdditionalCoveragePrimaryBeneAltAddressType\",\n    \"value\": \"Holiday\",\n    \"groupFieldName\": \"Coverages\",\n    \"groupIndex\": 1,\n    \"groupField2Name\": \"Beneficiaries\",\n    \"groupIndex2\": 1,\n    \"groupField3Name\": \"BeneficiaryAddresses\",\n    \"groupIndex3\": 1\n  },\n  {\n    \"name\": \"AdditionalCoveragePrimaryBeneAltAddressId\",\n    \"value\": \"14 Lake View\",\n    \"groupFieldName\": \"Coverages\",\n    \"groupIndex\": 1,\n    \"groupField2Name\": \"Beneficiaries\",\n    \"groupIndex2\": 1,\n    \"groupField3Name\": \"BeneficiaryAddresses\",\n    \"groupIndex3\": 1\n  }\n]\n\n ```","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","isPublicCollection":false,"owner":"11140668","team":1406864,"collectionId":"d267a9c3-d9b6-48e8-9703-1b73d6769b53","publishedId":"2sA3s3GAnB","public":true,"publicUrl":"https://api.managemy.com","privateUrl":"https://go.postman.co/documentation/11140668-d267a9c3-d9b6-48e8-9703-1b73d6769b53","customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"documentationLayout":"classic-double-column","customisation":{"metaTags":[{"name":"description","value":""},{"name":"title","value":""}],"appearance":{"default":"light","themes":[{"name":"dark","logo":null,"colors":{"top-bar":"212121","right-sidebar":"303030","highlight":"FF6C37"}},{"name":"light","logo":null,"colors":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"}}]}},"version":"8.10.1","publishDate":"2024-08-09T14:12:42.000Z","activeVersionTag":"latest","documentationTheme":"light","metaTags":{"title":"","description":""},"logos":{"logoLight":null,"logoDark":null}},"statusCode":200},"environments":[],"user":{"authenticated":false,"permissions":{"publish":false}},"run":{"button":{"js":"https://run.pstmn.io/button.js","css":"https://run.pstmn.io/button.css"}},"web":"https://www.getpostman.com/","team":{"logo":"https://res.cloudinary.com/postman/image/upload/t_team_logo_pubdoc/v1/team/1b55080d3ee59f4534b121e5f294fd723eba487bb78fc1182410c3431966064c","favicon":"https://res.cloudinary.com/postman/image/upload/v1625818215/team/gnpqnt3ojvxx4cbsc9jz.ico"},"isEnvFetchError":false,"languages":"[{\"key\":\"csharp\",\"label\":\"C#\",\"variant\":\"HttpClient\"},{\"key\":\"csharp\",\"label\":\"C#\",\"variant\":\"RestSharp\"},{\"key\":\"curl\",\"label\":\"cURL\",\"variant\":\"cURL\"},{\"key\":\"dart\",\"label\":\"Dart\",\"variant\":\"http\"},{\"key\":\"go\",\"label\":\"Go\",\"variant\":\"Native\"},{\"key\":\"http\",\"label\":\"HTTP\",\"variant\":\"HTTP\"},{\"key\":\"java\",\"label\":\"Java\",\"variant\":\"OkHttp\"},{\"key\":\"java\",\"label\":\"Java\",\"variant\":\"Unirest\"},{\"key\":\"javascript\",\"label\":\"JavaScript\",\"variant\":\"Fetch\"},{\"key\":\"javascript\",\"label\":\"JavaScript\",\"variant\":\"jQuery\"},{\"key\":\"javascript\",\"label\":\"JavaScript\",\"variant\":\"XHR\"},{\"key\":\"c\",\"label\":\"C\",\"variant\":\"libcurl\"},{\"key\":\"nodejs\",\"label\":\"NodeJs\",\"variant\":\"Axios\"},{\"key\":\"nodejs\",\"label\":\"NodeJs\",\"variant\":\"Native\"},{\"key\":\"nodejs\",\"label\":\"NodeJs\",\"variant\":\"Request\"},{\"key\":\"nodejs\",\"label\":\"NodeJs\",\"variant\":\"Unirest\"},{\"key\":\"objective-c\",\"label\":\"Objective-C\",\"variant\":\"NSURLSession\"},{\"key\":\"ocaml\",\"label\":\"OCaml\",\"variant\":\"Cohttp\"},{\"key\":\"php\",\"label\":\"PHP\",\"variant\":\"cURL\"},{\"key\":\"php\",\"label\":\"PHP\",\"variant\":\"Guzzle\"},{\"key\":\"php\",\"label\":\"PHP\",\"variant\":\"HTTP_Request2\"},{\"key\":\"php\",\"label\":\"PHP\",\"variant\":\"pecl_http\"},{\"key\":\"powershell\",\"label\":\"PowerShell\",\"variant\":\"RestMethod\"},{\"key\":\"python\",\"label\":\"Python\",\"variant\":\"http.client\"},{\"key\":\"python\",\"label\":\"Python\",\"variant\":\"Requests\"},{\"key\":\"r\",\"label\":\"R\",\"variant\":\"httr\"},{\"key\":\"r\",\"label\":\"R\",\"variant\":\"RCurl\"},{\"key\":\"ruby\",\"label\":\"Ruby\",\"variant\":\"Net::HTTP\"},{\"key\":\"shell\",\"label\":\"Shell\",\"variant\":\"Httpie\"},{\"key\":\"shell\",\"label\":\"Shell\",\"variant\":\"wget\"},{\"key\":\"swift\",\"label\":\"Swift\",\"variant\":\"URLSession\"}]","languageSettings":[{"key":"csharp","label":"C#","variant":"HttpClient"},{"key":"csharp","label":"C#","variant":"RestSharp"},{"key":"curl","label":"cURL","variant":"cURL"},{"key":"dart","label":"Dart","variant":"http"},{"key":"go","label":"Go","variant":"Native"},{"key":"http","label":"HTTP","variant":"HTTP"},{"key":"java","label":"Java","variant":"OkHttp"},{"key":"java","label":"Java","variant":"Unirest"},{"key":"javascript","label":"JavaScript","variant":"Fetch"},{"key":"javascript","label":"JavaScript","variant":"jQuery"},{"key":"javascript","label":"JavaScript","variant":"XHR"},{"key":"c","label":"C","variant":"libcurl"},{"key":"nodejs","label":"NodeJs","variant":"Axios"},{"key":"nodejs","label":"NodeJs","variant":"Native"},{"key":"nodejs","label":"NodeJs","variant":"Request"},{"key":"nodejs","label":"NodeJs","variant":"Unirest"},{"key":"objective-c","label":"Objective-C","variant":"NSURLSession"},{"key":"ocaml","label":"OCaml","variant":"Cohttp"},{"key":"php","label":"PHP","variant":"cURL"},{"key":"php","label":"PHP","variant":"Guzzle"},{"key":"php","label":"PHP","variant":"HTTP_Request2"},{"key":"php","label":"PHP","variant":"pecl_http"},{"key":"powershell","label":"PowerShell","variant":"RestMethod"},{"key":"python","label":"Python","variant":"http.client"},{"key":"python","label":"Python","variant":"Requests"},{"key":"r","label":"R","variant":"httr"},{"key":"r","label":"R","variant":"RCurl"},{"key":"ruby","label":"Ruby","variant":"Net::HTTP"},{"key":"shell","label":"Shell","variant":"Httpie"},{"key":"shell","label":"Shell","variant":"wget"},{"key":"swift","label":"Swift","variant":"URLSession"}],"languageOptions":[{"label":"C# - HttpClient","value":"csharp - HttpClient - C#"},{"label":"C# - RestSharp","value":"csharp - RestSharp - C#"},{"label":"cURL - cURL","value":"curl - cURL - cURL"},{"label":"Dart - http","value":"dart - http - Dart"},{"label":"Go - Native","value":"go - Native - Go"},{"label":"HTTP - HTTP","value":"http - HTTP - HTTP"},{"label":"Java - OkHttp","value":"java - OkHttp - Java"},{"label":"Java - Unirest","value":"java - Unirest - Java"},{"label":"JavaScript - Fetch","value":"javascript - Fetch - JavaScript"},{"label":"JavaScript - jQuery","value":"javascript - jQuery - JavaScript"},{"label":"JavaScript - XHR","value":"javascript - XHR - JavaScript"},{"label":"C - libcurl","value":"c - libcurl - C"},{"label":"NodeJs - Axios","value":"nodejs - Axios - NodeJs"},{"label":"NodeJs - Native","value":"nodejs - Native - NodeJs"},{"label":"NodeJs - Request","value":"nodejs - Request - NodeJs"},{"label":"NodeJs - Unirest","value":"nodejs - Unirest - NodeJs"},{"label":"Objective-C - NSURLSession","value":"objective-c - NSURLSession - Objective-C"},{"label":"OCaml - Cohttp","value":"ocaml - Cohttp - OCaml"},{"label":"PHP - cURL","value":"php - cURL - PHP"},{"label":"PHP - Guzzle","value":"php - Guzzle - PHP"},{"label":"PHP - HTTP_Request2","value":"php - HTTP_Request2 - PHP"},{"label":"PHP - pecl_http","value":"php - pecl_http - PHP"},{"label":"PowerShell - RestMethod","value":"powershell - RestMethod - PowerShell"},{"label":"Python - http.client","value":"python - http.client - Python"},{"label":"Python - Requests","value":"python - Requests - Python"},{"label":"R - httr","value":"r - httr - R"},{"label":"R - RCurl","value":"r - RCurl - R"},{"label":"Ruby - Net::HTTP","value":"ruby - Net::HTTP - Ruby"},{"label":"Shell - Httpie","value":"shell - Httpie - Shell"},{"label":"Shell - wget","value":"shell - wget - Shell"},{"label":"Swift - URLSession","value":"swift - URLSession - Swift"}],"layoutOptions":[{"value":"classic-single-column","label":"Single Column"},{"value":"classic-double-column","label":"Double Column"}],"versionOptions":[],"environmentOptions":[{"value":"0","label":"No Environment"}],"canonicalUrl":"https://api.managemy.com/view/metadata/2sA3s3GAnB"}