Property | Type | Description | |
---|---|---|---|
_AfterListeners | List |
||
_BeforeListeners | List |
||
_Settings | CBApi.APISettings |
Method | Description | |
---|---|---|
AnonymousApplication ( |
Anonymous apply with /v2/Application/submit
|
|
ApplyLink ( ApplyLink request ) : string |
Gets the ApplyLink for a Job
|
|
ApplyLink ( NameValueCollection request ) : string |
Gets the ApplyLink for a Job
|
|
CreateSavedSearch ( |
||
DeleteSavedSearchXML ( RequestSavedSearchDelete search ) : |
||
GetAccessToken ( string clientId, string clientSecret, string code, string redirectUri ) : |
Make a call to /auth/token
|
|
GetApplicationForm ( string jobDid ) : string |
Make a call to /v1/application/form
|
|
GetBlankApplication ( string jobDid ) : |
Make a call to /v1/application/blank
|
|
GetCategories ( ) : ICategoryRequest |
Make a call to /v1/categories
|
|
GetEducationCodes ( ) : IEducationCodesRequest |
Make a call to /v1/educationcodes
|
|
GetEmployeeTypes ( ) : IEmployeeTypesRequest |
Make a call to /v1/employeetypes
|
|
GetJob ( string jobDid ) : CBApi.Models.Job |
Make a call to /v1/job
|
|
GetOAuthRedirectUri ( string clientId, string redirectUri, string permissions ) : |
Gets the Uri to redirect to for OAuth
|
|
GetRecommendationsForJob ( string jobDid ) : List |
Make a call to /v1/recommendations/forjob
|
|
GetRecommendationsForJobWithUserPreferences ( string jobDid, string userDid ) : List |
Make a call to /v1/recommendations/forjobwithuserprefs
|
|
GetRecommendationsForUser ( string externalId ) : List |
make a call to /v1/recommendations/foruser
|
|
JobReport ( string jobDid ) : CBApi.Models.Responses.ResponseJobReport | ||
JobSearch ( ) : IJobSearch |
Make a call to /v1/jobsearch
|
|
ListSavedSearches ( |
Lists all saved searches from a single user
|
|
RetrieveASavedSearch ( string savedSearchDID, string userOAuthToken ) : Models.WebAPIs.SavedSearch.SavedSearches | ||
RetrieveSavedSearch ( |
Retrieve a single saved search
|
|
SubmitApplication ( CBApi.Models.Application app ) : |
Submit an application to /v1/application/submit
|
|
SubmitApplication ( |
Submit an application to /v1/application/submit
|
|
UpdateSavedSearch ( |
Updates a SavedSearch
|
Method | Description | |
---|---|---|
CbApi ( ) : System.Collections.Generic | ||
CbApi ( string key ) : System.Collections.Generic | ||
CbApi ( string key, int timeout ) : System.Collections.Generic | ||
CbApi ( string key, int timeout, |
||
CbApi ( string key, string cobrandCode ) : System.Collections.Generic | ||
CbApi ( string key, string cobrandCode, string siteid ) : System.Collections.Generic | ||
WireAfterRequestEvents ( |
||
WireBeforeRequestEvents ( |
public AnonymousApplication ( |
||
request | the input for the application | |
return |
public ApplyLink ( ApplyLink request ) : string | ||
request | ApplyLink | An ApplyLink values collection to pass to the api. |
return | string |
public ApplyLink ( NameValueCollection request ) : string | ||
request | NameValueCollection | A named value collection of params to pass to the api |
return | string |
protected CbApi ( ) : System.Collections.Generic | ||
return | System.Collections.Generic |
protected CbApi ( string key ) : System.Collections.Generic | ||
key | string | |
return | System.Collections.Generic |
protected CbApi ( string key, int timeout ) : System.Collections.Generic | ||
key | string | |
timeout | int | |
return | System.Collections.Generic |
protected CbApi ( string key, int timeout, |
||
key | string | |
timeout | int | |
site | ||
return | System.Collections.Generic |
protected CbApi ( string key, string cobrandCode ) : System.Collections.Generic | ||
key | string | |
cobrandCode | string | |
return | System.Collections.Generic |
protected CbApi ( string key, string cobrandCode, string siteid ) : System.Collections.Generic | ||
key | string | |
cobrandCode | string | |
siteid | string | |
return | System.Collections.Generic |
public CreateSavedSearch ( |
||
app | the saved search that is wanting to be saved | |
return | CBApi.Models.SavedSearchCreateResponse |
public DeleteSavedSearchXML ( RequestSavedSearchDelete search ) : |
||
search | RequestSavedSearchDelete | The search being deleted |
return |
public GetAccessToken ( string clientId, string clientSecret, string code, string redirectUri ) : |
||
clientId | string | 20 character long external client ID. |
clientSecret | string | 64 character long external client secret. |
code | string | 20 character long OAuth authorization grant code returned from auth/prompt redirection. |
redirectUri | string | URL that was provided at the time of external client registration. |
return |
public GetApplicationForm ( string jobDid ) : string | ||
jobDid | string | |
return | string |
public GetBlankApplication ( string jobDid ) : |
||
jobDid | string | |
return |
public GetEducationCodes ( ) : IEducationCodesRequest | ||
return | IEducationCodesRequest |
public GetEmployeeTypes ( ) : IEmployeeTypesRequest | ||
return | IEmployeeTypesRequest |
public GetJob ( string jobDid ) : CBApi.Models.Job | ||
jobDid | string | |
return | CBApi.Models.Job |
public GetOAuthRedirectUri ( string clientId, string redirectUri, string permissions ) : |
||
clientId | string | |
redirectUri | string | |
permissions | string | |
return |
public GetRecommendationsForJob ( string jobDid ) : List |
||
jobDid | string | |
return | List |
public GetRecommendationsForJobWithUserPreferences ( string jobDid, string userDid ) : List |
||
jobDid | string | |
userDid | string | The unique ID of the user |
return | List |
public GetRecommendationsForUser ( string externalId ) : List |
||
externalId | string | The ID of the user that you wish to get recs for |
return | List |
public JobReport ( string jobDid ) : CBApi.Models.Responses.ResponseJobReport | ||
jobDid | string | |
return | CBApi.Models.Responses.ResponseJobReport |
public ListSavedSearches ( |
||
app | info to lead to the users saved searches | |
return | CBApi.Models.SavedSearchListResponseModel |
public RetrieveASavedSearch ( string savedSearchDID, string userOAuthToken ) : Models.WebAPIs.SavedSearch.SavedSearches | ||
savedSearchDID | string | |
userOAuthToken | string | |
return | Models.WebAPIs.SavedSearch.SavedSearches |
public RetrieveSavedSearch ( |
||
app | Info to lead to the saved search | |
return | SavedSearchRetrieveResponseModel |
public SubmitApplication ( CBApi.Models.Application app ) : |
||
app | CBApi.Models.Application | The application being submited to careerbuilder |
return |
public SubmitApplication ( |
||
app | The application being submited to careerbuilder | |
return |
public UpdateSavedSearch ( |
||
app | The data for the savedsearch | |
return | SavedSearchUpdateResponseModel |
protected WireAfterRequestEvents ( |
||
req | ||
return | void |
protected WireBeforeRequestEvents ( |
||
req | ||
return | void |