Billhighway Cloud API

<back to all web services

FormBuilderMembershipPipelineRq

The following routes are available for this service:
POST/signup/api/nat/{nationalId}/group/{chapId}/membershipPipeline
FormBuilderMembershipPipelineRq Parameters:
NameParameterData TypeRequiredDescription
nationalIdpathintNo
chapIdpathintNo
workflowTemplateTypeIdbodyintNo
workflowCategoryKeybodystringNo
createdBybodyintNo
propertiesbodyList<BhWorkflowPropertyDto>No
BhWorkflowPropertyDto Parameters:
NameParameterData TypeRequiredDescription
nameformstringNo
valueformstringNo
propertyNamespaceformstringNo
FormBuilderMembershipPipelineRs Parameters:
NameParameterData TypeRequiredDescription
workflowIdformlongNo
isValidformboolNo
hasServerErrorformboolNo
hasClientErrorformboolNo
hasWarningErrorformboolNo
clientErrorsformstringNo
warningErrorsformstringNo
outputsformList<BhWorkflowOutputDto>No
componentsformList<BhWorkflowComponentDto>No
BhWorkflowOutputDto Parameters:
NameParameterData TypeRequiredDescription
nameformstringNo
valueformstringNo
BhWorkflowComponentDto Parameters:
NameParameterData TypeRequiredDescription
ComponentNameformstringNo
HasServerErrorformboolNo
HasClientErrorformboolNo
HasWarningErrorformboolNo
WarningsformList<string>No

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /signup/api/nat/{nationalId}/group/{chapId}/membershipPipeline HTTP/1.1 
Host: devapi.billhighway.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	nationalId: 0,
	chapId: 0,
	workflowTemplateTypeId: 0,
	workflowCategoryKey: String,
	createdBy: 0,
	properties: 
	[
		{
			name: String,
			value: String,
			propertyNamespace: String
		}
	]
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	workflowId: 0,
	isValid: False,
	hasServerError: False,
	hasClientError: False,
	hasWarningError: False,
	clientErrors: String,
	warningErrors: String,
	outputs: 
	[
		{
			name: String,
			value: String
		}
	],
	components: 
	[
		{
			ComponentName: String,
			HasServerError: False,
			HasClientError: False,
			HasWarningError: False,
			Warnings: 
			[
				String
			]
		}
	]
}