List Organizations
The organizations method is used to fetch your list of Organizations In Broadsign Ads, an Organization is a client account that contains one or several users.. It uses the value of the token A token is a piece of data that has no meaning or use on its own, but combined with the correct tokenization system, becomes a vital player in securing your application. Token based authentication works by ensuring that each request to a server is accompanied by a signed token which the server verifies for authenticity and only then responds to the request. set as the authorization bearer.
This will return a list of Organizations to which you belong.
https://api.buy.broadsign.com/v1/organizations
GET
Authorization: [my token]
Response Body Parameters
Parameter | Description | Type |
id | Unique identification number for the organization. | integer |
name | Name of the organization. | string |
Response Body Example
[
{
id: 123,
name: "organization1"
},
{
id: 234,
name: "organization2"
},
]
"/organizations" : {
"get" : {
"produces" : [ "application/json" ],
"parameters" : [ {
"name" : "Authorization",
"in" : "header",
"required" : true,
"type" : "string"
} ],
"responses" : {
"200" : {
"description" : "200 response",
"schema" : {
"$ref" : "#/definitions/Organizations"
}
},
"400" : {
"description" : "400 response"
}
},
"security" : [ {
"CognitoAuthorizer" : [ ]
} ]
}
}
[
{
id: 123,
name: "organization1"
},
{
id: 234,
name: "organization2"
},
]