Reference
3 min read
post/v1/edge-config

Creates an Edge Config.

Optional params

fetch-request

1
await fetch("https://api.vercel.com/v1/edge-config?slug=SOME_STRING_VALUE&teamId=SOME_STRING_VALUE", {
2
"body": {
3
"slug": "SOME_STRING_VALUE",
4
"items": "SOME_OBJECT_VALUE"
5
},
6
"headers": {
7
"Authorization": "Bearer <TOKEN>"
8
},
9
"method": "post"
10
})
Query Params
Body Params
Query ParameterDescription

slug

string

The Team slug to perform the request on behalf of.

teamId

string

The Team identifier to perform the request on behalf of.

An Edge Config

  • createdAtnumber
  • digeststring
  • idstring
  • itemCountnumberRequired
  • ownerIdstring
  • schemaobject
  • sizeInBytesnumberRequired
  • slugstring
    Name for the Edge Config Names are not unique. Must start with an alphabetic character and can contain only alphanumeric characters and underscores).
  • transferobject
    Keeps track of the current state of the Edge Config while it gets transferred.
  • Properties
  • updatedAtnumber
CodeDescription
201
400One of the provided values in the request body is invalid.
401
402
  • The account was soft-blocked for an unhandled reason.

  • The account is missing a payment so payment method must be updated

403You do not have permission to access this resource.
post/v1/edge-config/{edgeConfigId}/token

Adds a token to an existing Edge Config.

Optional params

fetch-request

1
await fetch("https://api.vercel.com/v1/edge-config/SOME_STRING_VALUE/token?slug=SOME_STRING_VALUE&teamId=SOME_STRING_VALUE", {
2
"body": {
3
"label": "SOME_STRING_VALUE"
4
},
5
"headers": {
6
"Authorization": "Bearer <TOKEN>"
7
},
8
"method": "post"
9
})
Path Params
Query Params
Body Params
Path ParameterDescription

edgeConfigId

string

required
  • idstringRequired
  • tokenstringRequired
CodeDescription
201
400
  • One of the provided values in the request body is invalid.

  • One of the provided values in the request query is invalid.

401
402
  • The account was soft-blocked for an unhandled reason.

  • The account is missing a payment so payment method must be updated

403You do not have permission to access this resource.
404
delete/v1/edge-config/{edgeConfigId}

Delete an Edge Config by id.

Optional params

fetch-request

1
await fetch("https://api.vercel.com/v1/edge-config/SOME_STRING_VALUE?slug=SOME_STRING_VALUE&teamId=SOME_STRING_VALUE", {
2
"headers": {
3
"Authorization": "Bearer <TOKEN>"
4
},
5
"method": "delete"
6
})
Path Params
Query Params
Path ParameterDescription

edgeConfigId

string

required
N/A
CodeDescription
204
400One of the provided values in the request query is invalid.
401
403You do not have permission to access this resource.
404
delete/v1/edge-config/{edgeConfigId}/schema

Deletes the schema of existing Edge Config.

Optional params

fetch-request

1
await fetch("https://api.vercel.com/v1/edge-config/SOME_STRING_VALUE/schema?slug=SOME_STRING_VALUE&teamId=SOME_STRING_VALUE", {
2
"headers": {
3
"Authorization": "Bearer <TOKEN>"
4
},
5
"method": "delete"
6
})
Path Params
Query Params
Path ParameterDescription

edgeConfigId

string

required
N/A
CodeDescription
204
400One of the provided values in the request query is invalid.
401
402
  • The account was soft-blocked for an unhandled reason.

  • The account is missing a payment so payment method must be updated

403You do not have permission to access this resource.
404
delete/v1/edge-config/{edgeConfigId}/tokens

Deletes one or more tokens of an existing Edge Config.

Optional params

fetch-request

1
await fetch("https://api.vercel.com/v1/edge-config/SOME_STRING_VALUE/tokens?slug=SOME_STRING_VALUE&teamId=SOME_STRING_VALUE", {
2
"body": {
3
"tokens": "SOME_ARRAY OF STRING_VALUE"
4
},
5
"headers": {
6
"Authorization": "Bearer <TOKEN>"
7
},
8
"method": "delete"
9
})
Path Params
Query Params
Body Params
Path ParameterDescription

edgeConfigId

string

required
N/A
CodeDescription
204
400
  • One of the provided values in the request body is invalid.

  • One of the provided values in the request query is invalid.

401
402
  • The account was soft-blocked for an unhandled reason.

  • The account is missing a payment so payment method must be updated

403You do not have permission to access this resource.
404
get/v1/edge-config/{edgeConfigId}

