Difference between revisions of "API Set Project Id"

From zFairs Contest Management
(Created page with "== Set Project Id== You can use our api to set an entry's or projects Id. To do this you need to POST a message to your site. Below is an example of what needs to be posted....")
 
Line 14: Line 14:
 
             FairId: '9df61f13-474b-442f-ac1f-edca7348ef71', //This value can be found in your url it's the value of f
 
             FairId: '9df61f13-474b-442f-ac1f-edca7348ef71', //This value can be found in your url it's the value of f
 
             Body: [{
 
             Body: [{
                   ProjectKey: '36 char GUID'
+
                   ProjectKey: '36 char GUID',
 
                   FixedId: 'Your Id'
 
                   FixedId: 'Your Id'
 
             },...]
 
             },...]

Revision as of 17:51, 27 February 2023

Set Project Id

You can use our api to set an entry's or projects Id. To do this you need to POST a message to your site. Below is an example of what needs to be posted.

If you only want to update a project see API Update Project

fetch('/api/data/setFixedId', {
    method:'POST',
    headers:{'Content-Type': 'application/json'},
    body: JSON.stringify({
            Username:'admin username',
            Password: 'password',
            FairId: '9df61f13-474b-442f-ac1f-edca7348ef71', //This value can be found in your url it's the value of f
            Body: [{
                   ProjectKey: '36 char GUID',
                   FixedId: 'Your Id'
            },...]
        })
})
.then(response => response.json())
.then(data=>{console.log('Success: ',data);})
.catch((error)=>{console.log('Error: ', error);});