- Previous: developer.delete
- Up: Mashery API v1.0
- Next: developer.getLimits
developer.fetchAll
This section provides documentation on the v1.0 version of the Mashery API. We will support previously built applications and integration points, but not granting new access keys. These pages are for legacy support purposes. Should you wish to integrate with your Mashery instance, please utilize Mashery API version 2.0.
Description
Retrieve a list of all current developers belonging to a Mashery Service Provider.
Authentication
This method requires authentication
| Parameters | Type | Description | Required |
| spkey | string | Service Provider key assigned by Mashery | Yes |
Response
array — An array of developer objects.
Examples
A JSON-RPC Request
{
"method": "developer.fetchAll",
"params": [{
"spkey": "gmsmjfjp97urkyaw3uqdjyr6",
}]{
"id": 33
}
A JSON-RPC Response
{
"result": {
"apikey": "6j3g9msume5w8bfu6tevcggv",
"created": "2008-01-10 10:07:44",
"email": "johnqpublic@example.com",
"groups": ["trial"],
"limits": {
"callsPerPeriod": 0,
"callsPerPeriodExempt": false,
"callsPerSecond": 5,
"callsPerSecondExempt": false,
"permittedMethods": {
"readStuff": {
"period": "day"
"limit": 5000
},
"writeStuff": {
"period": "day"
"limit": 500
}
},
"permittedPaths": [],
"permittedHttpMethods": [],
"requiredReferers": []
},
"secret": "fbskfg4e"
"status": "active"
"updated": "2008-02-01 11:18:41"
},
{
"apikey": "...",
"created": "..."
}],
"error": null,
"id": 32
}
Errors
This method may return one of the following errors:
| Error | Description |
| 4102: Insufficient Privileges | You do not have sufficient privileges to call this method. |
| 400: Bad Request | Your request was incomplete or otherwise invalid. Please review the documentation. |
| 450: Spkey Not In Area | The service requested does not exist in the area specified. |
| 12: Validation Failed | One or more values presented were not acceptable. Please review the documentation. |
- Previous: developer.delete
- Up: Mashery API v1.0
- Next: developer.getLimits
Docs Navigation
- Support Documentation
- Mashery API Documentation
- Tips and Tricks
- Customizing Your Portal
- API Proxy Service

Comments
New comments are not being accepted at this time.