Zone
Required permissions: Organization.Organization.Read
Authorizations
Query parameters
organizationIdinteger · int32Optional
The identifier of the organization. Required unless user has global privileges.
Responses
200
List of market zones
application/json
400
Input data was invalid
application/json
401
Not authorized
application/json
403
Not allowed
application/json
500
Internal server error
get
/api/grid/zoneGET /api/grid/zone HTTP/1.1
Host: api.switchmarket.se
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"id": 1,
"createdBy": 1,
"createdAt": "2025-11-03T15:52:33.731Z",
"name": "text",
"timeResolution": 0,
"orderQuantityResolution": 1,
"minOrderQuantity": 1,
"organizationIds": [
1
]
}
]Required permissions: Organization.Organization.Read Required features: Grid
Authorizations
Query parameters
organizationIdinteger · int32Required
The identifier of the organization
Responses
200
Meta information of all market zones that the given organization is a participant of
application/json
400
Input data was invalid
application/json
401
Not authorized
application/json
403
Not allowed
application/json
500
Internal server error
get
/api/grid/zone/participationGET /api/grid/zone/participation?organizationId=1 HTTP/1.1
Host: api.switchmarket.se
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
[
{
"marketZoneId": 1,
"marketZoneName": "text",
"organizations": [
{
"organizationId": 1,
"organizationName": "text",
"resources": [
{
"resourceId": 1,
"resourceName": "text"
}
]
}
],
"markets": [
{
"marketId": 1,
"marketName": "text"
}
],
"managerOrganizationIds": [
1
]
}
]Last updated
Was this helpful?