curl --request POST \
--url https://api-dev.rain.xyz/v1/issuing/applications/company \
--header 'Api-Key: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"initialUser": {
"firstName": "<string>",
"lastName": "<string>",
"birthDate": "2000-01-01",
"nationalId": "<string>",
"countryOfIssue": "<string>",
"email": "<string>",
"address": {
"line1": "<string>",
"city": "<string>",
"region": "<string>",
"postalCode": "<string>",
"countryCode": "<string>",
"line2": "<string>",
"country": "<string>"
},
"ipAddress": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"phoneCountryCode": "1",
"phoneNumber": "5555555555",
"role": "<string>",
"walletAddress": "<string>",
"solanaAddress": "<string>",
"stellarAddress": "<string>",
"isTermsOfServiceAccepted": true
},
"name": "<string>",
"address": {
"line1": "<string>",
"city": "<string>",
"region": "<string>",
"postalCode": "<string>",
"countryCode": "<string>",
"line2": "<string>",
"country": "<string>"
},
"entity": {
"name": "<string>",
"description": "<string>",
"industry": "<string>",
"registrationNumber": "<string>",
"taxId": "<string>",
"website": "<string>",
"type": "<string>",
"expectedSpend": "<string>"
},
"representatives": [
{
"firstName": "<string>",
"lastName": "<string>",
"birthDate": "2000-01-01",
"nationalId": "<string>",
"countryOfIssue": "<string>",
"email": "<string>",
"address": {
"line1": "<string>",
"city": "<string>",
"region": "<string>",
"postalCode": "<string>",
"countryCode": "<string>",
"line2": "<string>",
"country": "<string>"
},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"phoneCountryCode": "1",
"phoneNumber": "5555555555"
}
],
"ultimateBeneficialOwners": [
{
"firstName": "<string>",
"lastName": "<string>",
"birthDate": "2000-01-01",
"nationalId": "<string>",
"countryOfIssue": "<string>",
"email": "<string>",
"address": {
"line1": "<string>",
"city": "<string>",
"region": "<string>",
"postalCode": "<string>",
"countryCode": "<string>",
"line2": "<string>",
"country": "<string>"
},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"phoneCountryCode": "1",
"phoneNumber": "5555555555"
}
],
"chainId": "<string>",
"contractAddress": "<string>",
"sourceKey": "<string>",
"externalId": "<string>"
}
'import requests
url = "https://api-dev.rain.xyz/v1/issuing/applications/company"
payload = {
"initialUser": {
"firstName": "<string>",
"lastName": "<string>",
"birthDate": "2000-01-01",
"nationalId": "<string>",
"countryOfIssue": "<string>",
"email": "<string>",
"address": {
"line1": "<string>",
"city": "<string>",
"region": "<string>",
"postalCode": "<string>",
"countryCode": "<string>",
"line2": "<string>",
"country": "<string>"
},
"ipAddress": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"phoneCountryCode": "1",
"phoneNumber": "5555555555",
"role": "<string>",
"walletAddress": "<string>",
"solanaAddress": "<string>",
"stellarAddress": "<string>",
"isTermsOfServiceAccepted": True
},
"name": "<string>",
"address": {
"line1": "<string>",
"city": "<string>",
"region": "<string>",
"postalCode": "<string>",
"countryCode": "<string>",
"line2": "<string>",
"country": "<string>"
},
"entity": {
"name": "<string>",
"description": "<string>",
"industry": "<string>",
"registrationNumber": "<string>",
"taxId": "<string>",
"website": "<string>",
"type": "<string>",
"expectedSpend": "<string>"
},
"representatives": [
{
"firstName": "<string>",
"lastName": "<string>",
"birthDate": "2000-01-01",
"nationalId": "<string>",
"countryOfIssue": "<string>",
"email": "<string>",
"address": {
"line1": "<string>",
"city": "<string>",
"region": "<string>",
"postalCode": "<string>",
"countryCode": "<string>",
"line2": "<string>",
"country": "<string>"
},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"phoneCountryCode": "1",
"phoneNumber": "5555555555"
}
],
"ultimateBeneficialOwners": [
{
"firstName": "<string>",
"lastName": "<string>",
"birthDate": "2000-01-01",
"nationalId": "<string>",
"countryOfIssue": "<string>",
"email": "<string>",
"address": {
"line1": "<string>",
"city": "<string>",
"region": "<string>",
"postalCode": "<string>",
"countryCode": "<string>",
"line2": "<string>",
"country": "<string>"
},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"phoneCountryCode": "1",
"phoneNumber": "5555555555"
}
],
"chainId": "<string>",
"contractAddress": "<string>",
"sourceKey": "<string>",
"externalId": "<string>"
}
headers = {
"Api-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Api-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
initialUser: {
firstName: '<string>',
lastName: '<string>',
birthDate: '2000-01-01',
nationalId: '<string>',
countryOfIssue: '<string>',
email: '<string>',
address: {
line1: '<string>',
city: '<string>',
region: '<string>',
postalCode: '<string>',
countryCode: '<string>',
line2: '<string>',
country: '<string>'
},
ipAddress: '<string>',
id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
phoneCountryCode: '1',
phoneNumber: '5555555555',
role: '<string>',
walletAddress: '<string>',
solanaAddress: '<string>',
stellarAddress: '<string>',
isTermsOfServiceAccepted: true
},
name: '<string>',
address: {
line1: '<string>',
city: '<string>',
region: '<string>',
postalCode: '<string>',
countryCode: '<string>',
line2: '<string>',
country: '<string>'
},
entity: {
name: '<string>',
description: '<string>',
industry: '<string>',
registrationNumber: '<string>',
taxId: '<string>',
website: '<string>',
type: '<string>',
expectedSpend: '<string>'
},
representatives: [
{
firstName: '<string>',
lastName: '<string>',
birthDate: '2000-01-01',
nationalId: '<string>',
countryOfIssue: '<string>',
email: '<string>',
address: {
line1: '<string>',
city: '<string>',
region: '<string>',
postalCode: '<string>',
countryCode: '<string>',
line2: '<string>',
country: '<string>'
},
id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
phoneCountryCode: '1',
phoneNumber: '5555555555'
}
],
ultimateBeneficialOwners: [
{
firstName: '<string>',
lastName: '<string>',
birthDate: '2000-01-01',
nationalId: '<string>',
countryOfIssue: '<string>',
email: '<string>',
address: {
line1: '<string>',
city: '<string>',
region: '<string>',
postalCode: '<string>',
countryCode: '<string>',
line2: '<string>',
country: '<string>'
},
id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
phoneCountryCode: '1',
phoneNumber: '5555555555'
}
],
chainId: '<string>',
contractAddress: '<string>',
sourceKey: '<string>',
externalId: '<string>'
})
};
fetch('https://api-dev.rain.xyz/v1/issuing/applications/company', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-dev.rain.xyz/v1/issuing/applications/company",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'initialUser' => [
'firstName' => '<string>',
'lastName' => '<string>',
'birthDate' => '2000-01-01',
'nationalId' => '<string>',
'countryOfIssue' => '<string>',
'email' => '<string>',
'address' => [
'line1' => '<string>',
'city' => '<string>',
'region' => '<string>',
'postalCode' => '<string>',
'countryCode' => '<string>',
'line2' => '<string>',
'country' => '<string>'
],
'ipAddress' => '<string>',
'id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'phoneCountryCode' => '1',
'phoneNumber' => '5555555555',
'role' => '<string>',
'walletAddress' => '<string>',
'solanaAddress' => '<string>',
'stellarAddress' => '<string>',
'isTermsOfServiceAccepted' => true
],
'name' => '<string>',
'address' => [
'line1' => '<string>',
'city' => '<string>',
'region' => '<string>',
'postalCode' => '<string>',
'countryCode' => '<string>',
'line2' => '<string>',
'country' => '<string>'
],
'entity' => [
'name' => '<string>',
'description' => '<string>',
'industry' => '<string>',
'registrationNumber' => '<string>',
'taxId' => '<string>',
'website' => '<string>',
'type' => '<string>',
'expectedSpend' => '<string>'
],
'representatives' => [
[
'firstName' => '<string>',
'lastName' => '<string>',
'birthDate' => '2000-01-01',
'nationalId' => '<string>',
'countryOfIssue' => '<string>',
'email' => '<string>',
'address' => [
'line1' => '<string>',
'city' => '<string>',
'region' => '<string>',
'postalCode' => '<string>',
'countryCode' => '<string>',
'line2' => '<string>',
'country' => '<string>'
],
'id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'phoneCountryCode' => '1',
'phoneNumber' => '5555555555'
]
],
'ultimateBeneficialOwners' => [
[
'firstName' => '<string>',
'lastName' => '<string>',
'birthDate' => '2000-01-01',
'nationalId' => '<string>',
'countryOfIssue' => '<string>',
'email' => '<string>',
'address' => [
'line1' => '<string>',
'city' => '<string>',
'region' => '<string>',
'postalCode' => '<string>',
'countryCode' => '<string>',
'line2' => '<string>',
'country' => '<string>'
],
'id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'phoneCountryCode' => '1',
'phoneNumber' => '5555555555'
]
],
'chainId' => '<string>',
'contractAddress' => '<string>',
'sourceKey' => '<string>',
'externalId' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Api-Key: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api-dev.rain.xyz/v1/issuing/applications/company"
payload := strings.NewReader("{\n \"initialUser\": {\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"birthDate\": \"2000-01-01\",\n \"nationalId\": \"<string>\",\n \"countryOfIssue\": \"<string>\",\n \"email\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"region\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"countryCode\": \"<string>\",\n \"line2\": \"<string>\",\n \"country\": \"<string>\"\n },\n \"ipAddress\": \"<string>\",\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"phoneCountryCode\": \"1\",\n \"phoneNumber\": \"5555555555\",\n \"role\": \"<string>\",\n \"walletAddress\": \"<string>\",\n \"solanaAddress\": \"<string>\",\n \"stellarAddress\": \"<string>\",\n \"isTermsOfServiceAccepted\": true\n },\n \"name\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"region\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"countryCode\": \"<string>\",\n \"line2\": \"<string>\",\n \"country\": \"<string>\"\n },\n \"entity\": {\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"industry\": \"<string>\",\n \"registrationNumber\": \"<string>\",\n \"taxId\": \"<string>\",\n \"website\": \"<string>\",\n \"type\": \"<string>\",\n \"expectedSpend\": \"<string>\"\n },\n \"representatives\": [\n {\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"birthDate\": \"2000-01-01\",\n \"nationalId\": \"<string>\",\n \"countryOfIssue\": \"<string>\",\n \"email\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"region\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"countryCode\": \"<string>\",\n \"line2\": \"<string>\",\n \"country\": \"<string>\"\n },\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"phoneCountryCode\": \"1\",\n \"phoneNumber\": \"5555555555\"\n }\n ],\n \"ultimateBeneficialOwners\": [\n {\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"birthDate\": \"2000-01-01\",\n \"nationalId\": \"<string>\",\n \"countryOfIssue\": \"<string>\",\n \"email\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"region\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"countryCode\": \"<string>\",\n \"line2\": \"<string>\",\n \"country\": \"<string>\"\n },\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"phoneCountryCode\": \"1\",\n \"phoneNumber\": \"5555555555\"\n }\n ],\n \"chainId\": \"<string>\",\n \"contractAddress\": \"<string>\",\n \"sourceKey\": \"<string>\",\n \"externalId\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Api-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api-dev.rain.xyz/v1/issuing/applications/company")
.header("Api-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"initialUser\": {\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"birthDate\": \"2000-01-01\",\n \"nationalId\": \"<string>\",\n \"countryOfIssue\": \"<string>\",\n \"email\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"region\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"countryCode\": \"<string>\",\n \"line2\": \"<string>\",\n \"country\": \"<string>\"\n },\n \"ipAddress\": \"<string>\",\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"phoneCountryCode\": \"1\",\n \"phoneNumber\": \"5555555555\",\n \"role\": \"<string>\",\n \"walletAddress\": \"<string>\",\n \"solanaAddress\": \"<string>\",\n \"stellarAddress\": \"<string>\",\n \"isTermsOfServiceAccepted\": true\n },\n \"name\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"region\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"countryCode\": \"<string>\",\n \"line2\": \"<string>\",\n \"country\": \"<string>\"\n },\n \"entity\": {\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"industry\": \"<string>\",\n \"registrationNumber\": \"<string>\",\n \"taxId\": \"<string>\",\n \"website\": \"<string>\",\n \"type\": \"<string>\",\n \"expectedSpend\": \"<string>\"\n },\n \"representatives\": [\n {\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"birthDate\": \"2000-01-01\",\n \"nationalId\": \"<string>\",\n \"countryOfIssue\": \"<string>\",\n \"email\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"region\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"countryCode\": \"<string>\",\n \"line2\": \"<string>\",\n \"country\": \"<string>\"\n },\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"phoneCountryCode\": \"1\",\n \"phoneNumber\": \"5555555555\"\n }\n ],\n \"ultimateBeneficialOwners\": [\n {\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"birthDate\": \"2000-01-01\",\n \"nationalId\": \"<string>\",\n \"countryOfIssue\": \"<string>\",\n \"email\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"region\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"countryCode\": \"<string>\",\n \"line2\": \"<string>\",\n \"country\": \"<string>\"\n },\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"phoneCountryCode\": \"1\",\n \"phoneNumber\": \"5555555555\"\n }\n ],\n \"chainId\": \"<string>\",\n \"contractAddress\": \"<string>\",\n \"sourceKey\": \"<string>\",\n \"externalId\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-dev.rain.xyz/v1/issuing/applications/company")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Api-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"initialUser\": {\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"birthDate\": \"2000-01-01\",\n \"nationalId\": \"<string>\",\n \"countryOfIssue\": \"<string>\",\n \"email\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"region\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"countryCode\": \"<string>\",\n \"line2\": \"<string>\",\n \"country\": \"<string>\"\n },\n \"ipAddress\": \"<string>\",\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"phoneCountryCode\": \"1\",\n \"phoneNumber\": \"5555555555\",\n \"role\": \"<string>\",\n \"walletAddress\": \"<string>\",\n \"solanaAddress\": \"<string>\",\n \"stellarAddress\": \"<string>\",\n \"isTermsOfServiceAccepted\": true\n },\n \"name\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"region\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"countryCode\": \"<string>\",\n \"line2\": \"<string>\",\n \"country\": \"<string>\"\n },\n \"entity\": {\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"industry\": \"<string>\",\n \"registrationNumber\": \"<string>\",\n \"taxId\": \"<string>\",\n \"website\": \"<string>\",\n \"type\": \"<string>\",\n \"expectedSpend\": \"<string>\"\n },\n \"representatives\": [\n {\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"birthDate\": \"2000-01-01\",\n \"nationalId\": \"<string>\",\n \"countryOfIssue\": \"<string>\",\n \"email\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"region\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"countryCode\": \"<string>\",\n \"line2\": \"<string>\",\n \"country\": \"<string>\"\n },\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"phoneCountryCode\": \"1\",\n \"phoneNumber\": \"5555555555\"\n }\n ],\n \"ultimateBeneficialOwners\": [\n {\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"birthDate\": \"2000-01-01\",\n \"nationalId\": \"<string>\",\n \"countryOfIssue\": \"<string>\",\n \"email\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"region\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"countryCode\": \"<string>\",\n \"line2\": \"<string>\",\n \"country\": \"<string>\"\n },\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"phoneCountryCode\": \"1\",\n \"phoneNumber\": \"5555555555\"\n }\n ],\n \"chainId\": \"<string>\",\n \"contractAddress\": \"<string>\",\n \"sourceKey\": \"<string>\",\n \"externalId\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"address": {
"line1": "<string>",
"city": "<string>",
"region": "<string>",
"postalCode": "<string>",
"countryCode": "<string>",
"line2": "<string>",
"country": "<string>"
},
"applicationStatus": "approved",
"externalId": "<string>",
"sourceKey": "<string>",
"ultimateBeneficialOwners": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"applicationStatus": "approved",
"applicationExternalVerificationLink": {
"url": "<string>",
"params": {
"userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
},
"applicationCompletionLink": {
"url": "<string>",
"params": {
"userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
},
"applicationReason": "<string>"
}
],
"applicationExternalVerificationLink": {
"url": "<string>",
"params": {
"userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
},
"applicationCompletionLink": {
"url": "<string>",
"params": {
"userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
},
"applicationReason": "<string>"
}Create a corporate application for a company
curl --request POST \
--url https://api-dev.rain.xyz/v1/issuing/applications/company \
--header 'Api-Key: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"initialUser": {
"firstName": "<string>",
"lastName": "<string>",
"birthDate": "2000-01-01",
"nationalId": "<string>",
"countryOfIssue": "<string>",
"email": "<string>",
"address": {
"line1": "<string>",
"city": "<string>",
"region": "<string>",
"postalCode": "<string>",
"countryCode": "<string>",
"line2": "<string>",
"country": "<string>"
},
"ipAddress": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"phoneCountryCode": "1",
"phoneNumber": "5555555555",
"role": "<string>",
"walletAddress": "<string>",
"solanaAddress": "<string>",
"stellarAddress": "<string>",
"isTermsOfServiceAccepted": true
},
"name": "<string>",
"address": {
"line1": "<string>",
"city": "<string>",
"region": "<string>",
"postalCode": "<string>",
"countryCode": "<string>",
"line2": "<string>",
"country": "<string>"
},
"entity": {
"name": "<string>",
"description": "<string>",
"industry": "<string>",
"registrationNumber": "<string>",
"taxId": "<string>",
"website": "<string>",
"type": "<string>",
"expectedSpend": "<string>"
},
"representatives": [
{
"firstName": "<string>",
"lastName": "<string>",
"birthDate": "2000-01-01",
"nationalId": "<string>",
"countryOfIssue": "<string>",
"email": "<string>",
"address": {
"line1": "<string>",
"city": "<string>",
"region": "<string>",
"postalCode": "<string>",
"countryCode": "<string>",
"line2": "<string>",
"country": "<string>"
},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"phoneCountryCode": "1",
"phoneNumber": "5555555555"
}
],
"ultimateBeneficialOwners": [
{
"firstName": "<string>",
"lastName": "<string>",
"birthDate": "2000-01-01",
"nationalId": "<string>",
"countryOfIssue": "<string>",
"email": "<string>",
"address": {
"line1": "<string>",
"city": "<string>",
"region": "<string>",
"postalCode": "<string>",
"countryCode": "<string>",
"line2": "<string>",
"country": "<string>"
},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"phoneCountryCode": "1",
"phoneNumber": "5555555555"
}
],
"chainId": "<string>",
"contractAddress": "<string>",
"sourceKey": "<string>",
"externalId": "<string>"
}
'import requests
url = "https://api-dev.rain.xyz/v1/issuing/applications/company"
payload = {
"initialUser": {
"firstName": "<string>",
"lastName": "<string>",
"birthDate": "2000-01-01",
"nationalId": "<string>",
"countryOfIssue": "<string>",
"email": "<string>",
"address": {
"line1": "<string>",
"city": "<string>",
"region": "<string>",
"postalCode": "<string>",
"countryCode": "<string>",
"line2": "<string>",
"country": "<string>"
},
"ipAddress": "<string>",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"phoneCountryCode": "1",
"phoneNumber": "5555555555",
"role": "<string>",
"walletAddress": "<string>",
"solanaAddress": "<string>",
"stellarAddress": "<string>",
"isTermsOfServiceAccepted": True
},
"name": "<string>",
"address": {
"line1": "<string>",
"city": "<string>",
"region": "<string>",
"postalCode": "<string>",
"countryCode": "<string>",
"line2": "<string>",
"country": "<string>"
},
"entity": {
"name": "<string>",
"description": "<string>",
"industry": "<string>",
"registrationNumber": "<string>",
"taxId": "<string>",
"website": "<string>",
"type": "<string>",
"expectedSpend": "<string>"
},
"representatives": [
{
"firstName": "<string>",
"lastName": "<string>",
"birthDate": "2000-01-01",
"nationalId": "<string>",
"countryOfIssue": "<string>",
"email": "<string>",
"address": {
"line1": "<string>",
"city": "<string>",
"region": "<string>",
"postalCode": "<string>",
"countryCode": "<string>",
"line2": "<string>",
"country": "<string>"
},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"phoneCountryCode": "1",
"phoneNumber": "5555555555"
}
],
"ultimateBeneficialOwners": [
{
"firstName": "<string>",
"lastName": "<string>",
"birthDate": "2000-01-01",
"nationalId": "<string>",
"countryOfIssue": "<string>",
"email": "<string>",
"address": {
"line1": "<string>",
"city": "<string>",
"region": "<string>",
"postalCode": "<string>",
"countryCode": "<string>",
"line2": "<string>",
"country": "<string>"
},
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"phoneCountryCode": "1",
"phoneNumber": "5555555555"
}
],
"chainId": "<string>",
"contractAddress": "<string>",
"sourceKey": "<string>",
"externalId": "<string>"
}
headers = {
"Api-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Api-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
initialUser: {
firstName: '<string>',
lastName: '<string>',
birthDate: '2000-01-01',
nationalId: '<string>',
countryOfIssue: '<string>',
email: '<string>',
address: {
line1: '<string>',
city: '<string>',
region: '<string>',
postalCode: '<string>',
countryCode: '<string>',
line2: '<string>',
country: '<string>'
},
ipAddress: '<string>',
id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
phoneCountryCode: '1',
phoneNumber: '5555555555',
role: '<string>',
walletAddress: '<string>',
solanaAddress: '<string>',
stellarAddress: '<string>',
isTermsOfServiceAccepted: true
},
name: '<string>',
address: {
line1: '<string>',
city: '<string>',
region: '<string>',
postalCode: '<string>',
countryCode: '<string>',
line2: '<string>',
country: '<string>'
},
entity: {
name: '<string>',
description: '<string>',
industry: '<string>',
registrationNumber: '<string>',
taxId: '<string>',
website: '<string>',
type: '<string>',
expectedSpend: '<string>'
},
representatives: [
{
firstName: '<string>',
lastName: '<string>',
birthDate: '2000-01-01',
nationalId: '<string>',
countryOfIssue: '<string>',
email: '<string>',
address: {
line1: '<string>',
city: '<string>',
region: '<string>',
postalCode: '<string>',
countryCode: '<string>',
line2: '<string>',
country: '<string>'
},
id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
phoneCountryCode: '1',
phoneNumber: '5555555555'
}
],
ultimateBeneficialOwners: [
{
firstName: '<string>',
lastName: '<string>',
birthDate: '2000-01-01',
nationalId: '<string>',
countryOfIssue: '<string>',
email: '<string>',
address: {
line1: '<string>',
city: '<string>',
region: '<string>',
postalCode: '<string>',
countryCode: '<string>',
line2: '<string>',
country: '<string>'
},
id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
phoneCountryCode: '1',
phoneNumber: '5555555555'
}
],
chainId: '<string>',
contractAddress: '<string>',
sourceKey: '<string>',
externalId: '<string>'
})
};
fetch('https://api-dev.rain.xyz/v1/issuing/applications/company', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-dev.rain.xyz/v1/issuing/applications/company",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'initialUser' => [
'firstName' => '<string>',
'lastName' => '<string>',
'birthDate' => '2000-01-01',
'nationalId' => '<string>',
'countryOfIssue' => '<string>',
'email' => '<string>',
'address' => [
'line1' => '<string>',
'city' => '<string>',
'region' => '<string>',
'postalCode' => '<string>',
'countryCode' => '<string>',
'line2' => '<string>',
'country' => '<string>'
],
'ipAddress' => '<string>',
'id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'phoneCountryCode' => '1',
'phoneNumber' => '5555555555',
'role' => '<string>',
'walletAddress' => '<string>',
'solanaAddress' => '<string>',
'stellarAddress' => '<string>',
'isTermsOfServiceAccepted' => true
],
'name' => '<string>',
'address' => [
'line1' => '<string>',
'city' => '<string>',
'region' => '<string>',
'postalCode' => '<string>',
'countryCode' => '<string>',
'line2' => '<string>',
'country' => '<string>'
],
'entity' => [
'name' => '<string>',
'description' => '<string>',
'industry' => '<string>',
'registrationNumber' => '<string>',
'taxId' => '<string>',
'website' => '<string>',
'type' => '<string>',
'expectedSpend' => '<string>'
],
'representatives' => [
[
'firstName' => '<string>',
'lastName' => '<string>',
'birthDate' => '2000-01-01',
'nationalId' => '<string>',
'countryOfIssue' => '<string>',
'email' => '<string>',
'address' => [
'line1' => '<string>',
'city' => '<string>',
'region' => '<string>',
'postalCode' => '<string>',
'countryCode' => '<string>',
'line2' => '<string>',
'country' => '<string>'
],
'id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'phoneCountryCode' => '1',
'phoneNumber' => '5555555555'
]
],
'ultimateBeneficialOwners' => [
[
'firstName' => '<string>',
'lastName' => '<string>',
'birthDate' => '2000-01-01',
'nationalId' => '<string>',
'countryOfIssue' => '<string>',
'email' => '<string>',
'address' => [
'line1' => '<string>',
'city' => '<string>',
'region' => '<string>',
'postalCode' => '<string>',
'countryCode' => '<string>',
'line2' => '<string>',
'country' => '<string>'
],
'id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'phoneCountryCode' => '1',
'phoneNumber' => '5555555555'
]
],
'chainId' => '<string>',
'contractAddress' => '<string>',
'sourceKey' => '<string>',
'externalId' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Api-Key: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api-dev.rain.xyz/v1/issuing/applications/company"
payload := strings.NewReader("{\n \"initialUser\": {\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"birthDate\": \"2000-01-01\",\n \"nationalId\": \"<string>\",\n \"countryOfIssue\": \"<string>\",\n \"email\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"region\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"countryCode\": \"<string>\",\n \"line2\": \"<string>\",\n \"country\": \"<string>\"\n },\n \"ipAddress\": \"<string>\",\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"phoneCountryCode\": \"1\",\n \"phoneNumber\": \"5555555555\",\n \"role\": \"<string>\",\n \"walletAddress\": \"<string>\",\n \"solanaAddress\": \"<string>\",\n \"stellarAddress\": \"<string>\",\n \"isTermsOfServiceAccepted\": true\n },\n \"name\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"region\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"countryCode\": \"<string>\",\n \"line2\": \"<string>\",\n \"country\": \"<string>\"\n },\n \"entity\": {\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"industry\": \"<string>\",\n \"registrationNumber\": \"<string>\",\n \"taxId\": \"<string>\",\n \"website\": \"<string>\",\n \"type\": \"<string>\",\n \"expectedSpend\": \"<string>\"\n },\n \"representatives\": [\n {\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"birthDate\": \"2000-01-01\",\n \"nationalId\": \"<string>\",\n \"countryOfIssue\": \"<string>\",\n \"email\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"region\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"countryCode\": \"<string>\",\n \"line2\": \"<string>\",\n \"country\": \"<string>\"\n },\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"phoneCountryCode\": \"1\",\n \"phoneNumber\": \"5555555555\"\n }\n ],\n \"ultimateBeneficialOwners\": [\n {\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"birthDate\": \"2000-01-01\",\n \"nationalId\": \"<string>\",\n \"countryOfIssue\": \"<string>\",\n \"email\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"region\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"countryCode\": \"<string>\",\n \"line2\": \"<string>\",\n \"country\": \"<string>\"\n },\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"phoneCountryCode\": \"1\",\n \"phoneNumber\": \"5555555555\"\n }\n ],\n \"chainId\": \"<string>\",\n \"contractAddress\": \"<string>\",\n \"sourceKey\": \"<string>\",\n \"externalId\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Api-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api-dev.rain.xyz/v1/issuing/applications/company")
.header("Api-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"initialUser\": {\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"birthDate\": \"2000-01-01\",\n \"nationalId\": \"<string>\",\n \"countryOfIssue\": \"<string>\",\n \"email\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"region\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"countryCode\": \"<string>\",\n \"line2\": \"<string>\",\n \"country\": \"<string>\"\n },\n \"ipAddress\": \"<string>\",\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"phoneCountryCode\": \"1\",\n \"phoneNumber\": \"5555555555\",\n \"role\": \"<string>\",\n \"walletAddress\": \"<string>\",\n \"solanaAddress\": \"<string>\",\n \"stellarAddress\": \"<string>\",\n \"isTermsOfServiceAccepted\": true\n },\n \"name\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"region\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"countryCode\": \"<string>\",\n \"line2\": \"<string>\",\n \"country\": \"<string>\"\n },\n \"entity\": {\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"industry\": \"<string>\",\n \"registrationNumber\": \"<string>\",\n \"taxId\": \"<string>\",\n \"website\": \"<string>\",\n \"type\": \"<string>\",\n \"expectedSpend\": \"<string>\"\n },\n \"representatives\": [\n {\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"birthDate\": \"2000-01-01\",\n \"nationalId\": \"<string>\",\n \"countryOfIssue\": \"<string>\",\n \"email\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"region\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"countryCode\": \"<string>\",\n \"line2\": \"<string>\",\n \"country\": \"<string>\"\n },\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"phoneCountryCode\": \"1\",\n \"phoneNumber\": \"5555555555\"\n }\n ],\n \"ultimateBeneficialOwners\": [\n {\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"birthDate\": \"2000-01-01\",\n \"nationalId\": \"<string>\",\n \"countryOfIssue\": \"<string>\",\n \"email\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"region\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"countryCode\": \"<string>\",\n \"line2\": \"<string>\",\n \"country\": \"<string>\"\n },\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"phoneCountryCode\": \"1\",\n \"phoneNumber\": \"5555555555\"\n }\n ],\n \"chainId\": \"<string>\",\n \"contractAddress\": \"<string>\",\n \"sourceKey\": \"<string>\",\n \"externalId\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-dev.rain.xyz/v1/issuing/applications/company")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Api-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"initialUser\": {\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"birthDate\": \"2000-01-01\",\n \"nationalId\": \"<string>\",\n \"countryOfIssue\": \"<string>\",\n \"email\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"region\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"countryCode\": \"<string>\",\n \"line2\": \"<string>\",\n \"country\": \"<string>\"\n },\n \"ipAddress\": \"<string>\",\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"phoneCountryCode\": \"1\",\n \"phoneNumber\": \"5555555555\",\n \"role\": \"<string>\",\n \"walletAddress\": \"<string>\",\n \"solanaAddress\": \"<string>\",\n \"stellarAddress\": \"<string>\",\n \"isTermsOfServiceAccepted\": true\n },\n \"name\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"region\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"countryCode\": \"<string>\",\n \"line2\": \"<string>\",\n \"country\": \"<string>\"\n },\n \"entity\": {\n \"name\": \"<string>\",\n \"description\": \"<string>\",\n \"industry\": \"<string>\",\n \"registrationNumber\": \"<string>\",\n \"taxId\": \"<string>\",\n \"website\": \"<string>\",\n \"type\": \"<string>\",\n \"expectedSpend\": \"<string>\"\n },\n \"representatives\": [\n {\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"birthDate\": \"2000-01-01\",\n \"nationalId\": \"<string>\",\n \"countryOfIssue\": \"<string>\",\n \"email\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"region\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"countryCode\": \"<string>\",\n \"line2\": \"<string>\",\n \"country\": \"<string>\"\n },\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"phoneCountryCode\": \"1\",\n \"phoneNumber\": \"5555555555\"\n }\n ],\n \"ultimateBeneficialOwners\": [\n {\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"birthDate\": \"2000-01-01\",\n \"nationalId\": \"<string>\",\n \"countryOfIssue\": \"<string>\",\n \"email\": \"<string>\",\n \"address\": {\n \"line1\": \"<string>\",\n \"city\": \"<string>\",\n \"region\": \"<string>\",\n \"postalCode\": \"<string>\",\n \"countryCode\": \"<string>\",\n \"line2\": \"<string>\",\n \"country\": \"<string>\"\n },\n \"id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"phoneCountryCode\": \"1\",\n \"phoneNumber\": \"5555555555\"\n }\n ],\n \"chainId\": \"<string>\",\n \"contractAddress\": \"<string>\",\n \"sourceKey\": \"<string>\",\n \"externalId\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>",
"address": {
"line1": "<string>",
"city": "<string>",
"region": "<string>",
"postalCode": "<string>",
"countryCode": "<string>",
"line2": "<string>",
"country": "<string>"
},
"applicationStatus": "approved",
"externalId": "<string>",
"sourceKey": "<string>",
"ultimateBeneficialOwners": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"applicationStatus": "approved",
"applicationExternalVerificationLink": {
"url": "<string>",
"params": {
"userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
},
"applicationCompletionLink": {
"url": "<string>",
"params": {
"userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
},
"applicationReason": "<string>"
}
],
"applicationExternalVerificationLink": {
"url": "<string>",
"params": {
"userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
},
"applicationCompletionLink": {
"url": "<string>",
"params": {
"userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
},
"applicationReason": "<string>"
}Authorizations
Body
Application information for this company
The initial user of the company - they must have a wallet address, and their wallet address will be an owner on the company's Rain smart contract
Show child attributes
Show child attributes
The name of the company looking to create an account
The company's physical address
Show child attributes
Show child attributes
The company's legal entity
Show child attributes
Show child attributes
The company's representatives
Show child attributes
Show child attributes
The company's ultimate beneficial owners
Show child attributes
Show child attributes
If using external collateral contracts, the chain id of the company's external collateral contract; not required if using Rain's collateral contracts
If using external collateral contracts, the address of the company's external collateral contract; not required if using Rain's collateral contracts
^(0x[0-9a-fA-F]{40}|[1-9A-HJ-NP-Za-km-z]{32,44})$Unique identifier for where this user is coming from
1 - 24An optional tenant-defined identifier for this company. Must be unique within the tenant.
1 - 255Response
Successful operation
The company's unique identifier
The company's name on the Rain platform
The company's physical address
Show child attributes
Show child attributes
approved, pending, needsInformation, needsVerification, manualReview, denied, locked, canceled An optional tenant-defined identifier for this company. Must be unique within the tenant.
1 - 255The source key associated with the company's team
1 - 24The company's ultimate beneficial owners
Show child attributes
Show child attributes
The link to the external verification page for the application
Show child attributes
Show child attributes
The link to the completion page for the application
Show child attributes
Show child attributes
The reason for the application status