A developer is an API user and has defined.
Supported methods and paths
Method
Path
What
GET
/v1/developers
retrieve all developers
POST
/v1/developers
creates a new developer
GET
/v1/developers/developername
retrieve a developer
POST
/v1/developers/developername
updates an existing developer
DELETE
/v1/developers/developername
deletes a developer
GET
/v1/developers/developername /attributes
retrieve all attributes of developer
POST
/v1/developers/developername /attributes
update all attribute of developer
GET
/v1/developers/developername /attributes/name
retrieve one attribute of developer
POST
/v1/developers/developername /attributes/name
update an attribute of developer
DELETE
/v1/developers/developername /attributes/name
deletes attribute of developer
For POST content-type: application/json is required.
Example developer definition
{
"email" : " john@example.com" ,
"firstName" : " John" ,
"lastName" : " Smith" ,
"userName" : " john" ,
"attributes" : [
{
"name" : " Shoesize" ,
"value" : " 42"
},
{
"name" : " CustomerGroup" ,
"value" : " VIP"
}
]
}
fieldname
optional
purpose
email
mandatory
name
firstName
mandatory
first name
lastName
mandatory
last name
userName
mandatory
user name
attributes
optional
specific attributes