Returns an Edge Config.

Optional params

fetch-request

1
await fetch("https://api.vercel.com/v1/edge-config/SOME_STRING_VALUE?slug=SOME_STRING_VALUE&teamId=SOME_STRING_VALUE", {
2
"headers": {
3
"Authorization": "Bearer <TOKEN>"
4
},
5
"method": "get"
6
})
Path Params
Query Params
Path ParameterDescription

edgeConfigId

string

required

The EdgeConfig.

  • createdAtnumber
  • digeststring
  • idstring
  • itemCountnumberRequired
  • ownerIdstring
  • schemaobject
  • sizeInBytesnumberRequired
  • slugstring
    Name for the Edge Config Names are not unique. Must start with an alphabetic character and can contain only alphanumeric characters and underscores).
  • transferobject
    Keeps track of the current state of the Edge Config while it gets transferred.
  • Properties
  • updatedAtnumber
CodeDescription
200The EdgeConfig.
400One of the provided values in the request query is invalid.
401
403You do not have permission to access this resource.
404
get/v1/edge-config/{edgeConfigId}/item/{edgeConfigItemKey}

Returns a specific Edge Config Item.

Optional params

fetch-request

1
await fetch("https://api.vercel.com/v1/edge-config/SOME_STRING_VALUE/item/SOME_STRING_VALUE?slug=SOME_STRING_VALUE&teamId=SOME_STRING_VALUE", {
2
"headers": {
3
"Authorization": "Bearer <TOKEN>"
4
},
5
"method": "get"
6
})
Path Params
Query Params
Path ParameterDescription

edgeConfigId

string

required

edgeConfigItemKey

string

required
CodeDescription
200The EdgeConfig.
400One of the provided values in the request query is invalid.
401
403You do not have permission to access this resource.
404
get/v1/edge-config/{edgeConfigId}/items

Returns all items of an Edge Config.

Optional params

fetch-request

1
await fetch("https://api.vercel.com/v1/edge-config/SOME_STRING_VALUE/items?slug=SOME_STRING_VALUE&teamId=SOME_STRING_VALUE", {
2
"headers": {
3
"Authorization": "Bearer <TOKEN>"
4
},
5
"method": "get"
6
})
Path Params
Query Params
Path ParameterDescription

edgeConfigId

string

required
CodeDescription
200The EdgeConfig.
400One of the provided values in the request query is invalid.
401
403You do not have permission to access this resource.
404
get/v1/edge-config/{edgeConfigId}/schema

Returns the schema of an Edge Config.

Optional params

fetch-request

1
await fetch("https://api.vercel.com/v1/edge-config/SOME_STRING_VALUE/schema?slug=SOME_STRING_VALUE&teamId=SOME_STRING_VALUE", {
2
"headers": {
3
"Authorization": "Bearer <TOKEN>"
4
},
5
"method": "get"
6
})
Path Params
Query Params
Path ParameterDescription

edgeConfigId

string

required

The EdgeConfig.

  • object or null
    The EdgeConfig.
CodeDescription
200The EdgeConfig.
400One of the provided values in the request query is invalid.
401
403You do not have permission to access this resource.
404
get/v1/edge-config/{edgeConfigId}/token/{token}

Return meta data about an Edge Config token.

Optional params

fetch-request

1
await fetch("https://api.vercel.com/v1/edge-config/SOME_STRING_VALUE/token/SOME_STRING_VALUE?slug=SOME_STRING_VALUE&teamId=SOME_STRING_VALUE", {
2
"headers": {
3
"Authorization": "Bearer <TOKEN>"
4
},
5
"method": "get"
6
})
Path Params
Query Params
Path ParameterDescription

edgeConfigId

string

required

token

string

required
CodeDescription
200The EdgeConfig.
400One of the provided values in the request query is invalid.
401
403You do not have permission to access this resource.
404
get/v1/edge-config/{edgeConfigId}/tokens

Returns all tokens of an Edge Config.

Optional params

fetch-request

1
await fetch("https://api.vercel.com/v1/edge-config/SOME_STRING_VALUE/tokens?slug=SOME_STRING_VALUE&teamId=SOME_STRING_VALUE", {
2
"headers": {
3
"Authorization": "Bearer <TOKEN>"
4
},
5
"method": "get"
6
})
Path Params
Query Params
Path ParameterDescription

edgeConfigId

string

required
CodeDescription
200The EdgeConfig.
400One of the provided values in the request query is invalid.
401
403You do not have permission to access this resource.
404
get/v1/edge-config

Returns all Edge Configs.

Optional params

fetch-request

