Organizations
Required scopes
This endpoint requires the following scopes:
- : Read organization data
Authorizations
OAuth2authorizationCodeRequiredAuthorization URL: Token URL:
OAuth2 authorizationCode flow is currently not functional on the Swagger UI.
Responses
200
OK
400
Bad Request
*/*
404
Not Found
*/*
429
Too Many Requests
*/*
500
Internal Server Error
*/*
get/v2/organizations
GET /v2/organizations HTTP/1.1
Host: api.badges.parchment.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"organizations": [
{
"frontendDomain": "university.badges.example.com",
"id": "67ae3efe2ee1d96b56fc1957",
"name": "University of Credentials",
"ob3Enabled": false,
"profile": {
"description": "A university that issues credentials.",
"email": "mail@example.com",
"imageUrl": "https://www.example.com/logo.png",
"url": "https://www.example.com"
}
}
]
}Authorizations
HTTPRequired
Path parameters
idstringRequired
Query parameters
nameQuerystring · max: 256Optional
Case-insensitive filter for the name of the issuers
numstring · min: 1 · max: 100OptionalDefault:
Number of items to return per page
10Example: 10pagestring · min: 1OptionalDefault:
Index of the requested page (1-based)
1Example: 1Responses
200
OK
400
Bad Request
*/*
404
Not Found
*/*
429
Too Many Requests
*/*
500
Internal Server Error
*/*
get/v2/organizations/{id}/public-issuers
GET /v2/organizations/{id}/public-issuers HTTP/1.1
Host: api.badges.parchment.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"items": [
{
"badgeSkillLinkingPreferences": {
"indeedRegion": "us",
"linkMode": "DEFAULT",
"serverUri": "https://example.com/",
"type": "TALENT_NEURON"
},
"issuerId": "67e9d238c5afe622816febb3",
"obIssuer": {
"@context": "text",
"description": "text",
"email": "text",
"extensions": {
"ANY_ADDITIONAL_PROPERTY": {}
},
"id": "text",
"image": "text",
"name": "text",
"url": "text"
},
"organizationId": "65e9d238c5afe622816febb3"
}
],
"pagination": {
"currentPage": 1,
"hasNextPage": true,
"nextLink": "text",
"pageSize": 10,
"previousLink": "text",
"totalCount": 100,
"totalPages": 6
}
}Last updated
Was this helpful?