Signature Policies

Get Signature Policies

GET /internetAccess/v1/signaturePolicies
Method GET
Endpoint /internetAccess/v1/signaturePolicies
Headers Authorization
Path Parameters Not applicable
Query Parameters offset, limit, location.countryCode
Body Parameters Not applicable

This API request returns country-specific signature policies.


Sample curl request

Copy
curl -X GET 'https://api.equinix.com/internetAccess/v1/signaturePolicies?location.countryCode=US'
-H 'authorization: Bearer qwErtY8zyW1abcdefGHI'

Query parameters

Parameter
Description
offset integer
OPTIONAL
Index of the first item returned in the response.
Default value: 0
limit integer
OPTIONAL
Maximum number of items returned per page.
Default value: 50
location.countryCode string
OPTIONAL
Country code.
Example: US

Sample response

Copy
{
    "pagination": {
        "offset": 0,
        "limit": 20,
        "total": 1
    },
    "data": [
        {
            "signature": {
                "types": [
                    "DIGITAL",
                    "WET"
                ]
            },
            "clickThroughAllowed": true,
            "location": {
                "countryCode": "US"
            }
        }
    ]
}

Response payload body description

Parameter
Description
pagination object
Data set pagination information.
offset integer
Index of the first item returned in the response.
limit integer
Maximum number of items returned per page.
total integer
Total number of items.
data array[object]
Data set containing applicable signature policies.
signature object
Signature information.
types array[string]
Signature type. Whether it is a physical or digital signature
Possible values:
  • WET - Traditional signature on a physical paper.
  • DIGITAL - Digital signature.
clickThroughAllowed boolean
Indicates if an order can be processed without a signature.
Example: true
location object
Location information where this signature policy is valid.
countryCode string
ISO country code.
Example: US