1
await fetch("https://api.vercel.com/v1/edge-config?slug=SOME_STRING_VALUE&teamId=SOME_STRING_VALUE", {
2
"headers": {
3
"Authorization": "Bearer <TOKEN>"
4
},
5
"method": "get"
6
})
Query Params
Query ParameterDescription

slug

string

The Team slug to perform the request on behalf of.

teamId

string

The Team identifier to perform the request on behalf of.

List of all edge configs.

  • createdAtnumber
  • digeststring
  • idstring
  • itemCountnumberRequired
  • ownerIdstring
  • schemaobject
  • sizeInBytesnumberRequired
  • slugstring
    Name for the Edge Config Names are not unique. Must start with an alphabetic character and can contain only alphanumeric characters and underscores).
  • transferobject
    Keeps track of the current state of the Edge Config while it gets transferred.
  • Properties
  • updatedAtnumber
CodeDescription
200List of all edge configs.
400One of the provided values in the request query is invalid.
401
403You do not have permission to access this resource.
patch/v1/edge-config/{edgeConfigId}/items

Update multiple Edge Config Items in batch.

Optional params

fetch-request

1
await fetch("https://api.vercel.com/v1/edge-config/SOME_STRING_VALUE/items?edgeConfigId=SOME_STRING_VALUE&dryRun=SOME_STRING_VALUE&slug=SOME_STRING_VALUE&teamId=SOME_STRING_VALUE", {
2
"body": {
3
"definition": "ANY_TYPE_VALUE",
4
"items": [
5
{
6
"operation": "create",
7
"key": "SOME_STRING_VALUE",
8
"value": "SOME_STRING|NUMBER|BOOLEAN|NULL|OBJECT_VALUE",
9
"description": ""
10
}
11
]
12
},
13
"headers": {
14
"Authorization": "Bearer <TOKEN>"
15
},
16
"method": "patch"
17
})
Path Params
Query Params
Body Params
Path ParameterDescription

edgeConfigId

string

required
  • statusstringRequired
CodeDescription
200
400
  • One of the provided values in the request body is invalid.

  • One of the provided values in the request query is invalid.

401
402
  • The account was soft-blocked for an unhandled reason.

  • The account is missing a payment so payment method must be updated

403You do not have permission to access this resource.
404
409
post/v1/edge-config/{edgeConfigId}/schema

Update an Edge Config's schema.

Optional params

fetch-request

1
await fetch("https://api.vercel.com/v1/edge-config/SOME_STRING_VALUE/schema?dryRun=SOME_STRING_VALUE&slug=SOME_STRING_VALUE&teamId=SOME_STRING_VALUE", {
2
"body": {
3
"definition": "ANY_TYPE_VALUE"
4
},
5
"headers": {
6
"Authorization": "Bearer <TOKEN>"
7
},
8
"method": "post"
9
})
Path Params
Query Params
Body Params
Path ParameterDescription

edgeConfigId

string

required

The JSON schema uploaded by the user

  • object or null
    The JSON schema uploaded by the user
CodeDescription
200
400
  • One of the provided values in the request body is invalid.

  • One of the provided values in the request query is invalid.

401
402
  • The account was soft-blocked for an unhandled reason.

  • The account is missing a payment so payment method must be updated

403You do not have permission to access this resource.
404
put/v1/edge-config/{edgeConfigId}

Updates an Edge Config.

Optional params

fetch-request

1
await fetch("https://api.vercel.com/v1/edge-config/SOME_STRING_VALUE?slug=SOME_STRING_VALUE&teamId=SOME_STRING_VALUE", {
2
"body": {
3
"slug": "SOME_STRING_VALUE"
4
},
5
"headers": {
6
"Authorization": "Bearer <TOKEN>"
7
},
8
"method": "put"
9
})
Path Params
Query Params
Body Params
Path ParameterDescription

edgeConfigId

string

required

An Edge Config

  • createdAtnumber
  • digeststring
  • idstring
  • itemCountnumberRequired
  • ownerIdstring
  • schemaobject
  • sizeInBytesnumberRequired
  • slugstring
    Name for the Edge Config Names are not unique. Must start with an alphabetic character and can contain only alphanumeric characters and underscores).
  • transferobject
    Keeps track of the current state of the Edge Config while it gets transferred.
  • Properties
  • updatedAtnumber
CodeDescription
200
400
  • One of the provided values in the request body is invalid.

  • One of the provided values in the request query is invalid.

401
402
  • The account was soft-blocked for an unhandled reason.

  • The account is missing a payment so payment method must be updated

403You do not have permission to access this resource.
404
Last updated on April 27, 2024