Self Endpoints (2022/06)
These endpoints allow users to manage their settings in the current network.
Base URL for these endpoints: https://api.bsn.cloud/2022/06/REST
_________________________________________________________________________
GET /Self/
Returns your Person Entity (2022/06) information
Required Scope Token
bsn.api.self.info.retrieve
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
GET /2022/06/REST/Self/ HTTP/1.1
Host: api.bsn.cloud
Connection: Keep-Alive
Authorization: Bearer {{PersonAccessToken}}
Accept: application/json, application/vnd.bsn.error+json
Accept-Encoding: gzip,deflate
______________________________________________________________
Response
Success Response with Body
200: Returns the Person Entity
Example
This is an example of a 200 level response:
{
"id": 12345,
"login": "JaneDoe@brightsign.biz",
"password": null,
"firstName": "Jane",
"lastName": "Doe",
"creationDate": "2020-07-09T19:05:20.247Z",
"lastModifiedDate": "2020-07-09T19:05:20.247Z",
"activationDate": "2020-07-09T19:05:38.723Z"
}
Success Response
304: The resource was not modified since the time specified in the “If-Modified-Since” header
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request is malformed and therefore invalid
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
5XX: Any 500 code is an internal server error
Endpoints:
- 1 GET /Self/
- 2 POST /Self/
- 3 PUT /Self/
- 4 GET /{login}/Password/
- 5 GET /Self/Profile/
- 6 POST /Self/Profile/
- 7 GET /Self/Profile/{key}/
- 8 PUT /Self/Profile/{key}/
- 9 DELETE /Self/Profile/{key}/
- 10 GET /Self/Tokens/{token}/
- 11 DELETE /Self/Tokens/{token}/
- 12 GET /Self/Networks/
- 13 POST /Self/Networks/
- 14 GET /Self/Networks/{id:int}/
- 15 PATCH /Self/Networks/{networkId:int}/
- 16 GET /Self/Networks/{name}/
- 17 PATCH /Self/Networks/{networkName}/
- 18 GET /Self/Networks/{id:int}/Settings/
- 19 PUT /Self/Networks/{id:int}/Settings/
- 20 GET /Self/Networks/{name}/Settings/
- 21 PUT /Self/Networks/{name}/Settings/
- 22 GET /Self/Networks/{id:int}/Subscription/
- 23 PUT /Self/Networks/{id:int}/Subscription/
- 24 GET /Self/Networks/{name}/Subscription/
- 25 PUT /Self/Networks/{name}/Subscription/
- 26 GET /Self/Networks/{id:int}/Subscriptions/
- 27 GET /Self/Networks/{name}/Subscriptions/
- 28 GET /Self/Users/
- 29 GET /Self/Users/{id:int}/
- 30 GET /Self/Users/{id:int}/Role/
- 31 GET /Self/Users/{id:int}/Profile/
- 32 POST /Self/Users/{id:int}/Profile/
- 33 GET /Self/Users/{id:int}/Profile/{key}/
- 34 PUT /Self/Users/{id:int}/Profile/{key}/
- 35 DELETE /Self/Users/{id:int}/Profile/{key}/
- 36 GET /Self/Users/{id:int}/Permissions/
- 37 GET /Self/Users/{id:int}/Role/Permissions/
- 38 GET /Self/Users/{id:int}/Notifications/
- 39 PUT /Self/Users/{id:int}/Notifications/
POST /Self/
Registers the person and returns your person credentials (except the password if it was provided in your request).
Required Scope Token
None
______________________________________________________________
Query String Parameter
returnURL
string optional
If this parameter is not specified, the default value is https://bsn.cloud/ .
______________________________________________________________
Request Body
The Person Entity. If you specify a password that matches our security policy, the server will apply the password you specify and will not return a password. If you do not specify a password, the server will generate a password and return it to you.
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
returnURL
is set tohttps://bsn.cloud/
POST /2022/06/REST/Self/?returnURL=https%3A%2F%2Fbsn.cloud%2F HTTP/1.1
Host: api.bsn.cloud
Connection: Keep-Alive
Accept: application/json, application/vnd.bsn.error+json
Accept-Encoding: gzip,deflate
Content-Type: application/json
Content-Length: 309
This is the example request body:
______________________________________________________________
Response
Success Response Body
200: Returns the Person Entity
Example
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request or request body is malformed and therefore invalid, or it is rejected in accordance with the business rules
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
415: The server cannot accept the data representation that you sent (as specified in the "Content-Type" header)
5XX: Any 500 code is an internal server error
PUT /Self/
Updates the requestor’s information (your profile).
Any customer can edit their own password, first name, and last name regardless of network membership, but cannot edit someone else's name or password.
The login property, whose values are email addresses, is a key and not editable. To give another customer access to that property or handle an email address change, a user with sufficient privileges need to create a new person, add it to the same network, assign them to the same role, and copy the custom user permissions (if any) from an existing user. This can be done in the Users Endpoints (2022/06)#POST API call.
Required Scope
bsn.api.self.info.update
______________________________________________________________
Request Body
The Person Entity
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
This is the example request body:
______________________________________________________________
Response
Success
204: The specified person has been updated
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request or request body is malformed and therefore invalid, or it is rejected in accordance with the business rules
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
412: Precondition failed (the resource/person changed since the time specified in the “If-Unmodified-Since” header value)
415: The server cannot accept the data representation that you sent (as specified in the "Content-Type" header)
5XX: Any 500 code is an internal server error
GET /{login}/Password/
Initiate a password reset for a person
Required Scope
None
______________________________________________________________
Segment
login
string
The person's login in the form of an email address
returnURL
string optional
A callback URL that the authentication server will return to the user in case of a successful password reset
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
login
is set toJaneDoe@brightsign.biz
returnURL
is set tohttps://bsn.cloud/
______________________________________________________________
Response
Success Response Body
202: On success, this method triggers an email to your login which contains a reference to a password reset page and a return URL as a callback
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request is malformed and therefore invalid
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
5XX: Any 500 code is an internal server error
GET /Self/Profile/
Returns a complete person profile
Required Scope Token
bsn.api.self.profile.retrieve
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
______________________________________________________________
Response
Success Response with Body
200: The return type is object, where property names are profile keys and the profile values are those property values
Example
Failure
400: The request is malformed and therefore invalid
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
5XX: Any 500 code is an internal server error
POST /Self/Profile/
Creates a new profile property for a person
Required Scope Token
bsn.api.self.profile.update
______________________________________________________________
Request Body
pair
<string, string>
A key value pair of the person profile property
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
This is the example request body:
______________________________________________________________
Response
Success Response Body
201: Returns the new resource created and referenced by the Uri (given by the Location header field) in the response. Returns an object where property names correspond to profile keys and property values correspond to profile names.
Example
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: Either the request is malformed and therefore invalid, or the specified profile property key is reserved or longer than 62 characters
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
409: The person profile property with the specified key already exists
413: The length of the specified person property profile value exceeds the 64KB limit
415: The server cannot accept the data representation that you sent (as specified in the "Content-Type" header)
5XX: Any 500 code is an internal server error
GET /Self/Profile/{key}/
Returns a profile property value for a person
Required Scope Token
bsn.api.self.profile.retrieve
______________________________________________________________
Segment
key
string
The name of the profile property
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
key
is set toPersonAccessTokenLifetime
______________________________________________________________
Response
Success Response Body
200: Returns a profile property value
Example
This is an example of a 200 level response:
Success Response
304: The resource was not modified since the time specified in the “If-Modified-Since” header
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request is malformed and therefore invalid
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
5XX: Any 500 code is an internal server error
PUT /Self/Profile/{key}/
Creates or updates a person profile property value
Required Scope Token
bsn.api.self.profile.update
______________________________________________________________
Segment
key
string
The name of the profile property
______________________________________________________________
Request Body
string
The profile property value to update
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
key
is set toPersonRefreshTokenLifetime
This is the example request body:
______________________________________________________________
Response
Success
201: Returns this status code if the person property value is defined for first time
204: Returns this status code if the person property value already exists and has been updated
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request or request body is malformed and therefore invalid, or it is rejected in accordance with the business rules
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
412: Precondition failed (the resource changed since the time specified in the “If-Unmodified-Since” header value)
413: The length of the specified user profile property exceeds the 64KB limit
415: The server cannot accept the data representation that you sent (as specified in the "Content-Type" header)
5XX: Any 500 code is an internal server error
DELETE /Self/Profile/{key}/
Removes a profile property for a person
Required Scope Token
bsn.api.self.profile.update
______________________________________________________________
Segment
key
string
The name of the profile property
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
key
is set toNewProperty1
______________________________________________________________
Response
Success
204: The profile property has been removed
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request is malformed and therefore invalid, or it is rejected in accordance with the business rules
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
412: Precondition failed (the resource changed since the time specified in the “If-Unmodified-Since” header value)
5XX: Any 500 code is an internal server error
GET /Self/Tokens/{token}/
Gets the status of the specified OAuth2 person access or refresh token
Required Scope Token
bsn.api.self.token.validate
______________________________________________________________
Segment
token
string
A person access or refresh token
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
token
is set to{{Token}}
______________________________________________________________
Response
Success Response Body
200: Returns the Token Info Entity
Example
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request is malformed and therefore invalid
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The specified person or access refresh token is expired, revoked, or invalid.
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
5XX: Any 500 code is an internal server error
DELETE /Self/Tokens/{token}/
Revokes a person access or refresh token
Required Scope Token
bsn.api.self.token.revoke
______________________________________________________________
Segment
token
string
A person access or refresh token
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
token
is set to{{Token}}
______________________________________________________________
Response
Success
204: The person access or refresh token has been deleted
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request or request body is malformed and therefore invalid, or it is rejected in accordance with the business rules
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The specified person or access refresh token is expired, revoked, or invalid.
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
5XX: Any 500 code is an internal server error
GET /Self/Networks/
Returns the networks associated with a person
Required Scope Token
bsn.api.self.networks.retrieve
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
______________________________________________________________
Response
Success Response Body
200: Returns an array of Network Entity instances in which the current person is a member
Example
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request is malformed and therefore invalid
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
5XX: Any 500 code is an internal server error
POST /Self/Networks/
Creates a network for the person.
Required Scope Token
bsn.api.self.networks.create
______________________________________________________________
Request Body
The Network Entity
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
This is the example request body:
______________________________________________________________
Response
Success Response Body
201: Returns the new resource created and referenced by the Uri (given by the Location header field) in the response. The response includes the network entity (see Network Entity).
Example
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request or request body is malformed and therefore invalid, or it is rejected in accordance with the business rules
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
415: The server cannot accept the data representation that you sent (as specified in the "Content-Type" header)
5XX: Any 500 code is an internal server error
GET /Self/Networks/{id:int}/
Get a network associated with a specified id
Required Scope Token
bsn.api.self.networks.retrieve
______________________________________________________________
Segment
id
int
The unique identifier for a network
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
id
is set to12345
______________________________________________________________
Response
Success Response with Body
200: Returns the Network Entity
Example
This is an example of a 200 level response:
Success Response
304: The resource was not modified since the time specified in the “If-Modified-Since” header
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request is malformed and therefore invalid
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
5XX: Any 500 code is an internal server error
PATCH /Self/Networks/{networkId:int}/
Applies changes to a network associated with a specified id
Required Scope Token
bsn.api.self.networks.update
______________________________________________________________
Segment
networkId
int
The unique identifier for a network
______________________________________________________________
Request Body
These properties are entries in an array. Every entry must have all three of these properties:
op
string: The type of operation - in this case it is always "replace"
path
string: A Uri path that references the location within the target document where the update will be performed
value
: The replacement value(s) for the id or serial of the group(s). This can be an array.
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
networkId
is set to12345
This is the example request body:
______________________________________________________________
Response
Success
204: The parameters have been successfully replaced
Failure
400: The request or request body is malformed and therefore invalid, or it is rejected in accordance with the business rules
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
412: Precondition failed (the resource changed since the time specified in the “If-Unmodified-Since” header value)
415: The server cannot accept the data representation that you sent (as specified in the "Content-Type" header)
5XX: Any 500 code is an internal server error
GET /Self/Networks/{name}/
Returns a network associated with a specified name.
Required Scope Token
bsn.api.self.networks.retrieve
______________________________________________________________
Segment
name
string
The name of a network
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
name
is set toJaneDoeTesting
______________________________________________________________
Response
Success Response Body
200: Returns the Network Entity
Example
This is an example of a 200 level response:
Success Response
304: The resource was not modified since the time specified in the “If-Modified-Since” header
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request is malformed and therefore invalid
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
5XX: Any 500 code is an internal server error
PATCH /Self/Networks/{networkName}/
Applies changes to a network associated with a specified id
Required Scope Token
bsn.api.self.networks.update
______________________________________________________________
Segment
networkName
string
The name of the network
______________________________________________________________
Request Body
These properties are entries in an array. Every entry must have all three of these properties:
op
string: The type of operation - in this case it is always "replace"
path
string: A Uri path that references the location within the target document where the update will be performed
value
: The replacement value(s) for the id or serial of the group(s). This can be an array.
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
networkName
is set toJaneDoeTesting
This is the example request body:
______________________________________________________________
Response
Success
204: The parameters have been successfully replaced
Failure
400: The request or request body is malformed and therefore invalid, or it is rejected in accordance with the business rules
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
412: Precondition failed (the resource changed since the time specified in the “If-Unmodified-Since” header value)
415: The server cannot accept the data representation that you sent (as specified in the "Content-Type" header)
5XX: Any 500 code is an internal server error
GET /Self/Networks/{id:int}/Settings/
Returns the settings associated with a specified network.
Required Scope Token
bsn.api.self.networks.retrieve
______________________________________________________________
Segment
id
int
The unique identifier for a network
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
id
is set to12345
______________________________________________________________
Response
Success Response with Body
200: Returns the Network Settings Entity
Example
This is an example of a 200 level response:
Success Response
304: The resource was not modified since the time specified in the “If-Modified-Since” header
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request is malformed and therefore invalid
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
5XX: Any 500 code is an internal server error
PUT /Self/Networks/{id:int}/Settings/
Update the settings associated with a specified network
Required Scope Token
bsn.api.self.networks.update
______________________________________________________________
Segment
id
int
The unique identifier for a network
______________________________________________________________
Request Body
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
id
is set to12345
This is the example request body:
______________________________________________________________
Response
Success
204: The specified settings have been updated on the network
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request or request body is malformed and therefore invalid, or it is rejected in accordance with the business rules
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
415: The server cannot accept the data representation that you sent (as specified in the "Content-Type" header)
5XX: Any 500 code is an internal server error
GET /Self/Networks/{name}/Settings/
Get the settings associated with a specified network.
Required Scope Token
bsn.api.self.networks.retrieve
______________________________________________________________
Segment
name
string
The network name
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
id
is set toJaneDoeTesting
______________________________________________________________
Response
Success Response Body
200: Returns the Network Settings Entity
Example
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request is malformed and therefore invalid
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
5XX: Any 500 code is an internal server error
PUT /Self/Networks/{name}/Settings/
Update the settings associated with a specified network
Required Scope Token
bsn.api.self.networks.update
______________________________________________________________
Segment
name
string
The network name
______________________________________________________________
Request Body
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
name
is set toJaneDoeTesting
This is the example request body:
______________________________________________________________
Response
Success
204: The network settings have been updated
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request or request body is malformed and therefore invalid, or it is rejected in accordance with the business rules
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
415: The server cannot accept the data representation that you sent (as specified in the "Content-Type" header)
5XX: Any 500 code is an internal server error
GET /Self/Networks/{id:int}/Subscription/
Returns the current subscription information associated with a specified network.
Required Scope Token
bsn.api.self.networks.retrieve
______________________________________________________________
Segment
id
int
The unique identifier for a network
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
id
is set to12345
______________________________________________________________
Response
Success Response with Body
200: Returns the Network Subscription Entity
Example
This is an example of a 200 level response:
Success Response
304: The resource was not modified since the time specified in the “If-Modified-Since” header
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request is malformed and therefore invalid
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
5XX: Any 500 code is an internal server error
PUT /Self/Networks/{id:int}/Subscription/
Updates the current subscription information associated with a specified network. A regular user can only use this to enable a trial period of the Content Cloud (if it was not previously enabled).
Required Scope Token
bsn.api.self.networks.update
______________________________________________________________
Segment
id
int
The unique identifier for a network
______________________________________________________________
Request Body
The Network Subscription Entity
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
id
is set to12345
This is the example request body:
______________________________________________________________
Response
Success
204: The subscription information was updated
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request or request body is malformed and therefore invalid, or it is rejected in accordance with the business rules
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
412: Precondition failed (the resource changed since the time specified in the “If-Unmodified-Since” header value)
415: The server cannot accept the data representation that you sent (as specified in the "Content-Type" header)
5XX: Any 500 code is an internal server error
GET /Self/Networks/{name}/Subscription/
Returns the current subscription information associated with a specified network.
Required Scope
bsn.api.self.networks.retrieve
______________________________________________________________
Segment
name
string
The network name
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
name
is set toJaneDoeTesting
______________________________________________________________
Response
Success Response Body
200: Returns the Network Subscription Entity
Example
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request is malformed and therefore invalid
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
5XX: Any 500 code is an internal server error
PUT /Self/Networks/{name}/Subscription/
Updates the current subscription information associated with a specified network. A regular user can only use this to enable a trial period of the Content Cloud (if it was not previously enabled).
Required Scope Token
bsn.api.self.networks.update
______________________________________________________________
Segment
name
string
The network name
______________________________________________________________
Request Body
The Network Subscription Entity
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
name
is set toJaneDoeTesting
This is the example request body:
______________________________________________________________
Response
Success
204: Updated the subscription information associated with the network
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request or request body is malformed and therefore invalid, or it is rejected in accordance with the business rules
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
415: The server cannot accept the data representation that you sent (as specified in the "Content-Type" header)
5XX: Any 500 code is an internal server error
GET /Self/Networks/{id:int}/Subscriptions/
Returns the current subscription, and all previously expired subscriptions, associated with a specified network
Required Scope Token
bsn.api.self.networks.retrieve
______________________________________________________________
Segment
id
int
The network identifier
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
id
is set to12345
______________________________________________________________
Response
Success Response Body
200: Returns an array of Network Subscription entities
Example
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request is malformed and therefore invalid
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
5XX: Any 500 code is an internal server error
GET /Self/Networks/{name}/Subscriptions/
Returns the current subscription, and all previously expired subscriptions, associated with a specified network
Required Scope Token
bsn.api.self.networks.retrieve
______________________________________________________________
Segment
name
string
The network name
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
name
is set toJaneDoeTesting
______________________________________________________________
Response
Success Response Body
200: Returns an array of Network Subscription entities
Example
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request is malformed and therefore invalid
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
5XX: Any 500 code is an internal server error
GET /Self/Users/
Returns all user entities that the customer is associated with over all networks where the person has a user record
Required Scope Token
bsn.api.self.users.retrieve
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
______________________________________________________________
Response
Success Response Body
200: Returns an array of user entities (see User Entity) if the user is a member of multiple networks, or to a single User Entity if the user is only a member of one network, or nothing if the user is not a member of any network.
Example
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request is malformed and therefore invalid
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
5XX: Any 500 code is an internal server error
GET /Self/Users/{id:int}/
Returns information about your membership in a network
Required Scope Token
bsn.api.self.users.retrieve
______________________________________________________________
Segment
id
int
The unique identifier for a user
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
id
is set to12345
______________________________________________________________
Response
Success Response with Body
200: Returns the User Entity
Example
This is an example of a 200 level response:
Success Response
304: The resource was not modified since the time specified in the “If-Modified-Since” header
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request is malformed and therefore invalid
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
5XX: Any 500 code is an internal server error
GET /Self/Users/{id:int}/Role/
Returns information about the role you have in a network
Required Scope Token
bsn.api.self.roles.retrieve
______________________________________________________________
Segment
id
int
The unique identifier for a user
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
id
is set to12345
______________________________________________________________
Response
Success Response with Body
200: This returns the User Entity
Example
This is an example of a 200 level response:
Success Response
204: No content (the user is not assigned to a role)
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request is malformed and therefore invalid
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
5XX: Any 500 code is an internal server error
GET /Self/Users/{id:int}/Profile/
Returns the user profile settings
Required Scope Token
bsn.api.self.users.profile.retrieve
______________________________________________________________
Segment
id
int
The unique identifier for a user
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
id
is set to12345
______________________________________________________________
Response
Success Response Body
200: The return type is object, where property names are profile keys and the profile values are those property values
Example
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request is malformed and therefore invalid
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
5XX: Any 500 code is an internal server error
POST /Self/Users/{id:int}/Profile/
Creates a new user profile property (it does not replace an existing user profile property)
Required Scope Token
bsn.api.self.users.profile.update
______________________________________________________________
Segment
id
int
The unique identifier for a user
______________________________________________________________
Request Body
pair
<string, string>
A key value pair. There should be not more than 100 properties per user, and each property value should be not more than 64KB.
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
id
is set to12345
This is the example request body:
______________________________________________________________
Response
Success Response Body
201: Returns the key value pair and a link to the GET method to retrieve it.
Example
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request or request body is malformed and therefore invalid, or it is rejected in accordance with the business rules
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
409: The profile property with the specified key already exists or is reserved
413: The specified profile property value size exceeds the 64KB limit
415: The server cannot accept the data representation that you sent (as specified in the "Content-Type" header)
5XX: Any 500 code is an internal server error
GET /Self/Users/{id:int}/Profile/{key}/
Returns the value of a user profile property
Required Scope Token
bsn.api.self.users.profile.retrieve
______________________________________________________________
Segment
id
int
The unique identifier for a user
key
string
The name of the profile property
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
id
is set to12345
key
is set toNew Key 1
______________________________________________________________
Response
Success Response with Body
200: Returns the value of the requested user profile key
Example
This is an example of a status 200 response:
Success Response
304: The resource was not modified since the time specified in the “If-Modified-Since” header
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request is malformed and therefore invalid
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
5XX: Any 500 code is an internal server error
PUT /Self/Users/{id:int}/Profile/{key}/
Creates or updates the value of a user profile property
Required Scope Token
bsn.api.self.users.profile.update
______________________________________________________________
Segments
id
int
The unique identifier for a user
key
string
The name of the profile property
______________________________________________________________
Request Body
string
The profile property value to update
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
id
is set to12345
key
is set touserStartupPage
string
is set to"Admin"
This is the example request body:
______________________________________________________________
Response
Success
201: Returns this status code if the property value is defined for first time
204: Returns this status code if the property already exists and has been updated
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: Either the request is malformed and therefore invalid, or the specified user profile property key is reserved or longer than 62 characters
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
412: Precondition failed (the resource changed since the time specified in the “If-Unmodified-Since” header value)
413: The length of the specified user profile property exceeds the 64KB limit
415: The server cannot accept the data representation that you sent (as specified in the "Content-Type" header)
5XX: Any 500 code is an internal server error
DELETE /Self/Users/{id:int}/Profile/{key}/
Removes a specified property from a user profile
Required Scope Token
bsn.api.self.users.profile.update
______________________________________________________________
Segments
id
int
The unique identifier for a user
key
string
The name of the profile property
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
id
is set to12345
key
is set toNew Key 1
______________________________________________________________
Response
Success
204: The specified property has been removed from the user profile
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request or request body is malformed and therefore invalid, or it is rejected in accordance with the business rules
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
412: Precondition failed (the resource changed since the time specified in the “If-Unmodified-Since” header value)
5XX: Any 500 code is an internal server error
GET /Self/Users/{id:int}/Permissions/
Returns the permissions granted to a given user
Required Scope Token
bsn.api.self.users.retrieve
______________________________________________________________
Segment
id
int
A unique identifier for a user
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
id
is set to12345
______________________________________________________________
Response
Success Response Body
200: Returns the paged list of Permission entities granted to a specific user
Example
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request is malformed and therefore invalid
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
5XX: Any 500 code is an internal server error
GET /Self/Users/{id:int}/Role/Permissions/
Returns permissions granted to a given user
Required Scope Token
bsn.api.self.roles.retrieve
______________________________________________________________
Segment
id
int
A unique identifier for a user
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
id
is set to12345
______________________________________________________________
Response
Success Response Body
200: Returns the array of Permission entities granted to a specific role
Example
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request is malformed and therefore invalid
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
5XX: Any 500 code is an internal server error
GET /Self/Users/{id:int}/Notifications/
Returns the user notification settings
Required Scope Token
bsn.api.self.users.notifications.retrieve
______________________________________________________________
Segment
id
int
A unique identifier for a user
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
id
is set to12345
______________________________________________________________
Response
Success Response Body
200: Returns information about whether each setting in User Notification Settings Entity is enabled or disabled
Example
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request is malformed and therefore invalid
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
5XX: Any 500 code is an internal server error
PUT /Self/Users/{id:int}/Notifications/
Updates the user notification settings
Required Scope Token
bsn.api.self.users.notifications.update
______________________________________________________________
Segment
id
int
A unique identifier for a user
______________________________________________________________
Request Body
The User Notification Settings Entity
______________________________________________________________
Request Example
The example request parameters and headers are set as follows:
id
is set to12345
This is the example request body:
______________________________________________________________
Response
Success
204: The specified user notification settings have been updated on the network
Failure
300: The requested representation could not be returned because it is ambiguous (there are multiple requested representations)
400: The request or request body is malformed and therefore invalid, or it is rejected in accordance with the business rules
401: The access token is invalid or not specified
403: The supplied access token, though valid, doesn't provide access to this method
404: The server cannot find the requested resource (the path does not exist)
406: The server cannot return the data representation that you requested (as specified in the "Accept" header)
415: The server cannot accept the data representation that you sent (as specified in the "Content-Type" header)
5XX: Any 500 code is an internal server error