GET
/
iam
/
reselling
/
resellers
/
{resellerID}
/
notification_settings
Get List of reseller's notification settings
curl --request GET \
  --url https://api.gcore.com/iam/reselling/resellers/{resellerID}/notification_settings \
  --header 'Authorization: <api-key>'
{
  "count": 123,
  "next": "reselling/resellers/{resellerId}/notification_settings?offset=20&limit=10",
  "previous": "reselling/resellers/{resellerId}/notification_settings?offset=10&limit=10",
  "result": [
    {
      "id": 123,
      "reseller": 123,
      "notification_type": "deletion_request",
      "email": "jsmith@example.com",
      "enabled": true
    }
  ]
}

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Path Parameters

resellerId
integer
required

Reseller ID.

Query Parameters

limit
integer

The maximum number of items.

offset
integer

Offset relative to the beginning of list.

ordering
string

Which field to use when ordering the results.

Response

200
application/json

The response is of type object.