Skip to main content
POST
/
grid-fee-reductions
Create a grid fee reduction
curl --request POST \
  --url https://api.nomos.energy/grid-fee-reductions \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "subscription": "sub_ksg8w60gjtb9axwxe6x6qcan",
  "type": "enwg-14a-module-1"
}
'
{
  "object": "grid_fee_reduction",
  "id": "prdo_psd21q63zz3lgt9bhj8xt7ga",
  "subscription": "sub_dv8nel7xjhcqs9yblk05alu8",
  "type": "enwg-14a-module-1",
  "status": "intended",
  "valid_from": "2024-03-14T12:00:00Z",
  "valid_until": "2024-03-14T12:00:00Z",
  "created_at": "2024-03-14T12:00:00Z",
  "updated_at": "2024-03-14T12:00:00Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

The grid fee reduction to create

subscription
string
required

ID of the subscription

Example:

"sub_ksg8w60gjtb9axwxe6x6qcan"

type
enum<string>
required

Grid fee reduction module type according to §14a EnWG

Available options:
enwg-14a-module-1,
enwg-14a-module-2,
enwg-14a-module-3
Example:

"enwg-14a-module-1"

Response

The newly created grid fee reduction.

object
enum<string>
required

Type of the object, always 'grid_fee_reduction'

Available options:
grid_fee_reduction
id
string
required

Unique identifier for the grid fee reduction

Example:

"prdo_psd21q63zz3lgt9bhj8xt7ga"

subscription
string
required

ID of the subscription

Example:

"sub_dv8nel7xjhcqs9yblk05alu8"

type
enum<string>
required

Grid fee reduction module type according to §14a EnWG

Available options:
enwg-14a-module-1,
enwg-14a-module-2,
enwg-14a-module-3
Example:

"enwg-14a-module-1"

status
enum<string>
required

Current status of the grid fee reduction order

Available options:
intended,
ordered,
rejected,
activated,
ended
Example:

"intended"

valid_from
string<date-time> | null
required

Start date of the grid fee reduction validity period

Example:

"2024-03-14T12:00:00Z"

valid_until
string<date-time> | null
required

End date of the grid fee reduction validity period

Example:

"2024-03-14T12:00:00Z"

created_at
string<date-time>
required

Timestamp when the grid fee reduction was created

Example:

"2024-03-14T12:00:00Z"

updated_at
string<date-time>
required

Timestamp when the grid fee reduction was last updated

Example:

"2024-03-14T12:00:00Z"