API Platform Base Path: https://api.enterprise.apigee.com/v1/o/{org_name}
API Resource Path: /maps
Creates a Map
Verb: POST
Auth: Basic AuthCreates a map, a simple structure for persistently storing name/value pairs (entry) for use at runtime, such as for profile-based access control, for supporting certain non-standard protocols, application specific behavior, and so on.
Sample Request:$ curl -H "Content-Type:application/json" -X POST -d \
'{
"entry" : [ {
"name" : "dev",
"value" : "user1"
} ],
"name" : "prodmap"
}' \
-u myname:mypass https://api.enterprise.apigee.com/v1/o/{org_name}/maps
Request Payload Elements:
| Name | Description | Default | Required? |
|---|---|---|---|
| entry | The name/value pair for the entry, that defines the data to be stored | N/A | Yes |
| name | The name of the map to be created | N/A | Yes |
{
"entry" : [ {
"name" : "dev",
"value" : "user1"
} ],
"name" : "prodmap"
}
Response Payload Elements:
| Name | Description |
|---|---|
| entry | The name/value pair for the entry, that defines the data to be stored |
| name | The name of the map to be created |